/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Colors */
    --clr-bg: #f5f7fa;
    --clr-surface: #ffffff;
    --clr-surface-dark: #0b192c;
    --clr-text: #2d3748;
    --clr-heading: #0b192c;
    --clr-primary: #0b192c;
    --clr-primary-hover: #162a45;
    --clr-accent: #f05454;
    --clr-accent-hover: #d94242;
    --clr-border: #e2e8f0;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    --shadow-soft: 0 10px 40px -10px rgba(11, 25, 44, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(11, 25, 44, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-heading);
    line-height: 1.2;
    font-weight: 700;
}

p { margin-bottom: 1rem; }

.lead {
    font-size: 1.25rem;
    color: var(--clr-text);
    font-weight: 500;
    line-height: 1.7;
}

.lead-strong {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--clr-heading);
    font-weight: 600;
}

.text-coral { color: var(--clr-accent); }
.text-blue { color: var(--clr-primary); }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: #4a5568;
}

.section-light { background-color: var(--clr-surface); }
.section-dark { 
    background-color: var(--clr-surface-dark); 
    color: white; 
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    max-width: 100%;
    white-space: normal;
}

.btn-small { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.btn-large { padding: 1.25rem 2.5rem; font-size: 1.125rem; }

.btn-primary {
    background-color: var(--clr-accent);
    color: white;
}
.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 84, 84, 0.3);
}

.btn-secondary {
    background-color: var(--clr-surface);
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}
.btn-secondary:hover {
    background-color: var(--clr-primary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-border);
}
.btn-outline:hover {
    border-color: var(--clr-primary);
    background: var(--clr-primary);
    color: white;
}

.btn-shadow { box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* ==========================================================================
   Components
   ========================================================================== */

/* Top Bar */
.top-bar {
    background-color: var(--clr-primary);
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled ~ main .countdown-panel {
    top: 1rem;
    right: 1rem;
    transform: translateY(-4px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--clr-heading);
    text-decoration: none;
    line-height: 1.1;
    display: block;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.logo-accent { color: var(--clr-accent); }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--clr-text);
    font-weight: 500;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-heading);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
}

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

.mobile-nav a {
    padding: 1rem;
    text-decoration: none;
    color: var(--clr-heading);
    font-weight: 600;
    border-bottom: 1px solid var(--clr-border);
}

.mobile-nav a.btn {
    margin-top: 1rem;
    text-align: center;
    border: none;
}

.floating-actions {
    position: fixed;
    right: 1.25rem;
    bottom: calc(1.25rem + env(safe-area-inset-bottom));
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
    pointer-events: none;
}

.floating-support-cta,
.floating-share-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-pill);
    background: var(--clr-accent);
    color: white;
    box-shadow: 0 16px 34px rgba(240, 84, 84, 0.34);
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.28s ease, opacity 0.28s ease, background-color 0.2s ease;
}

.floating-share-cta {
    pointer-events: auto;
    background: var(--clr-primary);
    box-shadow: 0 16px 34px rgba(24, 77, 71, 0.24);
}

.floating-support-cta {
    transform: translateY(calc(100% + 2rem));
    opacity: 0;
    pointer-events: none;
}

.floating-support-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-support-cta:hover {
    background: var(--clr-accent-hover);
}

.floating-share-cta:hover {
    background: #123d38;
}

.floating-support-cta svg,
.floating-share-cta svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e2e8f0 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11, 25, 44, 0.05);
    color: var(--clr-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(11, 25, 44, 0.1);
}

