/* ============================================
   KRINO Dokim — Landing Page Styles
   Brand: Navy (#1B3A5C) + Green (#6AAD1E)
   ============================================ */

/* --- Self-hosted Inter (GDPR compliance — no third-party font requests) --- */
/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1B3A5C;
    --navy-light: #24496F;
    --navy-dark: #132A44;
    --green: #6AAD1E;
    --green-dark: #4E8A0E;
    --green-darker: #3D7A0A;
    --green-light: #7EC42E;
    --bg: #F5F5F0;
    --bg-alt: #FFFFFF;
    --text: #2D3748;
    --text-light: #607085;
    --text-muted: #697077;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1001;
    padding: 8px 16px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.skip-link:focus {
    top: 12px;
}

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(106, 173, 30, 0.4);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 245, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
    border-bottom-color: var(--border);
    background: rgba(245, 245, 240, 0.95);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    font-size: 13px;
    padding: 8px 18px;
}

.btn-lg {
    font-size: 16px;
    padding: 14px 32px;
}

.btn-block {
    display: flex;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
}

.btn-primary {
    background: var(--green-darker);
    color: #fff;
    border-color: var(--green-darker);
}

.btn-primary:hover {
    background: #336A08;
    border-color: #336A08;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 173, 30, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--navy);
    background: rgba(27, 58, 92, 0.04);
}

.btn-disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: default;
}

/* --- Hero --- */
.hero {
    padding: 140px 0 80px;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-darker);
    background: rgba(106, 173, 30, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-green {
    color: var(--green);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

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

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero Window / Code Demo */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-window {
    background: var(--navy-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 520px;
}

.window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.2);
}

.window-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28C840; }

.window-title {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.window-body {
    padding: 24px;
}

.code-block {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.8;
}

.code-line {
    color: rgba(255,255,255,0.85);
}

.code-line.indent {
    padding-left: 20px;
}

.code-comment {
    color: rgba(255,255,255,0.35);
}

.code-keyword {
    color: var(--green-light);
    font-weight: 600;
}

.code-step {
    color: #60A5FA;
    font-weight: 600;
}

.code-blank {
    height: 8px;
}

.code-arrow {
    color: var(--green);
    text-align: center;
    font-weight: 600;
    padding: 4px 0;
}

/* --- Sections --- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* --- How It Works --- */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    max-width: 280px;
    padding: 0 20px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-darker);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(106, 173, 30, 0.1);
    color: var(--green);
    margin-bottom: 16px;
}

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

.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--text-muted);
}

/* --- Screenshot Showcase (hidden until images supplied) --- */
.showcase {
    display: none;
    padding: 100px 0;
    background: var(--bg-alt);
}

.showcase-window {
    max-width: 800px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
}

.showcase-placeholder {
    background: #2a3a4a;
    border-radius: var(--radius-md);
    min-height: 400px;
}

.showcase-placeholder img {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
}

.showcase-caption {
    text-align: center;
    margin-top: 24px;
}

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

/* --- Features --- */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(106, 173, 30, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(27, 58, 92, 0.06);
    color: var(--navy);
    margin-bottom: 16px;
}

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

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Providers Strip --- */
.providers {
    padding: 48px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.providers-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.providers-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.provider {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

.provider svg {
    opacity: 0.5;
}

.provider-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(106, 173, 30, 0.1);
    color: var(--green-darker);
    padding: 2px 6px;
    border-radius: 4px;
}

/* --- Batch Processing --- */
.batch {
    padding: 80px 0;
    background: var(--bg-alt);
}

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

.batch-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.batch-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(27, 58, 92, 0.06);
    color: var(--navy);
}

.batch-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.batch-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Persona Callout (How It Works) --- */
.persona-callout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 720px;
    margin: 48px auto 0;
    padding: 24px 28px;
    background: rgba(27, 58, 92, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.persona-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(106, 173, 30, 0.1);
    color: var(--green);
}

.persona-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.persona-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Comparison Section --- */
.comparison {
    padding: 100px 0;
    background: var(--bg);
}

.comparison-table {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--navy);
    color: #fff;
}

.comparison-feature-label {
    padding: 14px 20px;
}

