/* lending.css - Modern Clean Light SaaS Style */
:root {
    --bg-color: #ffffff;
    --bg-secondary: #f3f4f6;
    --bg-tertiary: #e5e7eb;
    --section-bg: #f9fafb;
    --card-bg: #ffffff;
    --card-border: #e5e7eb;
    --border: #d1d5db;
    --accent: #0a84ff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body.landing-page { font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif; background: radial-gradient(1200px 700px at 15% -10%, #eff6ff 0%, rgba(239, 246, 255, 0) 70%), #f7f9fc; color: var(--text-primary); line-height: 1.5; overflow-x: hidden; position: relative; }

/* Background blur layout - top right with image overlay */
.bg-blur-layout {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    height: 800px;
    top: -200px;
    right: -0px;
    background: url('/static/hero-blur-shape.png') no-repeat center center;
    background-size: contain;
    opacity: 1;
    z-index: 101;
    pointer-events: none;
}

@media (max-width: 768px) {
    .bg-blur-layout {
        display: none;
    }
}

/* Background gradient layout - bottom */
.bg-gradient-bottom {
    position: absolute;
    width: 2456.96px;
    height: 1294.76px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(47.27% 47.27% at 50% 18.85%, #00FFF0 27.39%, #3647B7 40%, #00050A 87.81%);
    backdrop-filter: blur(500px);
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

/* Navigation - Scoped to .main-nav to avoid conflict with dashboard */
.main-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 8%; position: fixed; top: 0; width: 100%; z-index: 100;
    backdrop-filter: blur(12px); 
    background: rgba(247, 249, 252, 0.86);
    border-bottom: 1px solid var(--card-border);
}
.logo { font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.logo-img { width: 32px; height: 32px; }
.nav-links {
    display: flex;
    gap: 44px;
    width: 403px;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: center;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }


.btn-login {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.btn-login:hover { color: var(--text-primary); }
.btn-logout {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
}
.btn-logout:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fecaca;
}
.btn-signup {
    background: #fff;
    color: var(--text-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--card-border);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--text-primary);
}

/* Hero */
.hero { padding: 140px 5% 80px; text-align: center; max-width: 100%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.badge { background: #f3f4f6; color: var(--text-secondary); padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid var(--card-border); }
.landing-page h1 { font-size: 2.45rem; font-weight: 800; line-height: 1.16; margin-bottom: 1.5rem; max-width: 980px; }
.gradient-text { background: linear-gradient(135deg, #111827 0%, #4b5563 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-secondary); font-size: 1.125rem; margin-bottom: 2rem; max-width: 650px; }
.hero-badge { background: #f3f4f6; color: var(--text-secondary); padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid var(--card-border); }
.hero-cta-group { margin-bottom: 2rem; }
.landing-page .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.landing-page .btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    min-width: 200px;
}

.landing-page .btn-google:hover {
    opacity: 0.85;
}

.landing-page .hero-meta-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.landing-page .hero-cta-meta {
    color: #1f3d5c;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.4rem 0.78rem;
    box-shadow: 0 8px 18px rgba(14, 29, 48, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}

.landing-page .hero-cta-meta--blue {
    background: linear-gradient(180deg, #ebf6ff 0%, #dff0ff 100%);
    border: 1px solid #bfe0ff;
    color: #134f80;
}

.landing-page .hero-cta-meta--mint {
    background: linear-gradient(180deg, #e9fff6 0%, #def9ef 100%);
    border: 1px solid #bcefdc;
    color: #0f5a49;
}

.hero-graphics-container { 
    width: 90%; 
    max-width: 1100px; 
    margin: 2rem auto 0; 
    border-radius: 24px; 
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15); 
    overflow: hidden; 
    opacity: 0; 
    transform: translateY(40px); 
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: #fff;
    border: 1px solid var(--card-border);
}
.hero-graphics-container.reveal-visible { opacity: 1; transform: translateY(0); }

/* Hero Media Grid - Columns Layout */
.hero-media-grid {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.media-columns-container {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.media-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 280px;
}

.media-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.media-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Aspect ratio classes */
.aspect-photo {
    aspect-ratio: 4/5;
}

.aspect-video {
    aspect-ratio: 9/16;
}

.media-item.video {
    background: #000;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .media-column {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .media-columns-container {
        gap: 8px;
        padding: 0 1rem;
    }
    .media-column {
        width: 45%;
        gap: 8px;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 120px 5% 40px;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 1rem;
    }
    
    .landing-page h1 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-cta-group {
        margin-bottom: 1.5rem;
    }
    
    .landing-page .btn-google {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-media-grid {
        margin: 2rem auto 0;
        padding: 0 1rem;
    }
    
    .media-columns-container {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .media-column {
        width: 46%;
        min-width: 140px;
        gap: 12px;
    }
    
    .media-item {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 4% 30px;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .landing-page h1 {
        font-size: 1.38rem;
        line-height: 1.2;
    }

    .landing-page .hero-meta-chips {
        flex-direction: column;
        width: 100%;
    }

    .landing-page .hero-cta-meta {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .landing-page .btn-google {
        max-width: 240px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .media-columns-container {
        gap: 8px;
    }
    
    .media-column {
        width: 47%;
        gap: 8px;
    }
    
    .media-item {
        border-radius: 10px;
    }
}

/* Block 4 - Tools */
.landing-page .tools-section {
    padding: 95px 5% 70px;
}

.landing-page .tools-shell {
    max-width: 1220px;
    margin: 0 auto;
}

.landing-page .tools-header {
    text-align: center;
    margin-bottom: 1.35rem;
}

.landing-page .tools-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.45rem;
}

.landing-page .tools-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.landing-page .tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-page .tool-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, #ffffff 100%);
    border: 1px solid #dbe5f2;
    border-radius: 24px;
    padding: 1.15rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.landing-page .tool-card h3 {
    font-size: 1.17rem;
    line-height: 1.35;
    margin: 0;
    font-weight: 700;
}

.landing-page .tool-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0;
}

.landing-page .tool-card-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.1rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1.4rem;
}

.landing-page .tool-card-main .tool-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.landing-page .tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: rgba(10, 132, 255, 0.11);
    color: #0a84ff;
}

.landing-page .tool-icon svg {
    width: 22px;
    height: 22px;
}

.landing-page .tool-shot {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #deebf7;
    background: #edf3fb;
    min-height: 120px;
}

.landing-page .tool-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page .tools-grid .tool-card {
    min-height: 220px;
}

.landing-page .tool-card-main .tool-shot {
    min-height: 210px;
}

/* Block 5 - Inside platform */
.landing-page .inside-simple-section {
    padding: 72px 5% 64px;
}

.landing-page .inside-simple-shell {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 1.2rem;
    align-items: stretch;
}

.landing-page .inside-simple-copy,
.landing-page .inside-simple-preview {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #ffffff 100%);
    border: 1px solid #dbe5f2;
    border-radius: 26px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.landing-page .inside-simple-copy {
    padding: 1.45rem;
}

.landing-page .inside-simple-copy h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.55rem;
}

.landing-page .inside-simple-copy p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.landing-page .inside-simple-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-page .inside-simple-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
    color: #1a2a3c;
    background: #f8fbff;
    border: 1px solid #e5eef9;
    border-radius: 14px;
    padding: 0.7rem 0.8rem;
}

.landing-page .inside-custom-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #0a84ff;
    background: rgba(10, 132, 255, 0.12);
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
}

.landing-page .inside-custom-icon svg {
    width: 18px;
    height: 18px;
}

.landing-page .inside-simple-preview {
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12px;
}

.landing-page .inside-simple-preview img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

/* Block 6 - Audience infographic (iOS style) */
.landing-page .audience-section {
    padding: 54px 5% 84px;
}

.landing-page .audience-shell {
    max-width: 1220px;
    margin: 0 auto;
}

.landing-page .audience-header {
    text-align: center;
    margin-bottom: 1.6rem;
}

.landing-page .audience-header h2 {
    font-size: 2.1rem;
    line-height: 1.2;
}

.landing-page .audience-infographic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
}

.landing-page .audience-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 212, 230, 0.5);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 1.25rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-page .audience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(15, 23, 42, 0.06);
}

.landing-page .audience-card-row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.landing-page .audience-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #0a84ff;
    background: linear-gradient(135deg, #e8f4ff 0%, #d0e8ff 100%);
    margin-top: 2px;
}

.landing-page .audience-icon svg {
    width: 20px;
    height: 20px;
}

.landing-page .audience-card-body {
    flex: 1;
    min-width: 0;
}

.landing-page .audience-badge {
    display: inline-block;
    border-radius: 999px;
    background: #e8f2ff;
    color: #0a5cb5;
    border: 1px solid #cde3fb;
    padding: 0.18rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
}

.landing-page .audience-card h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 600;
    margin: 0 0 0.35rem 0;
}

.landing-page .audience-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
}

/* Block 7 - Proof */
.landing-page .proof-section {
    padding: 54px 5% 74px;
    background: transparent;
}

.landing-page .proof-shell {
    max-width: 1220px;
    margin: 0 auto;
}

.landing-page .proof-header {
    text-align: center;
    margin-bottom: 1.1rem;
}

.landing-page .proof-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.landing-page .proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-page .proof-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #ffffff 100%);
    border: 1px solid #dbe5f2;
    border-radius: 24px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.landing-page .proof-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.landing-page .proof-card:nth-child(2) {
    transition-delay: 0.08s;
}

.landing-page .proof-card:nth-child(3) {
    transition-delay: 0.16s;
}

.landing-page .proof-number {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 800;
    color: #0f2c4f;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}

.landing-page .proof-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.landing-page .proof-card p {
    font-size: 0.92rem;
    color: #5f7186;
}

.landing-page .proof-note {
    margin-top: 0.7rem;
    text-align: center;
    font-size: 0.83rem;
    color: #73849a;
}

/* Block 9 - Final CTA */
.landing-page .final-cta-section {
    padding: 68px 5%;
    background: transparent;
}

.landing-page .final-cta-shell {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.landing-page .final-cta-shell h2 {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
}

.landing-page .final-cta-shell p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 1.2rem;
}

.landing-page .final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    background: #18b4ff;
    color: #03203a;
    border: 1px solid #89ddff;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(24, 180, 255, 0.28);
}

.landing-page .final-cta-meta {
    color: #d7ecff;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(158, 215, 255, 0.44);
    background: linear-gradient(180deg, rgba(11, 57, 98, 0.82) 0%, rgba(9, 49, 86, 0.9) 100%);
    border-radius: 999px;
    padding: 0.4rem 0.78rem;
    box-shadow: 0 8px 18px rgba(5, 19, 36, 0.25), inset 0 1px 0 rgba(181, 225, 255, 0.2);
    backdrop-filter: blur(8px);
}

.landing-page .final-cta-chips {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.55rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.landing-page .site-footer {
    padding: 1rem 5% 1.2rem;
    text-align: center;
    border-top: 1px solid rgba(128, 175, 219, 0.28);
    background: transparent;
}

.landing-page .footer-line {
    font-size: 0.92rem;
    color: #cadcf2;
}

.landing-page .footer-country {
    margin-top: 0.3rem;
    font-size: 0.86rem;
    color: #9db8d6;
}

/* Pricing helper */
.landing-page .pricing-micro-note {
    margin-top: 0.7rem;
    text-align: center;
    font-size: 0.83rem;
    color: #73849a;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 0 5%;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: background 0.2s;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.12);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.6rem;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    .faq-answer {
        font-size: 0.88rem;
        padding: 0 1.25rem 1rem;
    }
}

.landing-page .bottom-gradient-zone {
    background: linear-gradient(180deg, #071728 0%, #0a2746 100%);
}

.landing-page .bottom-gradient-zone #block8,
.landing-page .bottom-gradient-zone #block9,
.landing-page .bottom-gradient-zone .site-footer {
    background: transparent;
}

.landing-page .pricing-card {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card.featured-starter {
    width: 100%;
    min-width: 280px;
    min-height: 740px;
    height: auto;
    background: #fff;
    border-radius: 40px;
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured-pro {
    background: linear-gradient(180deg, #313131 0%, #000000 100%);
    border-radius: 40px;
    width: 100%;
    min-width: 280px;
    min-height: 850px;
    height: auto;
    padding: 0 40px 56px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: none !important;
}

.pricing-card.featured-unlimited {
    width: 100%;
    min-width: 280px;
    min-height: 740px;
    height: auto;
    background: #fff;
    border-radius: 40px;
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.starter-label, .unlimited-label {
    width: 157px;
    height: 40px;
    background: linear-gradient(180deg, #000000 0%, #474747 100%);
    border-radius: 9999px;
    border: 1px solid;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    padding: 11px 0;
    margin: 0 auto 56px;
}

.unlimited-label {
    background: linear-gradient(180deg, #8C1C00 24.04%, #FF5900 100%);
}

.pro-label {
    width: 157px;
    height: 40px;
    background: linear-gradient(180deg, #000000 0%, #474747 100%);
    border-radius: 9999px;
    border: 1px solid;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    padding: 11px 0;
    margin: 16px auto 40px;
}

.best-offer-badge {
    height: 40px;
    background: #fff;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 11px 64px;
    margin: 0 auto;
}

.starter-price, .unlimited-price {
    font-weight: 500;
    font-size: 64px;
    line-height: 64px;
    color: rgba(26, 34, 40, 1);
    text-align: center;
    margin-bottom: 0;
}

.per-month {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: rgba(26, 34, 40, 0.6);
    text-align: center;
    margin: 8px 0 56px;
}

.pro-price {
    font-weight: 500;
    font-size: 64px;
    line-height: 64px;
    color: #fff;
    text-align: center;
    margin: 0 0 0;
}

.pricing-card.featured-pro .per-month {
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0 56px;
}

.starter-description, .unlimited-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(26, 34, 40, 0.8);
    text-align: center;
    margin: 0 0 56px 0;
}

.pro-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 0;
    margin: 0 0 56px 0;
}

.starter-divider, .unlimited-divider {
    border: 1px solid rgba(26, 34, 40, 0.4);
    margin: 0 0 40px 0;
}

.pro-divider {
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 0 0 40px 0;
}

.starter-features, .unlimited-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.starter-features li, .unlimited-features li {
    color: rgba(26, 34, 40, 1);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.pro-features {
    list-style: none;
    padding: 0 24px;
    margin: 0;
    text-align: left;
}

.pro-features li {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.starter-features li img,
.pro-features li img,
.unlimited-features li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-demo, .btn-starter, .btn-unlimited {
    width: 100% !important;
    max-width: 280px;
    height: 64px !important;
    background: linear-gradient(180deg, #001C3C 0%, #000000 100%), radial-gradient(49.83% 30.47% at 50.17% 36.72%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%) !important;
    border-radius: 9999px !important;
    border: 1px solid !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 20px !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: auto auto 0 !important;
}

.btn-pro {
    width: 100% !important;
    max-width: 280px;
    height: 64px !important;
    background: linear-gradient(180deg, #5F35C2 0%, #000000 72.12%), radial-gradient(49.83% 30.47% at 50.17% 36.72%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) !important;
    border-radius: 9999px !important;
    border: 1px solid !important;
    box-shadow: 0px -6px 12px 0px rgba(80, 255, 167, 1) inset, 0px 24px 24px 0px rgba(0, 13, 255, 0.4) !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 20px !important;
    color: #fff !important;
    margin: 24px auto 0px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .pricing-card.featured-starter,
    .pricing-card.featured-pro,
    .pricing-card.featured-unlimited {
        padding: 32px 20px;
    }
    
    .starter-features li,
    .pro-features li,
    .unlimited-features li {
        font-size: 14px;
        line-height: 28px;
    }
    
    .btn-starter,
    .btn-pro,
    .btn-unlimited {
        width: 100% !important;
        max-width: 260px;
    }

    html[lang="ru"] .best-offer-badge {
        width: 220px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pricing-card.featured-starter,
    .pricing-card.featured-pro,
    .pricing-card.featured-unlimited {
        padding: 24px 16px;
        border-radius: 24px;
    }
    
    .starter-price,
    .pro-price,
    .unlimited-price {
        font-size: 36px;
        line-height: 36px;
    }

    .per-month {
        font-size: 14px;
        margin: 6px 0 40px;
    }
}

html[lang="ru"] .pricing-card.featured-starter,
html[lang="ru"] .pricing-card.featured-pro,
html[lang="ru"] .pricing-card.featured-unlimited {
    width: 100%;
    min-width: 280px;
}

html[lang="ru"] .starter-features li,
html[lang="ru"] .pro-features li,
html[lang="ru"] .unlimited-features li {
    font-size: 14px;
    line-height: 28px;
}

html[lang="ru"] .starter-description,
html[lang="ru"] .pro-description,
html[lang="ru"] .unlimited-description {
    font-size: 14px;
}

html[lang="ru"] .best-offer-badge {
    width: 260px;
    padding: 11px 20px;
    font-size: 16px;
}

/* Automation Title Section */
.automation-title-section {
    padding: 60px 5% 40px;
    text-align: center;
}

.automation-title {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -2%;
    text-align: center;
    color: #000;
    margin: 0 0 16px 0;
}

.automation-subtitle {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Mobile Automation Title */
@media (max-width: 768px) {
    .automation-title-section {
        padding: 40px 5% 30px;
    }
    
    .automation-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -1%;
        margin-bottom: 12px;
    }
    
    .automation-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .automation-title-section {
        padding: 30px 4% 24px;
    }
    
    .automation-title {
        font-size: 22px;
        line-height: 30px;
    }
    
    .automation-subtitle {
        font-size: 15px;
        line-height: 22px;
    }
}

/* Workshop Section */
.workshop-section {
    padding: 60px 5% 80px;
    text-align: center;
}

.workshop-shell {
    max-width: 880px;
    margin: 0 auto;
}

.workshop-title {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -2%;
    text-align: center;
    color: #000;
    margin: 0 0 24px 0;
}

.workshop-desc {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 auto 16px;
    max-width: 760px;
}

.workshop-desc--last {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .workshop-section {
        padding: 40px 5% 60px;
    }

    .workshop-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 18px;
    }

    .workshop-desc {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .workshop-section {
        padding: 30px 4% 40px;
    }

    .workshop-title {
        font-size: 22px;
        line-height: 30px;
    }

    .workshop-desc {
        font-size: 15px;
        line-height: 22px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 60px 5% 80px;
    text-align: center;
}

.gallery-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-title {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #000;
    margin: 0 0 36px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #f0f0f0;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 12px;
    padding: 8px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
}

.gallery-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.gallery-stat svg {
    flex-shrink: 0;
}

.gallery-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.gallery-loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: gallery-spin 0.8s linear infinite;
}

@keyframes gallery-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 5% 60px;
    }
    .gallery-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 24px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 400px;
    }
}

/* Base Stats Section */
.base-stats-section {
    padding: 64px 5% 40px;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stats-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #ffffff 100%);
    border: 1px solid #dbe5f2;
    border-radius: 26px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    padding: 2rem 1.5rem;
    text-align: center;
}

.stats-emoji {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stats-number {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 0.3rem;
}

.stats-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a2a3c;
    margin-bottom: 0.4rem;
}

.stats-card p {
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .base-stats-section {
        padding: 40px 5% 30px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stats-number {
        font-size: 2rem;
    }
}

.process-cards-section {
    padding: 40px 5% 100px;
}

.ios-flow {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
}

.ios-step-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, #ffffff 100%);
    border: 1px solid #dbe5f2;
    border-radius: 26px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    padding: 1.3rem 1.1rem;
    min-height: 290px;
}

.ios-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #0a84ff;
    background: rgba(10, 132, 255, 0.11);
    margin-bottom: 0.85rem;
}

.ios-step-icon svg {
    width: 24px;
    height: 24px;
}

.ios-step-card h3 {
    font-size: 1.32rem;
    margin-bottom: 0.45rem;
}

.ios-step-card p {
    font-size: 0.97rem;
    line-height: 1.48;
    color: var(--text-secondary);
}

.ios-flow-arrow {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1b6fbf;
    background: linear-gradient(180deg, #f5fbff 0%, #e7f2ff 100%);
    border: 1px solid #cde3fb;
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: flowArrowPulse 2.2s ease-in-out infinite;
}

.ios-flow-arrow::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 999px;
    border: 1px solid rgba(10, 132, 255, 0.18);
    opacity: 0.55;
}

@keyframes flowArrowPulse {
    0%,
    100% {
        transform: translateX(0);
        box-shadow: 0 8px 20px rgba(10, 132, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    50% {
        transform: translateX(2px);
        box-shadow: 0 10px 24px rgba(10, 132, 255, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

.process-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.process-card {
    width: 345px;
    min-width: 345px;
    height: 208px;
    border-radius: 40px;
    background: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.process-card-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 8px;
}

.process-card-title {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -1%;
    color: #000;
    margin: 0;
}

.process-card-subtitle {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.process-arrow {
    width: 69px;
    height: 24px;
    object-fit: contain;
    margin: 0 -23px;
    z-index: 40;
    margin-bottom: 20px;
}

/* Mobile - hide arrows and stack cards */
@media (max-width: 768px) {
    .process-cards {
        gap: 24px;
    }
    
    .process-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-card {
        width: 100%;
        max-width: 345px;
    }
    
    .process-card-title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .process-card-subtitle {
        font-size: 13px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .process-card-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    .process-card-subtitle {
        font-size: 12px;
        line-height: 18px;
    }
}

/* Inside Platform Section */
.inside-platform-section {
    padding: 50px 5%;
    background: transparent;
}

.inside-platform-header {
    text-align: center;
    margin-bottom: 60px;
}

.inside-platform-title {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -2%;
    color: #000;
    margin: 0 0 16px 0;
}

.inside-platform-subtitle {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

.inside-platform-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.inside-platform-image {
    flex: 1.2;
    max-width: 800px;
}

.inside-platform-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.inside-platform-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
    position: relative;
}

/* Connection line */
.inside-platform-features::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 80px;
    bottom: 40px;
    width: 2px;
    background: #000;
    z-index: 0;
}

.inside-feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.inside-feature-icon {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.inside-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inside-feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inside-feature-title {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -1%;
    color: #000;
    margin: 0;
}

.inside-feature-subtitle {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Mirrored version */
.inside-platform-section.mirrored .inside-platform-content {
    display: flex;
    flex-direction: row;
}

.inside-platform-section.mirrored .inside-platform-features::before {
    left: 48px;
    right: auto;
}

.inside-platform-section.mirrored .inside-feature {
    flex-direction: row;
}

/* Mobile Inside Platform */

@media (max-width: 768px) {
    .inside-platform-section {
        padding: 40px 5%;
    }
    
    .inside-platform-header {
        margin-bottom: 40px;
    }
    
    .inside-platform-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .inside-platform-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .inside-platform-image {
        max-width: 100%;
    }
    
    .inside-feature {
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }
    
    .inside-feature-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
    
    .inside-feature-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .inside-feature-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .inside-platform-title {
        font-size: 26px;
        line-height: 34px;
    }
    
    .inside-platform-subtitle {
        font-size: 14px;
        line-height: 22px;
    }
    
    .inside-feature {
        gap: 10px;
    }
    
    .inside-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .inside-feature-title {
        font-size: 18px;
    }
    
    .inside-feature-subtitle {
        font-size: 13px;
    }
}

/* Mirrored section mobile fixes */

/* Background image for pricing - extends to footer inside */
.pricing.with-bg {
    background:
        radial-gradient(1200px 380px at 50% -10%, rgba(117, 177, 236, 0.18) 0%, rgba(117, 177, 236, 0) 72%),
        linear-gradient(180deg, rgba(7, 23, 40, 0) 0%, rgba(7, 23, 40, 0.42) 42%, rgba(7, 23, 40, 0.84) 100%),
        url('/static/down_blur.png') no-repeat center bottom;
    background-size: auto, auto, 100% auto;
    background-color: transparent;
    padding-bottom: 0;
}

.pricing.with-bg footer.with-bg {
    background: transparent;
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
    margin-top: 40px;
}

footer { padding: 40px 8%; background: transparent; border-top: none; display: flex; justify-content: space-between; align-items: center; color: var(--text-secondary); }

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Mobile Footer */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 24px;
        padding: 30px 5%;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .footer-center {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-right {
        gap: 16px;
    }
    
    .footer-social {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 24px 4%;
        gap: 20px;
    }
    
    .footer-logo {
        height: 28px;
    }
    
    .footer-center {
        gap: 12px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-social {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 1150px) {
    .creators-stack { display: none; }
    .trusted-section { min-height: auto; padding: 100px 8%; }
    .trends-container { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
    .trends-content-box { align-items: center; }
}

/* Mobile Trusted Section */
@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 5%;
        min-height: auto;
    }
    
    .trusted-content {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        max-width: 100%;
        width: 100%;
    }
    
    .trusted-content::before {
        width: 120%;
        height: 120%;
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.5) 65%, rgba(255, 255, 255, 0.2) 85%, transparent 100%);
    }
    
    .trusted-content h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }
    
    .trusted-content p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    
    .trusted-content .btn-signup {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .trusted-section {
        padding: 40px 4%;
    }
    
    .trusted-content {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .trusted-content h2 {
        font-size: 22px;
        line-height: 30px;
    }
    
    .trusted-content p {
        font-size: 13px;
        line-height: 20px;
    }
    
    .trusted-content .btn-signup {
        max-width: 240px;
        padding: 12px 16px;
        font-size: 14px;
    }
}
@media (max-width: 900px) {
    .landing-page h1 { font-size: 2rem; }
    .product-item { flex-direction: column; text-align: center; gap: 3rem; }
}

@media (max-width: 768px) {
    .landing-page .inside-simple-section {
        padding: 56px 5% 48px;
    }

    .landing-page .inside-simple-copy h2 {
        font-size: 1.7rem;
    }

    .landing-page .audience-section {
        padding: 44px 5% 64px;
    }

    .landing-page .audience-header h2 {
        font-size: 1.7rem;
    }

    .landing-page .proof-section {
        padding: 44px 5% 58px;
    }

    .landing-page .proof-number {
        font-size: 2rem;
    }

    .landing-page .final-cta-section {
        padding: 54px 5%;
    }

    .landing-page .final-cta-shell h2 {
        font-size: 1.95rem;
    }

    .landing-page .final-cta-shell p {
        font-size: 0.96rem;
    }

    .landing-page .final-cta-chips {
        flex-direction: column;
        align-items: center;
    }

    .landing-page .final-cta-meta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .landing-page .tools-section {
        padding: 64px 5% 56px;
    }

    .landing-page .tools-header h2 {
        font-size: 1.7rem;
    }

    .landing-page .tools-header p {
        font-size: 0.95rem;
    }

    .landing-page .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Pricing Section */

@media (max-width: 768px) {
        .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .pricing-title-new {
        font-size: 28px;
        line-height: 36px;
    }
    
    .pricing-subtitle-new {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 5%;
    }
    
    .pricing-title-new {
        font-size: 24px;
        line-height: 32px;
    }
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
    margin-right: 12px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s;
}

.language-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

.language-icon {
    font-size: 16px;
}

.language-current {
    font-weight: 600;
    min-width: 24px;
}

.language-arrow {
    font-size: 10px;
    opacity: 0.6;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    min-width: 160px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.language-option:hover {
    background: var(--bg-tertiary);
}

.language-option.active {
    background: var(--accent);
}

.lang-flag {
    font-size: 18px;
}

.lang-name {
    color: var(--text-primary);
    font-size: 14px;
}

.hidden {
    display: none !important;
}

/* Mobile Navigation */

/* Burger Button */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.burger-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.hidden {
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu-content {
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-links a:hover {
    color: var(--accent-purple);
}

.mobile-language {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    width: 100%;
}

.mobile-lang-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.mobile-lang-options {
    display: flex;
    gap: 1rem;
}

.mobile-lang-options button {
    background: transparent;
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-lang-options button:hover {
    background: var(--bg-secondary);
    border-color: var(--text-primary);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.mobile-actions button {
    width: 100%;
    padding: 1rem;
    font-size: 16px;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0.75rem 5%;
    }
    
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .burger-btn {
        display: flex;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }

    .mobile-actions 
}

@media (max-width: 480px) {
    .main-nav {
        padding: 0.6rem 4%;
    }
    
    .logo {
        font-size: 1rem;
        gap: 6px;
    }
    
    .logo-img {
        width: 24px;
        height: 24px;
    }
    
    .burger-btn {
        width: 22px;
        height: 16px;
    }
    
    .mobile-menu-content {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .mobile-nav-links a {
        font-size: 20px;
    }
    
    .mobile-nav-links {
        gap: 1.2rem;
    }
}

.modal-overlay,
.landing-page .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: none; justify-content: center; align-items: center; z-index: 1000; backdrop-filter: blur(12px); }

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff; padding: 48px; border-radius: 32px; width: 100%; max-width: 460px; text-align: center; box-shadow: var(--shadow-lg); position: relative; 
}

.auth-tabs { display: flex; gap: 24px; margin-bottom: 30px; justify-content: center; border-bottom: 1px solid var(--card-border); }
.auth-tab { cursor: pointer; font-weight: 700; color: var(--text-secondary); padding: 10px 4px; position: relative; transition: color 0.3s; }
.auth-tab.active { color: var(--text-primary); }
.auth-tab.active::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px; background: var(--text-primary); }
.auth-input { width: 100%; padding: 1.1rem; margin: 0.6rem 0; border: 1px solid var(--card-border); border-radius: 14px; font-size: 1rem; background: var(--section-bg); }
.btn-auth-submit {
    width: 100%;
    padding: 1.1rem;
    background: #fff;
    color: var(--text-primary);
    border: 2px solid var(--card-border);
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    margin: 1.5rem 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--text-primary);
}

@media (max-width: 1024px) {
    .landing-page .ios-flow {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .ios-flow-arrow {
        display: none;
    }

    .ios-step-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 768px) {
    
    
    
    
    
    
    
    
}



.nav-actions .btn-signup-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}
.nav-actions .btn-signup-modal:hover {
    opacity: 0.85;
    color: #fff;
}

.btn-signup-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}
.btn-signup-modal:hover {
    opacity: 0.85;
    color: #fff;
}
.btn-login-modal {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    transition: color 0.2s;
}
.btn-login-modal:hover {
    color: var(--text-primary);
}
