﻿:root {
    --bg: #f3f8fb;
    --surface: #ffffff;
    --text: #1f2933;
    --muted: #5c6b7a;
    --primary: #0f766e;
    --primary-strong: #0a5a55;
    --secondary: #0b2740;
    --accent: #f59e0b;
    --line: #d9e5ef;
    --shadow: 0 14px 34px rgba(15, 39, 64, 0.12);
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Sora", "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 10%, rgba(15, 118, 110, 0.09), transparent 32%),
        radial-gradient(circle at 85% 3%, rgba(245, 158, 11, 0.09), transparent 25%),
        var(--bg);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

    .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: fit-content;
}

.brand-title {
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--secondary);
}

.brand-sub {
    font-size: 0.76rem;
    color: var(--muted);
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    justify-content: center;
}

.main-nav a {
    font-size: 0.8rem;
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    color: #273849;
    transition: 0.2s ease;
}

.main-nav a:hover {
    background: #e7f1f8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: fit-content;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #b9cde0;
    background: #fff;
    color: var(--secondary);
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    border-radius: 3px;
    background: currentColor;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.3);
    padding: 0.85rem 1.35rem;
    font-size: 0.92rem;
}

.btn-primary:hover {
    background: var(--primary-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 1px solid #b9cde0;
    padding: 0.82rem 1.25rem;
    font-size: 0.9rem;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #b9cde0;
    background: #fff;
    color: #e1306c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-btn:hover {
    transform: translateY(-1px);
    background: #fff0f6;
    border-color: #f3a8c7;
}

.hero {
    background-image:
        linear-gradient(107deg, rgba(11, 39, 64, 0.85) 0%, rgba(15, 118, 110, 0.78) 48%, rgba(15, 118, 110, 0.45) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 70svh;
    display: grid;
    align-items: center;
    padding: 3rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.2rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
}

.hero p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.94);
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-points {
    margin: 1.3rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    font-size: 0.93rem;
}

.hero-points li::before {
    content: "\2713";
    color: #ffd487;
    margin-right: 0.55rem;
}

.hero-media {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-media img {
    width: 100%;
    height: auto;
}

.hero-media-natural {
    width: min(100%, 560px);
    justify-self: center;
}

.section {
    padding: 4rem 0;
}

.section-title {
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    color: var(--secondary);
    line-height: 1.2;
}

.section-subtitle {
    margin: 0.9rem 0 0;
    color: var(--muted);
    max-width: 72ch;
}

.cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: 0 8px 20px rgba(17, 54, 88, 0.06);
}

.card h3 {
    margin: 0 0 0.7rem;
    color: var(--secondary);
    font-size: 1.05rem;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.card-link {
    display: inline-block;
    margin-top: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.65rem;
}

.checklist li {
    position: relative;
    padding-left: 1.35rem;
    color: #2f4050;
    font-size: 0.95rem;
}

.checklist li::before {
    content: "";
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--primary), #3bb0a5);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.cta-band {
    margin-top: 1.8rem;
    background: linear-gradient(120deg, var(--secondary), #123f65 55%, var(--primary));
    color: #fff;
    border-radius: var(--radius);
    padding: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-band h3 {
    margin: 0;
    font-size: 1.2rem;
}

.cta-band p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.faq {
    margin-top: 1.4rem;
    display: grid;
    gap: 0.7rem;
}

.faq details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem 1rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--secondary);
}

.faq p {
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.site-footer {
    margin-top: 2rem;
    background: #0c2238;
    color: #d6e3f0;
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.2fr 1fr;
}

.site-footer p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.78rem;
    color: #9bb4cc;
    margin-top: 0.6rem;
}

.floating-wa {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 999;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.floating-wa:hover {
    transform: translateY(-1px);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: #0c2238;
    color: #d9e9f8;
    border-top: 1px solid #274866;
    padding: 0.95rem 1rem;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.cookie-inner {
    width: min(1120px, 96%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.cookie-text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: #d9e9f8;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: fit-content;
}

.cookie-btn {
    border: 1px solid #6288aa;
    background: transparent;
    color: #d9e9f8;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.cookie-btn--accept {
    border-color: #0f766e;
    background: #0f766e;
    color: #fff;
}

.cookie-btn--reject {
    border-color: #7f99b2;
}

.cookie-hidden {
    display: none !important;
}

body.cookie-banner-visible .floating-wa {
    bottom: 6.2rem;
}

@media (max-width: 980px) {
    .nav-wrap {
        flex-wrap: wrap;
    }

    .header-actions {
        margin-left: auto;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.15rem;
    }

    .hero-grid,
    .split,
    .footer-grid,
    .cards-3,
    .cards-2 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 2.4rem 0;
    }

    .hero-media {
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    .main-nav {
        display: none;
    }

    
    body.nav-open .main-nav {
        display: flex;
        order: 4;
        width: 100%;
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.7rem;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 10px 22px rgba(15, 39, 64, 0.08);
        margin-top: 0.35rem;
        overflow: visible;
        white-space: normal;
    }

    body.nav-open .main-nav a {
        width: 100%;
        border-radius: 10px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .nav-wrap {
        gap: 0.6rem;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .header-actions .btn-primary,
    .header-actions .icon-btn {
        width: auto;
    }

    .header-actions .btn-primary {
        font-size: 0.78rem;
        padding: 0.62rem 0.88rem;
    }

    .section {
        padding: 3.1rem 0;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }

    body.cookie-banner-visible .floating-wa {
        bottom: 8.4rem;
    }
}