.comparison-col-header {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.comparison-col-krino {
    background: rgba(106, 173, 30, 0.15);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid var(--border);
}

.comparison-row:hover {
    background: rgba(27, 58, 92, 0.02);
}

.comparison-feature {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
}

.comparison-cell {
    padding: 14px 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.comparison-no {
    color: var(--text-muted);
}

.comparison-no svg {
    flex-shrink: 0;
    color: #D97706;
}

.comparison-yes {
    color: var(--text);
    background: rgba(106, 173, 30, 0.04);
}

.comparison-yes svg {
    flex-shrink: 0;
    color: var(--green);
}

.pipeline-callout {
    max-width: 640px;
    margin: 32px auto 0;
    padding: 24px 28px;
    background: rgba(27, 58, 92, 0.04);
    border: 1px solid var(--border);
    border-left: 3px solid var(--green);
    border-radius: var(--radius-md);
    text-align: left;
}

.pipeline-callout-headline {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.5;
}

.pipeline-callout-body {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Slogan Band --- */
/* Also provides visual break between --bg sections (Comparison + Security) */
.slogan-band {
    padding: 48px 0;
    background: var(--navy-dark);
    text-align: center;
}

.slogan-band-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.3px;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Security Section (expanded privacy) --- */
.security {
    padding: 100px 0;
    background: var(--bg);
}

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

.security-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.security-card:hover {
    border-color: rgba(106, 173, 30, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.security-card-highlight {
    border-color: var(--green-darker);
    box-shadow: 0 0 0 1px var(--green-darker);
}

.security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(106, 173, 30, 0.1);
    color: var(--green);
    margin-bottom: 14px;
}

.security-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.security-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Coverage Levels --- */
.coverage {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.coverage-card {
    text-align: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: all var(--transition);
}

.coverage-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.coverage-card-active {
    border-color: var(--green-darker);
    box-shadow: 0 0 0 1px var(--green-darker);
}

.coverage-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-darker);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.coverage-level {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.coverage-count {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.coverage-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.coverage-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Pricing --- */
.pricing {
    padding: 100px 0;
    background: var(--bg-alt);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    background: transparent;
    color: var(--text-light);
    transition: all var(--transition);
}

.pricing-toggle-btn.active {
    background: var(--navy);
    color: #fff;
}

.pricing-toggle-save {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(106, 173, 30, 0.15);
    color: var(--green-darker);
    padding: 2px 8px;
    border-radius: 100px;
}

.pricing-toggle-btn.active .pricing-toggle-save {
    background: rgba(106, 173, 30, 0.25);
    color: var(--green-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
}

.pricing-card-featured {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-darker);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    margin-bottom: 28px;
}

.pricing-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.pricing-card-featured .pricing-card-header h3 {
    color: #fff;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-amount,
.pricing-period {
    transition: opacity 150ms ease;
}

.pricing-amount.price-updating,
.pricing-period.price-updating {
    opacity: 0;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
}

.pricing-card-featured .pricing-amount {
    color: #fff;
}

.pricing-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card-featured .pricing-period {
    color: rgba(255,255,255,0.6);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.pricing-card-featured .pricing-desc {
    color: rgba(255,255,255,0.7);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.pricing-card-featured .pricing-features li {
    color: rgba(255,255,255,0.9);
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--green);
}

.pricing-card-featured .pricing-features li svg {
    color: var(--green-light);
}

.pricing-card-featured .btn-primary {
    background: var(--green-darker);
    border-color: var(--green-darker);
}

.pricing-card-featured .btn-primary:hover {
    background: #336A08;
    border-color: #336A08;
}

.pricing-card-featured .btn-outline {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.25);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background: var(--bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    color: var(--green-darker);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Download / CTA --- */
.download {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
}

.download h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.download p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.download-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.release-notes-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.release-notes-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.download .btn-primary {
    font-size: 18px;
    padding: 16px 40px;
}

.download-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: none;
    appearance: none;
    font-family: inherit;
    transition: var(--transition);
    cursor: default;
}

.platform:not(.platform-soon) {
    cursor: pointer;
}

.platform-active {
    color: #fff;
    border-color: var(--green);
    background: rgba(106, 173, 30, 0.15);
}

.platform-active svg {
    color: var(--green-light);
}

.platform-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.coming-soon {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

.download-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.download-meta-sep {
    font-size: 10px;
}

/* --- Getting Started --- */
.getting-started {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.getting-started h3 {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.getting-started-steps {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.getting-started-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.getting-started-steps li strong {
    color: rgba(255,255,255,0.9);
}

.gs-step-number {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(106, 173, 30, 0.2);
    color: var(--green-light);
    font-size: 12px;
    font-weight: 700;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 32px;
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 300px;
}

.footer-slogan {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-top: 8px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* --- Legal Pages --- */
.legal {
    padding: 120px 0 80px;
}

.legal h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal li {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal a {
    color: var(--green-darker);
    text-decoration: underline;
}

.legal a:hover {
    color: var(--navy);
}

/* --- 404 Error Page --- */
.error-page {
    padding: 180px 0 120px;
    text-align: center;
}

.error-page h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.error-page p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* --- Animations --- */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    .animate-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .feature-card,
    .coverage-card,
    .security-card {
        transition: none;
    }
    .faq-answer {
        transition: none;
    }
    .faq-chevron {
        transition: none;
    }
    .platform {
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-window {
        max-width: 480px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-feature,
    .comparison-cell {
        padding: 12px 14px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .download-platforms {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav .btn-sm {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-connector {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .batch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-feature-label {
        display: none;
    }

    .comparison-col-header {
        text-align: left;
    }

    .comparison-feature {
        background: var(--bg);
        font-weight: 700;
    }

    .comparison-cell {
        padding-left: 28px;
    }

    .persona-callout {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .download h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .slogan-band {
        padding: 36px 0;
    }

    .slogan-band-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .slogan-band-text {
        font-size: 20px;
    }

    .hero-window {
        max-width: 100%;
    }

    .code-block {
        font-size: 11px;
    }

    .window-body {
        padding: 16px;
    }

    .batch-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