.hero-title {
    font-size: 4rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--clr-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-panel {
    position: fixed;
    top: 112px;
    right: 1.5rem;
    z-index: 1100;
    width: min(370px, calc(100vw - 3rem));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(11, 25, 44, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    transform: translateY(0);
    transition:
        top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        right 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        background-color 0.35s ease;
    will-change: top, right, transform;
}

.countdown-copy h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.countdown-copy p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.35;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.countdown-item {
    min-width: 0;
    height: 76px;
    background: var(--clr-primary);
    color: white;
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.35rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    line-height: 1;
    width: 100%;
    text-align: center;
}

.countdown-item span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%230b192c" d="M44.7,-76.4C58.9,-69.2,71.8,-59.1,81.1,-46.3C90.4,-33.5,96.1,-18.1,96.5,-2.6C96.9,13,92.1,28.7,82.8,41.9C73.5,55.1,59.8,65.8,44.7,73.4C29.6,81.1,13.1,85.6,-3.1,90.4C-19.3,95.1,-35.1,100,-48.9,94.2C-62.7,88.4,-74.5,71.8,-82.1,54.2C-89.7,36.5,-93.2,17.9,-91.1,0.5C-89,-16.9,-81.4,-33.1,-71.4,-46.6C-61.4,-60.1,-49,-70.8,-35.1,-78.3C-21.2,-85.7,-6,-89.8,8.2,-89.6C22.4,-89.4,41.6,-84.9,44.7,-76.4Z" transform="translate(100 100) scale(0.9)" opacity="0.05" /></svg>') center/contain no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transform: rotate(3deg);
    transition: var(--transition);
}
.visual-card:hover {
    transform: rotate(0deg) scale(1.05);
}
.visual-icon-wrap {
    background: rgba(240, 84, 84, 0.1);
    color: var(--clr-accent);
    padding: 1.5rem;
    border-radius: 50%;
}
.visual-icon-wrap svg { width: 40px; height: 40px; }
.visual-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--clr-primary);
}


/* About Section */
.about {
    background: var(--clr-surface);
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}
.about-text-wrapper h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    position: sticky;
    top: 120px;
}

/* Arguments (Bento Grid) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bento-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.bento-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--clr-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--clr-primary);
}
.card-icon svg { width: 32px; height: 32px; }

.bento-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.bento-card:nth-child(2) .card-icon { background: rgba(240, 84, 84, 0.1); color: var(--clr-accent); }
.bento-card:nth-child(4) .card-icon { background: rgba(11, 25, 44, 0.1); }

.source-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.source-link:hover {
    color: var(--clr-accent-hover);
}

.source-link-dark {
    color: white;
}

.source-link-dark:hover {
    color: var(--clr-accent);
}

/* Facts Timeline */
.facts-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-left: 2rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.2);
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}
.timeline-dot {
    position: absolute;
    left: -2.45rem;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--clr-accent);
    border: 4px solid var(--clr-surface-dark);
}
.timeline-content {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
}
.timeline-date {
    display: inline-block;
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Budget KPIs */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}
.kpi-card {
    grid-column: span 2;
    background: var(--clr-surface);
    padding: 2.6rem 1.35rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 205px;
    min-width: 0;
    overflow: hidden;
}
.kpi-card:nth-child(4) {
    grid-column: 2 / span 2;
}
.kpi-card:nth-child(5) {
    grid-column: 4 / span 2;
}
.kpi-number {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.85rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 0.9rem;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
}
.kpi-label {
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.78rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

/* Quotes */
.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.quote-card {
    background: var(--clr-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    min-width: 0;
}
.quote-icon {
    color: var(--clr-accent);
    opacity: 0.2;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
.quote-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.quote-author {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--clr-primary);
}

.comment-panel {
    margin-top: 3rem;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.comment-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.comment-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    gap: 0.4rem;
}

.form-row label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-heading);
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    font: inherit;
    color: var(--clr-text);
    background: white;
}

.form-row textarea {
    resize: vertical;
}

.comment-note {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.comment-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: stretch;
    margin-top: 1.5rem;
}

.public-comments {
    min-width: 0;
}

