:root {
    --navy: #0C1B36;
    --cyan: #22D1EE;
    --cyan-dark: #0891B2;
    --white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-light: #6B7A90;
    --text-dark: #4A5568;
    --bg-light: #F5F7FA;
    --border-light: #E8ECF1;
    --error: #EF4444;
    --success: #34D399;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(12, 27, 54, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo { color: var(--white); }

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50% 50% 50% 0;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--cyan);
    border-radius: 1px;
    box-shadow: 0 -3px 0 var(--cyan), 0 3px 0 var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.navbar.scrolled .nav-links a { color: var(--white); }
.nav-links a:hover { opacity: 1; }

.nav-cta {
    background: var(--cyan) !important;
    color: var(--navy) !important;
    padding: 12px 24px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 209, 238, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span { background: var(--white); }

/* Hero Section */
.hero-wrapper {
    padding: 120px 40px 140px;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-container {
    background: linear-gradient(135deg, #0f2244 0%, #1a3a6b 50%, #0f2244 100%);
    border-radius: 40px;
    padding: 100px 60px 120px;
    position: relative;
    overflow: hidden;
    min-height: 750px;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(34, 209, 238, 0.25);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(34, 209, 238, 0.15);
    bottom: -150px;
    left: -100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-left h1 span { color: var(--cyan); }

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--white);
    border-radius: 12px;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.store-btn svg { width: 28px; height: 28px; }

.store-btn-text small {
    display: block;
    font-size: 11px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn-text span {
    font-size: 15px;
    font-weight: 600;
}

/* Phone Mockup */
.phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 610px;
    position: relative;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 48px;
    padding: 12px;
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 50px 20px 24px;
}

.screen-header {
    text-align: center;
    margin-bottom: 20px;
}

.screen-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
}

.screen-logo::before {
    content: '';
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50% 50% 50% 0;
}

.screen-logo::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 3px;
    background: var(--cyan);
    border-radius: 1.5px;
    box-shadow: 0 -4px 0 var(--cyan), 0 4px 0 var(--cyan);
}

.screen-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.screen-step {
    font-size: 12px;
    color: var(--cyan-dark);
    font-weight: 600;
    background: rgba(8, 145, 178, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 6px;
}

.screen-illustration {
    height: 180px;
    background: linear-gradient(135deg, rgba(34, 209, 238, 0.15) 0%, rgba(8, 145, 178, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.screen-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 12px;
}

.screen-desc {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.screen-btn {
    width: 100%;
    padding: 14px 18px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    margin-top: auto;
}

.screen-btn:hover { background: var(--cyan-dark); }
.screen-btn svg { width: 18px; height: 18px; }

/* Chat bubbles */
.chat-bubble {
    position: absolute;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.chat-bubble.user {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    right: -20px;
    top: 120px;
    border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
    background: var(--cyan);
    color: var(--navy);
    left: -30px;
    top: 200px;
    border-bottom-left-radius: 4px;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Features Section - LIGHT */
.features {
    background: var(--bg-light);
    padding: 120px 40px;
    position: relative;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan-dark);
    margin-bottom: 20px;
    text-align: center;
}

.features h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    margin-bottom: 80px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.features h2 span { color: var(--cyan-dark); }

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    padding: 24px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: transparent;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.feature-item.active {
    background: var(--white);
    border-color: var(--cyan);
    box-shadow: 0 4px 24px rgba(12, 27, 54, 0.06);
    border-left: 3px solid var(--cyan);
}

.feature-number {
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-number::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(8, 145, 178, 0.2);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-item.active .feature-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.features-phone {
    position: sticky;
    top: 140px;
}

.features-phone .phone-mockup {
    width: 280px;
    height: 570px;
    margin: 0 auto;
}

/* Phone Screens for Features */
.phone-screens {
    position: relative;
}

.phone-screen-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.phone-screen-content.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Coaches Section - WHITE */
.coaches {
    padding: 120px 40px;
    background: var(--white);
}

.coaches-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.coaches h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.coaches h2 span { color: var(--cyan-dark); }

.coaches-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.coaches-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 10px 40px;
    margin: 0 -10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.coaches-carousel::-webkit-scrollbar { display: none; }

.coach-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(12, 27, 54, 0.06);
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.coach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(12, 27, 54, 0.10);
}

.coach-visual {
    height: 200px;
    background: linear-gradient(135deg, #E8F8FB 0%, #F0F4FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-visual .emoji {
    font-size: 80px;
}

.coach-info { padding: 28px; }

.coach-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.coach-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.coach-link {
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.coach-link:hover {
    color: var(--cyan-dark);
    gap: 10px;
}

.coach-link svg { width: 16px; height: 16px; }

/* Feedback Section - DARK */
.feedback-section {
    background: var(--navy);
    padding: 120px 40px;
}

.feedback-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 209, 238, 0.1);
    border: 1px solid rgba(34, 209, 238, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 24px;
}

.ai-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

.feedback-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1.2;
}

.feedback-section h2 span { color: var(--cyan); }

.feedback-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.feedback-block {
    padding: 24px;
    border-radius: 16px;
    border-left: 3px solid;
}

.feedback-block.error {
    background: rgba(239, 68, 68, 0.08);
    border-color: var(--error);
}

.feedback-block.suggestion {
    background: rgba(52, 211, 153, 0.08);
    border-color: var(--success);
}

.feedback-block.explanation {
    background: rgba(34, 209, 238, 0.08);
    border-color: var(--cyan);
}

.feedback-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.feedback-block.error .feedback-label { color: var(--error); }
.feedback-block.suggestion .feedback-label { color: var(--success); }
.feedback-block.explanation .feedback-label { color: var(--cyan); }

.feedback-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.feedback-block.error .feedback-text {
    text-decoration: line-through;
    text-decoration-color: var(--error);
    text-decoration-thickness: 2px;
}

/* No Judgement Section - DARK */
.no-judgement {
    background: var(--navy);
    padding: 100px 40px 120px;
    text-align: center;
}

.no-judgement h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.no-judgement h2 span { color: var(--cyan); }

.no-judgement-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 50px;
}

.tone-pills {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tone-pill {
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-family: inherit;
}

.tone-pill:hover { border-color: rgba(255, 255, 255, 0.4); }

.tone-pill.active {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Skills Section - LIGHT */
.skills {
    background: var(--bg-light);
    padding: 120px 40px;
    text-align: center;
}

.skills-inner { max-width: 1000px; margin: 0 auto; }

.skills h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.skills h2 span { color: var(--cyan-dark); }

.skills-subtitle {
    color: var(--text-light);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 70px;
    line-height: 1.6;
}

.skills-phones {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.skill-phone-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.skill-phone-wrapper .phone-mockup {
    width: 260px;
    height: 530px;
}

.skill-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--cyan-dark);
}

/* Pronunciation & Mistakes - WHITE */
.pronunciation-mistakes {
    padding: 120px 40px;
    background: var(--white);
}

.pm-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pm-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(12, 27, 54, 0.06);
}

.pm-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
}

.coach-avatar-bubble {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.coach-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.coach-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.positive-bubble {
    background: rgba(52, 211, 153, 0.1);
    border-left: 3px solid var(--success);
    padding: 18px 22px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.7;
}

.pm-feedback-demo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pm-feedback-block {
    padding: 18px 22px;
    border-radius: 12px;
    border-left: 3px solid;
}

.pm-feedback-block.error {
    background: rgba(239, 68, 68, 0.06);
    border-color: var(--error);
}

.pm-feedback-block.suggestion {
    background: rgba(52, 211, 153, 0.06);
    border-color: var(--success);
}

.pm-feedback-block.explanation {
    background: rgba(34, 209, 238, 0.06);
    border-color: var(--cyan-dark);
}

.pm-feedback-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.pm-feedback-block.error .pm-feedback-label { color: var(--error); }
.pm-feedback-block.suggestion .pm-feedback-label { color: var(--success); }
.pm-feedback-block.explanation .pm-feedback-label { color: var(--cyan-dark); }

.pm-feedback-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--navy);
}

.pm-feedback-block.error .pm-feedback-text {
    text-decoration: line-through;
    text-decoration-color: var(--error);
    text-decoration-thickness: 2px;
}

/* Pricing Section - DARK */
.pricing {
    background: var(--navy);
    padding: 120px 40px;
}

.pricing-inner { max-width: 900px; margin: 0 auto; }

.pricing h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1.2;
}

.pricing h2 span { color: var(--cyan); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pricing-card {
    border-radius: 24px;
    padding: 44px;
}

.pricing-card.dorali {
    background: var(--white);
}

.pricing-card.human {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-card .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.pricing-card.dorali .card-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pricing-card.dorali .card-logo::before {
    content: '';
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50% 50% 50% 0;
}

.pricing-card.dorali .card-logo::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--cyan);
    border-radius: 1px;
    box-shadow: 0 -3px 0 var(--cyan), 0 3px 0 var(--cyan);
}

.pricing-card .card-name {
    font-size: 20px;
    font-weight: 700;
}

.pricing-card.dorali .card-name { color: var(--navy); }
.pricing-card.human .card-name { color: var(--white); }

.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.pricing-card.dorali .price { color: var(--navy); }
.pricing-card.human .price { color: var(--white); }

.pricing-card .price span {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-card.dorali .pricing-features li { color: var(--navy); }
.pricing-card.human .pricing-features li {
    color: var(--text-muted);
    font-style: italic;
}

.pricing-features li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.dorali .pricing-features li svg { color: var(--cyan-dark); }
.pricing-card.human .pricing-features li svg { color: var(--text-muted); }

.pricing-cta {
    width: 100%;
    padding: 18px 28px;
    background: var(--cyan);
    color: var(--navy);
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 209, 238, 0.35);
}

/* Founder Section - LIGHT */
.founder {
    background: var(--bg-light);
    padding: 120px 40px;
}

.founder-inner {
    max-width: 900px;
    margin: 0 auto;
}

.founder-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.founder-photo {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(34, 209, 238, 0.2) 0%, rgba(8, 145, 178, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
    overflow: hidden;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.founder-content p {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.founder-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
}

.founder-title {
    color: var(--text-light);
    font-size: 14px;
}

/* Final CTA - DARK */
.final-cta {
    background: var(--navy);
    padding: 140px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 55%);
    opacity: 0.12;
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.final-cta h2 span { color: var(--cyan); }

.final-cta p {
    color: var(--text-muted);
    font-size: 19px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.final-cta .store-buttons {
    justify-content: center;
    margin-bottom: 0;
}

/* Footer - DARK */
.footer {
    background: var(--navy);
    padding: 70px 40px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand { max-width: 280px; }

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--white);
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 14px; }

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover { color: var(--cyan); }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-left { order: 1; }
    .phone-wrapper { order: 0; }
    .hero-subtitle { margin: 0 auto 40px; }
    .store-buttons { justify-content: center; }
    .chat-bubble { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .features-phone { display: none; }
    .pm-grid, .pricing-grid { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-photo { margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar-inner { padding: 0 24px; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    .nav-links.active { display: flex; }
    .nav-links a { color: var(--white) !important; }
    .hamburger { display: flex; }
    .hero-wrapper { padding: 100px 24px 80px; }
    .hero-container { padding: 50px 30px 80px; border-radius: 28px; }
    .hero-left h1 { font-size: 40px; }
    .phone-mockup { width: 240px; height: 490px; }
    .features, .coaches, .feedback-section, .no-judgement, .skills, .pronunciation-mistakes, .pricing, .founder, .final-cta { padding: 80px 24px; }
    .features h2, .coaches h2, .feedback-section h2, .skills h2, .pricing h2 { font-size: 32px; }
    .no-judgement h2 { font-size: 36px; }
    .final-cta h2 { font-size: 38px; }
    .coach-card { flex: 0 0 280px; }
    .pm-card { padding: 32px 24px; }
    .pricing-card { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .hero-left h1 { font-size: 32px; }
    .store-btn { padding: 12px 16px; }
    .tone-pill { padding: 14px 28px; font-size: 14px; }
    .skills-phones { gap: 40px; }
    .skill-phone-wrapper .phone-mockup { width: 220px; height: 450px; }
}
