/* ──────────────────────────────────────────────────────
   CrackingInterview — Shared Dark Theme
   ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #d1d5db;
    background: #0a0a0f;
}

a { color: #60a5fa; text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: #f3f4f6; }
hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 30px 0; }

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img { width: 30px; height: 30px; border-radius: 6px; }
.nav-brand span { color: #60a5fa; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    color: #9ca3af;
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; text-decoration: none; }

/* ── FOOTER ── */
footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 24px;
    text-align: center;
}
.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #6b7280;
    font-size: 0.9em;
    transition: color 0.2s;
}
.footer-links a:hover { color: #e0e0e0; }
.copyright {
    color: #4b5563;
    font-size: 0.85em;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59,130,246,0.3);
    border: 1px solid transparent;
}
.btn-primary:hover { box-shadow: 0 6px 30px rgba(59,130,246,0.45); }
.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #e0e0e0;
    border: 1px solid rgba(255,255,255,0.18);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.btn-icon { width: 18px; height: 18px; }

/* ── SHARED SECTION STYLES ── */
section { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
    font-size: clamp(1.6em, 3vw, 2.4em);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.05em;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,130,246,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139,92,246,0.08) 0%, transparent 50%);
}
.hero h1 {
    font-size: clamp(2.2em, 5vw, 3.8em);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    max-width: 750px;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .subtitle {
    font-size: clamp(1em, 2vw, 1.25em);
    color: #9ca3af;
    max-width: 600px;
    margin: 20px auto 0;
}
.hero .platforms {
    margin-top: 12px;
    font-size: 0.9em;
    color: #6b7280;
}
.cta-row {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-row .btn {
    min-width: 250px;
    justify-content: center;
    white-space: nowrap;
}
.hero-image {
    margin-top: 60px;
    max-width: 520px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

/* ── INTERVIEW TYPES ── */
.interview-types-section {
    background: rgba(255,255,255,0.015);
}
.interview-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}
.type-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.type-card:hover {
    border-color: rgba(96,165,250,0.3);
    transform: translateY(-4px);
}
.type-card img {
    width: 100%;
    display: block;
}
.type-card-body {
    padding: 20px 22px 24px;
}
.type-tag {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.type-tag.algo { background: rgba(52,211,153,0.12); color: #34d399; }
.type-tag.design { background: rgba(139,92,246,0.12); color: #a78bfa; }
.type-tag.audio { background: rgba(251,191,36,0.12); color: #fbbf24; }
.type-card-body h3 { font-size: 1.15em; color: #fff; margin-bottom: 8px; }
.type-card-body p { font-size: 0.92em; color: #9ca3af; line-height: 1.55; }

/* ── HOW IT WORKS ── */
.how-it-works-section { }
.steps { display: flex; flex-direction: column; gap: 80px; }
.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.step-row.reverse .step-text { order: 2; }
.step-row.reverse .step-img { order: 1; }
.step-num-circle {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    width: 36px; height: 36px;
    text-align: center; line-height: 36px;
    border-radius: 50%;
    font-weight: 700; font-size: 0.95em;
    margin-bottom: 12px;
}
.step-text h3 { font-size: 1.4em; color: #fff; margin-bottom: 10px; }
.step-text p { color: #9ca3af; font-size: 1em; line-height: 1.7; }
.step-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

/* ── SHOWCASE (Settings Grid) ── */
.features-section { background: rgba(255,255,255,0.015); }
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.showcase-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.showcase-card:hover {
    border-color: rgba(96,165,250,0.3);
    transform: translateY(-3px);
}
.showcase-card img {
    width: 100%;
    display: block;
}
.showcase-card-body {
    padding: 18px 22px 22px;
}
.showcase-card-body h3 { font-size: 1.1em; color: #fff; margin-bottom: 6px; }
.showcase-card-body p { font-size: 0.92em; color: #9ca3af; line-height: 1.55; }

/* ── MULTI-LANGUAGE AUDIO ── */
.audio-lang-section { }
.audio-lang-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.audio-lang-text p {
    color: #9ca3af;
    font-size: 1em;
    line-height: 1.7;
    margin-top: 16px;
}
.audio-lang-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.audio-lang-features li {
    padding: 5px 0;
    font-size: 0.95em;
    color: #b0b0b0;
}
.audio-lang-features li::before {
    content: '\2713';
    color: #34d399;
    font-weight: 700;
    margin-right: 10px;
}
.audio-lang-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

/* ── FEATURE HIGHLIGHTS ── */
.highlights-section {
    background: rgba(255,255,255,0.015);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.highlight-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
}
.highlight-card:hover {
    border-color: rgba(96,165,250,0.3);
    transform: translateY(-3px);
}
.highlight-icon {
    color: #60a5fa;
    margin-bottom: 14px;
}
.highlight-card h3 { font-size: 1.1em; color: #fff; margin-bottom: 8px; }
.highlight-card p { font-size: 0.92em; color: #9ca3af; line-height: 1.55; }

/* ── PLANS ── */
.plans-section { }
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}
.plan-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 32px 28px;
}
.plan-card.pro {
    border-color: rgba(96,165,250,0.4);
    background: rgba(59,130,246,0.04);
    position: relative;
}
.plan-badge {
    position: absolute;
    top: -12px; right: 20px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    font-size: 0.75em; font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.plan-card h3 { font-size: 1.3em; color: #fff; margin-bottom: 16px; }
.plan-card ul { list-style: none; padding: 0; }
.plan-card li { padding: 5px 0; font-size: 0.93em; color: #b0b0b0; }
.plan-card li::before { content: '\2713'; color: #34d399; font-weight: 700; margin-right: 8px; }
.plans-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.9em;
    margin-top: 20px;
}

/* ── REQUIREMENTS ── */
.requirements-section {
    background: rgba(255,255,255,0.015);
}
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.requirement-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
}
.requirement-card:hover {
    border-color: rgba(96,165,250,0.3);
    transform: translateY(-3px);
}
.requirement-icon { font-size: 2em; margin-bottom: 14px; }
.requirement-card h3 { font-size: 1.1em; color: #fff; margin-bottom: 8px; }
.requirement-card p { font-size: 0.92em; color: #9ca3af; line-height: 1.55; }

/* ── CTA SECTION ── */
.cta-section {
    text-align: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59,130,246,0.08) 0%, transparent 60%);
}

/* ── NOTICE ── */
.notice-section { padding: 60px 24px; }
.notice-box {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(245,158,11,0.06);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 12px;
    padding: 24px 28px;
    text-align: center;
}
.notice-box h3 { color: #fbbf24; font-size: 1em; margin-bottom: 8px; }
.notice-box p { color: #9ca3af; font-size: 0.93em; }
.notice-box a { color: #fbbf24; }

/* ── COMPARISON PAGE ── */
.compare-hero {
    padding: 120px 24px 60px;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,130,246,0.10) 0%, transparent 60%);
}
.compare-hero h1 {
    font-size: clamp(2em, 4vw, 3em);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.compare-hero p {
    color: #9ca3af;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

.compare-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.compare-table th,
.compare-table td {
    text-align: center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.93em;
    color: #b0b0b0;
    vertical-align: middle;
}
.compare-table th {
    background: rgba(255,255,255,0.04);
    font-weight: 600;
    color: #e0e0e0;
    position: sticky;
    top: 60px;
    z-index: 10;
}
.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #d1d5db;
    min-width: 200px;
}
.compare-table .col-ours {
    background: rgba(59,130,246,0.06);
    border-left: 2px solid rgba(59,130,246,0.3);
    border-right: 2px solid rgba(59,130,246,0.3);
}
.compare-table th.col-ours {
    background: rgba(59,130,246,0.12);
    color: #60a5fa;
    font-weight: 700;
}
.compare-table .check { color: #34d399; font-weight: 700; font-size: 1.2em; }
.compare-table .cross { color: #ef4444; font-weight: 700; font-size: 1.1em; }
.compare-table .partial { color: #fbbf24; font-size: 0.85em; }
.compare-table .price-cell { font-weight: 700; font-size: 1em; }
.compare-table .price-ours { color: #34d399; font-size: 1.15em; }
.compare-table .price-other { color: #f87171; }
.compare-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}
.compare-table .row-category td {
    background: rgba(255,255,255,0.03);
    font-weight: 600;
    color: #e0e0e0;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 16px;
}

/* Comparison - Why Us */
.why-us-section { padding: 80px 24px; }
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.why-us-card {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
}
.why-us-card .why-icon {
    color: #60a5fa;
    margin-bottom: 14px;
}
.why-us-card h3 { font-size: 1.05em; color: #fff; margin-bottom: 8px; }
.why-us-card p { font-size: 0.88em; color: #9ca3af; line-height: 1.5; }

/* ── PAGE CONTENT (legal / guide) ── */
.page-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}
.page-container h1 {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    padding-bottom: 14px;
    margin-bottom: 6px;
    border-bottom: 2px solid rgba(96,165,250,0.3);
}
.page-container h2 {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.page-container h2:first-of-type { border-top: none; padding-top: 0; }
.page-container h3 {
    color: #c0c0c0;
    margin-top: 18px;
    font-size: 1.05em;
}
.page-container p { margin: 10px 0; }
.page-container ul, .page-container ol { margin: 10px 0 10px 20px; }
.page-container li { margin: 6px 0; }
.last-updated {
    color: #6b7280;
    font-size: 0.9em;
    font-style: italic;
}
.toc {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px 24px;
    border-radius: 10px;
    margin: 24px 0;
}
.toc strong { color: #e0e0e0; }
.toc ol { padding-left: 20px; margin: 8px 0 0; }
.toc li { margin: 4px 0; }
.toc a { font-size: 0.95em; }

/* Info/Warning/Critical boxes */
.info-box {
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.25);
    border-left: 4px solid #3b82f6;
    padding: 16px 20px;
    margin: 18px 0;
    border-radius: 0 8px 8px 0;
}
.info-box h3 { color: #60a5fa; margin-top: 0; font-size: 1em; }
.warning-box, .important-box {
    background: rgba(245,158,11,0.06);
    border: 1px solid rgba(245,158,11,0.25);
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    margin: 18px 0;
    border-radius: 0 8px 8px 0;
}
.warning-box h3, .important-box h3 { color: #fbbf24; margin-top: 0; font-size: 1.05em; }
.critical-box {
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.25);
    border-left: 4px solid #ef4444;
    padding: 16px 20px;
    margin: 18px 0;
    border-radius: 0 8px 8px 0;
}
.critical-box h3 { color: #f87171; margin-top: 0; font-size: 1.05em; }

/* Step blocks (guide) */
.step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 4px solid #3b82f6;
    padding: 13px 18px;
    margin: 10px 0;
    border-radius: 0 8px 8px 0;
}
.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    font-size: 0.8em;
    font-weight: 700;
    margin-right: 8px;
}

/* Tip / Warning callouts (guide) */
.tip {
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.2);
    border-left: 4px solid #3b82f6;
    padding: 12px 18px;
    margin: 14px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95em;
}
.tip strong { color: #60a5fa; }
.warning {
    background: rgba(245,158,11,0.06);
    border: 1px solid rgba(245,158,11,0.2);
    border-left: 4px solid #f59e0b;
    padding: 12px 18px;
    margin: 14px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95em;
}
.warning strong { color: #fbbf24; }

/* Keyboard key style */
.kbd {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 1px 7px;
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 0.85em;
    color: #e0e0e0;
}
code {
    background: rgba(255,255,255,0.06);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.9em;
    color: #a78bfa;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.data-table th, .data-table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.08);
}
.data-table th {
    background: rgba(255,255,255,0.04);
    font-weight: 600;
    color: #e0e0e0;
}
.data-table td { color: #b0b0b0; }
.data-table td:first-child { white-space: nowrap; }

/* Guide screenshots */
.guide-screenshot {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
    margin: 18px auto;
    display: block;
}
.guide-gif {
    max-width: 520px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
    margin: 18px auto;
    display: block;
}
.screenshot-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 18px auto;
    max-width: 700px;
}
.screenshot-pair img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.screenshot-caption {
    text-align: center;
    color: #6b7280;
    font-size: 0.85em;
    margin-top: 6px;
}
.screenshot-single {
    text-align: center;
    margin: 18px auto;
}
.screenshot-single img {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.screenshot-triple {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin: 18px auto;
    max-width: 820px;
}
.screenshot-triple img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

/* ── HAMBURGER MENU ── */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #d1d5db;
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav { padding: 0 16px; }
    .nav-hamburger { display: block; }
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        font-size: 1em;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: #d1d5db;
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links a:hover { color: #fff; text-decoration: none; }
    .page-container { padding: 80px 16px 40px; }
    .page-container h1 { font-size: 1.6em; }

    /* Homepage responsive */
    .hero { padding: 100px 20px 60px; }
    section { padding: 60px 20px; }
    .step-row { grid-template-columns: 1fr; gap: 30px; }
    .step-row.reverse .step-text { order: 1; }
    .step-row.reverse .step-img { order: 2; }
    .interview-types-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .requirements-grid { grid-template-columns: 1fr; }
    .audio-lang-row { grid-template-columns: 1fr; gap: 30px; }
    .audio-lang-text .section-title { text-align: center !important; }
    .why-us-grid { grid-template-columns: 1fr 1fr; }

    /* Guide responsive */
    .screenshot-pair { grid-template-columns: 1fr; }
    .screenshot-triple { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .requirements-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