.public-comment {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.public-comment strong {
    display: block;
    color: var(--clr-heading);
    font-family: var(--font-heading);
}

.public-comment p {
    margin: 0.5rem 0 0;
}

.comment-nav-btn {
    width: 48px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--clr-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.comment-nav-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.comment-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Support Steps */
.support { background: var(--clr-primary); color: white; }
.support .section-header p { color: rgba(255,255,255,0.7); }
.support .signature-highlight {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    color: white;
    font-family: var(--font-heading);
    line-height: 1.35;
    max-width: 960px;
    margin-top: -2rem;
    min-width: 0;
}
.support .signature-highlight span {
    color: rgba(255,255,255,0.72);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
}
.support .signature-highlight strong {
    color: var(--clr-accent);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    white-space: nowrap;
    max-width: 100%;
}
.support .signature-highlight small {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.step-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.step-card h3 { color: white; font-size: 1.5rem; margin-bottom: 1rem; }
.step-card .btn-outline { border-color: rgba(255,255,255,0.3); color: white; }
.step-card .btn-outline:hover { background: white; color: var(--clr-primary); }

/* Download */
.download {
    background: var(--clr-surface);
    color: var(--clr-text);
}

.download h2,
.download h3 {
    color: var(--clr-heading);
}

.download-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem;
    align-items: center;
}

.download .section-header {
    margin-bottom: 2rem;
}

.download .section-header p {
    color: #4a5568;
}

.download-warning {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.download-warning svg {
    flex: 0 0 auto;
    color: var(--clr-accent);
    width: 36px;
    height: 36px;
}

.download-warning p {
    margin: 0;
    color: #4a5568;
}

.form-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
}

.form-facts > div {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.form-facts span {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.form-facts p {
    margin: 0;
    color: #4a5568;
}

.download-card {
    background: var(--clr-primary);
    color: var(--clr-text);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    padding: 2.5rem;
    text-align: center;
}

.download-card h3 {
    color: white;
    margin: 1.25rem 0 0.75rem;
}

.download-card p {
    color: rgba(255,255,255,0.78);
}

.download-card .visual-icon-wrap {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-card .btn[disabled] {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
}

/* Locations */
.locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    min-width: 0;
}
.locations-content { padding: 4rem; }
.locations-list {
    max-height: 430px;
    overflow-y: auto;
    padding-right: 0.75rem;
    scrollbar-gutter: stable;
}

.locations-list .location-item:last-child {
    border-bottom: none;
}

.location-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--clr-border);
}
.loc-details {
    min-width: 0;
}
.loc-icon {
    background: rgba(11, 25, 44, 0.05);
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
}
.loc-details h4 { margin-bottom: 0.25rem; }
.loc-details p { margin: 0; color: #4a5568; font-size: 0.875rem; }
.loc-details a {
    display: inline-flex;
    margin-top: 0.5rem;
    color: var(--clr-accent);
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.locations-map-placeholder {
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.locations-map {
    width: 100%;
    height: 100%;
    min-height: 520px;
    z-index: 1;
}
.map-inner {
    text-align: center;
    color: #718096;
}
.map-inner svg { width: 64px; height: 64px; margin-bottom: 1rem; opacity: 0.5; }

/* FAQ */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--clr-border);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-heading);
    cursor: pointer;
    text-align: left;
}
.faq-question svg { transition: var(--transition); }
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}
.faq-answer p { padding-bottom: 1.5rem; color: #4a5568; }

/* Press */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.press-card {
    display: block;
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--clr-text);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}
.press-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-3px);
}
.press-date {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.press-card h4 { margin-bottom: 1rem; color: var(--clr-heading); }
.press-card p { margin-bottom: 1.25rem; }
.press-link-text {
    font-weight: 600;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}
.press-link-text svg { width: 16px; height: 16px; }

/* Final CTA */
.final-cta {
    background: var(--clr-accent);
    color: white;
    padding: 8rem 0;
}
.final-cta h2 { color: white; font-size: 3.5rem; margin-bottom: 1.5rem; }
.final-cta p { font-size: 1.5rem; opacity: 0.9; }

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-copy h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-copy a {
    color: var(--clr-accent);
    overflow-wrap: anywhere;
}

.contact-form {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--clr-surface-dark);
    color: rgba(255,255,255,0.7);
    padding: 6rem 0 2rem;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand .logo-accent { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: white; }
.footer-links h4 { color: white; margin-bottom: 1.5rem; font-size: 1.125rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 0.5rem;}
.footer-links a:hover { color: var(--clr-accent); }
.inline-icon { width: 16px; height: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.legal-box {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 3rem;
    margin-bottom: 3rem;
}

.legal-box h3,
.legal-box h4 {
    color: white;
}

.legal-box a {
    color: white;
}

.legal-page {
    max-width: 860px;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.legal-page h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.legal-page a {
    color: var(--clr-accent);
}

.privacy-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.privacy-section h2 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.privacy-section ol {
    padding-left: 1.25rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.responsible-grid > div {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kpi-card,
    .kpi-card:nth-child(4),
    .kpi-card:nth-child(5) {
        grid-column: auto;
    }
    .kpi-number { font-size: clamp(2rem, 5vw, 2.85rem); }
    .quote-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    section { padding: 4rem 0; }
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-container { height: 72px; }
    .mobile-nav {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    
    .hero { padding: 4rem 0 3.5rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem;}
    .hero-title { font-size: clamp(2.35rem, 9vw, 3rem); }
    .hero-subtitle { max-width: 100%; margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .countdown-panel {
        position: static;
        width: 100%;
        max-width: 420px;
        margin: 2rem auto 0;
        text-align: left;
    }
    .hero-visual { min-height: 250px; }
    
    .about-container { grid-template-columns: 1fr; gap: 2rem; }
    .about-text-wrapper h2 { position: static; font-size: 2.5rem; }
    
    .bento-grid { grid-template-columns: 1fr; }
    
    .kpi-grid { grid-template-columns: 1fr; }
    .kpi-card,
    .kpi-card:nth-child(4),
    .kpi-card:nth-child(5) {
        grid-column: auto;
    }
    .kpi-number { font-size: clamp(2rem, 8vw, 2.85rem); }
    .quote-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .download-container { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; gap: 2rem; }
    
    .locations-wrapper { grid-template-columns: 1fr; }
    .locations-content { padding: 2rem; }
    .locations-map-placeholder { min-height: 300px; }
    .locations-map { min-height: 320px; }
    
    .press-grid { grid-template-columns: 1fr; }
    
    .final-cta h2 { font-size: 2.5rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .responsible-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .container { padding: 0 1rem; }
    section { padding: 3.25rem 0; }
    .top-bar {
        padding: 0.45rem 0.75rem;
        font-size: 0.78rem;
        line-height: 1.35;
    }
    .nav-container { height: 64px; }
    .logo a { font-size: 1rem; }
    .mobile-nav { max-height: calc(100vh - 64px); }
    .mobile-nav a { padding: 0.85rem 1rem; }
    .hero { padding: 3rem 0 2.75rem; }
    .hero-title {
        font-size: clamp(2rem, 12vw, 2.55rem);
        letter-spacing: 0;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    .hero-buttons,
    .hero-buttons .btn,
    .final-cta .btn,
    .download-card .btn {
        width: 100%;
    }
    .btn-large {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    .countdown-panel {
        padding: 0.75rem;
        border-radius: var(--radius-sm);
    }
    .countdown-copy h3 { font-size: 1.05rem; }
    .countdown-copy p { display: none; }
    .countdown-grid { gap: 0.45rem; }
    .countdown-item {
        height: 62px;
    }
    .countdown-item strong { font-size: 1.45rem; }
    .countdown-item span { font-size: 0.65rem; }
    .hero-visual { display: none; }
    .section-header {
        margin-bottom: 2rem;
        text-align: left;
    }
    .section-header h2,
    .contact-copy h2,
    .legal-page h1 {
        font-size: clamp(2rem, 10vw, 2.35rem);
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }
    .download .section-header h2 {
        font-size: clamp(1.75rem, 8.8vw, 2.2rem);
        overflow-wrap: normal;
        word-break: keep-all;
        hyphens: none;
    }
    .section-header p,
    .lead {
        font-size: 1.05rem;
    }
    .about-text-wrapper h2 {
        font-size: clamp(2rem, 10vw, 2.35rem);
    }
    .facts-header,
    .timeline {
        padding-left: 1.25rem;
    }
    .bento-card,
    .quote-card,
    .comment-panel,
    .contact-form,
    .download-card,
    .timeline-content,
    .press-card,
    .responsible-grid > div {
        padding: 1.35rem;
        border-radius: var(--radius-md);
    }
    .bento-card,
    .download-card,
    .kpi-card,
    .quote-card,
    .step-card {
        overflow: visible;
    }
    .quote-icon {
        width: 36px;
        height: 36px;
        top: 1rem;
        right: 1rem;
    }
    .quote-text {
        font-size: 1rem;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }
    .bento-card h3,
    .comment-panel h3 {
        font-size: 1.35rem;
    }
    .card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1.25rem;
    }
    .card-icon svg {
        width: 26px;
        height: 26px;
    }
    .download-warning {
        flex-direction: column;
        padding: 1.25rem;
    }
    .support .signature-highlight {
        margin-top: -1rem;
        display: grid;
        gap: 0.35rem;
        align-items: start;
    }
    .support .signature-highlight span,
    .support .signature-highlight small {
        font-size: 1rem;
    }
    .support .signature-highlight strong {
        white-space: normal;
        font-size: clamp(1.75rem, 8.5vw, 2.35rem);
        line-height: 1.08;
    }
    .step-card {
        padding: 2rem 1.35rem;
    }
    .step-number {
        font-size: 4rem;
    }
    .locations-content { padding: 1.35rem; }
    .locations-list {
        max-height: 340px;
        padding-right: 0.35rem;
    }
    .location-item {
        align-items: flex-start;
        gap: 0.85rem;
        min-width: 0;
    }
    .loc-icon {
        width: 42px;
        height: 42px;
    }
    .locations-map-placeholder,
    .locations-map {
        min-height: 260px;
    }
    .faq-question {
        gap: 1rem;
        font-size: 1.05rem;
        line-height: 1.35;
    }
    .final-cta {
        padding: 4rem 0;
    }
    .final-cta h2 {
        font-size: clamp(2rem, 10vw, 2.35rem);
    }
    .final-cta p {
        font-size: 1.1rem;
    }
    .kpi-card { min-height: 0; }
    .kpi-number {
        font-size: clamp(1.65rem, 9vw, 2.25rem);
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .kpi-label {
        font-size: 0.72rem;
        letter-spacing: 0;
    }
    .comment-carousel { gap: 0.5rem; }
    .comment-nav-btn { width: 40px; }
    .form-row input,
    .form-row textarea {
        padding: 0.85rem;
    }
    .footer {
        padding: 4rem 0 2rem;
    }
    .floating-actions {
        left: auto;
        right: 0.85rem;
        bottom: calc(1rem + env(safe-area-inset-bottom));
        align-items: flex-end;
        gap: 0.55rem;
    }

    .floating-support-cta,
    .floating-share-cta {
        width: fit-content;
        max-width: calc(100vw - 1.7rem);
        min-height: 48px;
        padding: 0.72rem 0.9rem;
        font-size: 0.88rem;
    }

    .floating-support-cta span,
    .floating-share-cta span {
        min-width: 0;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 380px) {
    .container { padding: 0 0.85rem; }
    .hero-title { font-size: 1.9rem; }
    .countdown-panel { padding: 0.65rem; }
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .countdown-item {
        height: 58px;
    }
    .comment-carousel {
        grid-template-columns: 1fr 1fr;
    }
    .public-comments {
        grid-column: 1 / -1;
        order: -1;
    }
    .comment-nav-btn {
        width: 100%;
        height: 42px;
    }
}
