       /* ========================================
   ADK BOUNCE-A-PALOOZA
======================================== */

:root {

    --green-dark: #004f35;
    --green: #086a49;
    --green-light: #69d4aa;
    --mint: #8ee7c3;

    --cream: #f6fbf8;
    --white: #ffffff;

    --text: #15352a;
    --text-light: #5c746b;

    --border: #dfece6;

    --shadow:
        0 18px 50px rgba(0, 79, 53, 0.12);

    --radius: 24px;

    --container: 1180px;
}


/* ========================================
   RESET
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.section-container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 79, 53, 0.08);
}

.header-container {
    width: min(calc(100% - 40px), var(--container));
    height: 86px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: block;
}

.header-logo img {
    width: 165px;
    max-height: 72px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    font-size: 15px;
    font-weight: 700;
}

.desktop-nav > a:not(.nav-ticket-button) {
    transition: color 0.2s ease;
}

.desktop-nav > a:not(.nav-ticket-button):hover {
    color: var(--green);
}

.nav-ticket-button {
    color: white;

    padding: 12px 23px;

    background: var(--green-dark);

    border-radius: 100px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.nav-ticket-button:hover {
    background: var(--green);
    transform: translateY(-2px);
}


/* MOBILE MENU */

.mobile-menu-button {
    width: 46px;
    height: 46px;

    padding: 10px;

    display: none;

    flex-direction: column;
    justify-content: center;
    gap: 5px;

    border: 0;
    border-radius: 12px;

    background: var(--cream);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    background: var(--green-dark);

    border-radius: 4px;
}

.mobile-menu {
    display: none;

    padding: 0 20px 22px;

    background: white;
}

.mobile-menu.open {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.mobile-menu a {
    padding: 13px 4px;

    font-weight: 700;

    border-bottom: 1px solid var(--border);
}

.mobile-ticket-button {
    margin-top: 10px;

    text-align: center;

    color: white;

    background: var(--green-dark);

    border-radius: 12px;

    border: none !important;
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(105, 212, 170, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #003d2a 0%,
            #005b3c 55%,
            #087755 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -120px;
    bottom: 30px;

    border-radius: 50%;

    background: rgba(105, 212, 170, 0.10);
}

.hero::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: 130px;
    top: 130px;

    border-radius: 50%;

    border: 55px solid rgba(255, 255, 255, 0.04);
}

.hero-container {
    position: relative;

    z-index: 5;

    width: min(calc(100% - 40px), var(--container));

    margin: 0 auto;

    padding: 80px 0 150px;
}

.hero-content {
    max-width: 750px;
}

.hero-logo-wrap {
    margin-bottom: 12px;
}

.hero-logo {
    width: 360px;
    max-width: 82%;
}

.hero-eyebrow {
    display: inline-flex;

    margin-bottom: 22px;

    padding: 8px 15px;

    color: #e9fff6;

    background: rgba(255, 255, 255, 0.11);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 100px;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    max-width: 760px;

    color: white;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;

    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--mint);
}

.hero-description {
    max-width: 680px;

    margin: 26px 0 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 20px;
    line-height: 1.55;
}

.hero-event-info {
    margin-top: 35px;

    display: flex;
    flex-wrap: wrap;

    gap: 15px;
}

.hero-event-item {
    min-width: 235px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px 18px;

    color: white;

    background: rgba(0, 0, 0, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 14px;
}

.event-icon {
    font-size: 23px;
}

.hero-event-item small {
    display: block;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero-event-item strong {
    display: block;

    margin-top: 1px;

    font-size: 16px;
}

.hero-buttons {
    margin-top: 32px;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border-radius: 100px;

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--green-dark);

    background: var(--mint);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16);
}

.button-primary:hover {
    background: white;
}

.button-secondary {
    color: white;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-wave {
    position: absolute;

    left: 0;
    right: 0;
    bottom: -2px;

    z-index: 6;

    height: 120px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}


/* ========================================
   HEADINGS
======================================== */

.section-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-label {
    display: block;

    margin-bottom: 10px;

    color: var(--green);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.section-label.light {
    color: var(--mint);
}

.section-heading h2,
.about-content h2,
.tickets-header h2,
.final-cta h2 {
    margin: 0;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.section-heading p {
    margin: 15px auto 0;

    color: var(--text-light);

    font-size: 18px;
}


/* ========================================
   EVENT INFO
======================================== */

.quick-info {
    padding: 85px 0 110px;
}

.event-card {
    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 290px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.event-card-main {
    display: flex;
    align-items: center;

    gap: 38px;

    padding: 40px;
}

.event-date-block {
    width: 145px;
    min-width: 145px;
    height: 155px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--green-dark);

    border-radius: 19px;
}

.event-month {
    color: var(--mint);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.event-day {
    margin: 3px 0;

    font-size: 47px;
    line-height: 1;
}

.event-year {
    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
}

.event-detail-label {
    color: var(--green);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.event-details h3 {
    margin: 4px 0 18px;

    font-size: 29px;
}

.event-detail-row {
    display: flex;

    gap: 10px;

    margin-top: 9px;
}

.event-detail-row p {
    margin: 0;

    color: var(--text-light);
}

.event-card-action {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 35px;

    background: var(--cream);

    border-left: 1px solid var(--border);
}

.event-card-action p {
    margin: 0 0 18px;

    color: var(--text-light);
}

.event-card-action .button-primary {
    color: white;
    background: var(--green-dark);

    box-shadow: none;
}

.event-card-action .button-primary:hover {
    background: var(--green);
}


/* ========================================
   ABOUT
======================================== */

.about-section {
    padding: 110px 0;

    background: var(--cream);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: center;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--green);
}

.about-content > p {
    color: var(--text-light);

    font-size: 17px;
}

.feature-list {
    margin-top: 35px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.feature-item {
    display: flex;

    gap: 12px;
}

.feature-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dff7ed;

    border-radius: 12px;
}

.feature-item strong {
    display: block;

    font-size: 15px;
}

.feature-item span {
    display: block;

    margin-top: 2px;

    color: var(--text-light);

    font-size: 13px;
    line-height: 1.45;
}

.about-visual {
    position: relative;
}

.about-image-placeholder {
    min-height: 530px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #d9f6e9,
            #b6e9d5
        );

    border-radius: 30px;

    box-shadow: var(--shadow);
}

.placeholder-content {
    max-width: 250px;

    padding: 30px;

    text-align: center;

    color: var(--green-dark);
}

.placeholder-content > span {
    display: block;

    margin-bottom: 12px;

    font-size: 52px;
}

.placeholder-content strong {
    display: block;

    margin-bottom: 7px;
}

.placeholder-content small {
    color: var(--text-light);
}

.about-badge {
    position: absolute;

    left: -35px;
    bottom: 40px;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: white;

    background: var(--green-dark);

    border: 8px solid var(--cream);

    border-radius: 50%;

    box-shadow: var(--shadow);
}

.about-badge strong {
    font-size: 28px;
}

.about-badge span {
    max-width: 100px;

    color: var(--mint);

    font-size: 10px;
    font-weight: 900;

    line-height: 1.3;

    letter-spacing: 1px;
}


/* ========================================
   STATS
======================================== */

.stats-section {
    padding: 55px 0;

    color: white;

    background: var(--green-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;

    color: var(--mint);

    font-size: 26px;
}

.stat-item span {
    font-size: 13px;

    color: rgba(255, 255, 255, 0.68);
}

.stat-divider {
    width: 1px;
    height: 42px;

    background: rgba(255, 255, 255, 0.18);
}


/* ========================================
   EXPERIENCE
======================================== */

.experience-section {
    padding: 110px 0;
}

.experience-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 245px 245px;

    gap: 18px;
}

.experience-card {
    overflow: hidden;

    border-radius: 22px;
}

.experience-card-large {
    grid-row: 1 / 3;
}

.experience-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green-dark);

    background:
        linear-gradient(
            145deg,
            #caefde,
            #94dabd
        );

    font-weight: 800;
}


/* ========================================
   TICKETS
======================================== */

.tickets-section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    color: white;

    background:
        linear-gradient(
            135deg,
            #003d2a,
            #006443
        );
}

.tickets-section::after {
    content: "";

    position: absolute;

    right: -170px;
    top: -170px;

    width: 500px;
    height: 500px;

    border: 80px solid rgba(255, 255, 255, 0.035);

    border-radius: 50%;
}

.tickets-header {
    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.tickets-header p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
}

.ticket-widget-card {
    position: relative;

    z-index: 2;

    overflow: hidden;

    padding: 15px;

    background: white;

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);
}

.ticket-widget-card iframe {
    display: block;

    width: 100%;

    border: 0;

    border-radius: 14px;
}

.simpletix-placeholder {
    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px;

    text-align: center;

    color: var(--text);

    background: #f4f8f6;

    border: 2px dashed #bfd6cc;

    border-radius: 15px;
}

.ticket-placeholder-icon {
    display: block;

    margin-bottom: 10px;

    font-size: 48px;
}

.simpletix-placeholder h3 {
    margin: 0;

    font-size: 24px;
}

.simpletix-placeholder p {
    margin-bottom: 0;

    color: var(--text-light);
}

.ticket-note {
    position: relative;

    z-index: 2;

    margin-top: 18px;

    text-align: center;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


/* ========================================
   KNOW BEFORE YOU GO
======================================== */

.know-section {
    padding: 105px 0;

    background: var(--cream);
}

.know-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.know-card {
    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(0, 79, 53, 0.05);
}

.know-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #daf4e8;

    border-radius: 15px;

    font-size: 25px;
}

.know-card h3 {
    margin: 0 0 8px;

    font-size: 19px;
}

.know-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 14px;
}


/* ========================================
   FAQ
======================================== */

.faq-section {
    padding: 110px 0;
}

.faq-container {
    max-width: 900px;
}

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.faq-item {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-item.active {
    border-color: #b3ddcb;

    box-shadow:
        0 10px 30px rgba(0, 79, 53, 0.07);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 22px 25px;

    color: var(--text);

    background: transparent;

    border: 0;

    text-align: left;

    font-size: 16px;
    font-weight: 800;

    cursor: pointer;
}

.faq-plus {
    color: var(--green);

    font-size: 27px;
    font-weight: 400;

    transition: transform 0.25s ease;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    margin: 0;

    padding: 0 25px 24px;

    color: var(--text-light);
}


/* ========================================
   FINAL CTA
======================================== */

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    color: white;

    background: var(--green);
}

.final-cta::after {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -120px;
    top: -220px;

    border-radius: 50%;

    background: rgba(105, 212, 170, 0.15);
}

.final-cta-content {
    position: relative;

    z-index: 2;

    max-width: 680px;
}

.final-cta-content > span {
    color: var(--mint);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.final-cta h2 {
    margin: 8px 0 18px;
}

.final-cta p {
    max-width: 550px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 18px;
}

.button-white {
    margin-top: 15px;

    color: var(--green-dark);

    background: white;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    padding: 70px 0 25px;

    color: white;

    background: #002f21;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr;

    gap: 60px;

    padding-bottom: 55px;
}

.footer-brand img {
    width: 230px;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-links strong {
    margin-bottom: 5px;

    color: var(--mint);

    font-size: 11px;
    letter-spacing: 1.5px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--mint);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero {
        min-height: 700px;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-card-action {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-visual {
        max-width: 650px;

        margin: 0 auto;
    }

    .know-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .stat-divider {
        display: none;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .section-container,
    .header-container,
    .hero-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-container {
        height: 76px;
    }

    .header-logo img {
        width: 135px;
    }

    .hero {
        min-height: 730px;
    }

    .hero-container {
        padding-top: 55px;
        padding-bottom: 130px;
    }

    .hero-logo {
        width: 270px;
    }

    .hero h1 {
        font-size: 49px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-event-info {
        flex-direction: column;
    }

    .hero-event-item {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .quick-info,
    .about-section,
    .experience-section,
    .tickets-section,
    .know-section,
    .faq-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .event-card-main {
        flex-direction: column;
        align-items: flex-start;

        padding: 25px;
    }

    .event-date-block {
        width: 100%;
        height: 115px;
    }

    .event-card-action {
        padding: 25px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .about-image-placeholder {
        min-height: 390px;
    }

    .about-badge {
        left: 15px;
        bottom: 20px;

        width: 125px;
        height: 125px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px 15px;
    }

    .experience-grid {
        display: flex;
        flex-direction: column;
    }

    .experience-card {
        height: 245px;
    }

    .experience-card-large {
        height: 360px;
    }

    .know-grid {
        grid-template-columns: 1fr;
    }

    .ticket-widget-card {
        padding: 7px;

        border-radius: 16px;
    }

    .simpletix-placeholder {
        min-height: 450px;
    }

    .final-cta {
        padding: 80px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}
.about-image-wrap {
    min-height: 530px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
    height: 530px;

    display: block;

    object-fit: cover;
    object-position: center;
}

.experience-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.experience-card:hover img {
    transform: scale(1.04);
}

/* ========================================
   PRIVACY POLICY
======================================== */

.privacy-page {
    background: #f5f7f6;
    color: var(--text);
}

.privacy-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}


/* HERO */

.privacy-hero {
    padding: 90px 0 110px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );

    text-align: center;
}

.privacy-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--mint);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.privacy-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;

    letter-spacing: -2px;
}

.privacy-hero p {
    max-width: 680px;

    margin: 22px auto 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
    line-height: 1.7;
}

.privacy-effective {
    display: inline-block;

    margin-top: 24px;

    padding: 9px 15px;

    color: #fff;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;

    font-size: 12px;
    font-weight: 800;
}


/* CONTENT */

.privacy-content-section {
    padding: 0 0 90px;
}

.privacy-card {
    max-width: 900px;

    margin: -55px auto 0;

    padding: 55px 65px;

    position: relative;

    background: #fff;

    border: 1px solid #e4e9e6;
    border-radius: 24px;

    box-shadow:
        0 18px 50px rgba(20, 53, 42, 0.08);
}

.privacy-intro {
    padding-bottom: 40px;

    border-bottom: 1px solid #e6ebe8;
}

.privacy-intro p {
    margin: 0 0 16px;

    color: #53635d;

    font-size: 16px;
    line-height: 1.8;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}


/* POLICY SECTIONS */

.policy-section {
    display: grid;

    grid-template-columns: 52px 1fr;

    gap: 22px;

    padding: 42px 0;

    border-bottom: 1px solid #e6ebe8;
}

.policy-section:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.policy-number {
    display: flex;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    color: var(--green-dark);

    background: #e9f5ef;

    border-radius: 11px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;
}

.policy-section h2 {
    margin: 4px 0 16px;

    color: var(--green-dark);

    font-size: 24px;
    line-height: 1.2;

    letter-spacing: -0.5px;
}

.policy-section p {
    margin: 0 0 15px;

    color: #53635d;

    font-size: 15px;
    line-height: 1.8;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    margin: 8px 0 20px;

    padding-left: 21px;
}

.policy-section li {
    margin-bottom: 9px;

    color: #53635d;

    font-size: 15px;
    line-height: 1.65;
}

.policy-section strong {
    color: #263d35;
}


/* CONTACT */

.privacy-contact {
    display: flex;
    flex-direction: column;

    gap: 4px;

    margin: 20px 0;

    padding: 20px;

    background: #f2f7f4;

    border-left: 4px solid var(--green);
    border-radius: 8px;

    color: #53635d;

    font-size: 15px;
    line-height: 1.6;
}

.privacy-contact strong {
    color: var(--green-dark);

    font-size: 16px;
}


/* MOBILE */

@media (max-width: 700px) {

    .privacy-container {
        width: min(
            100% - 28px,
            1120px
        );
    }

    .privacy-hero {
        padding: 65px 0 90px;
    }

    .privacy-hero h1 {
        font-size: 42px;

        letter-spacing: -1px;
    }

    .privacy-hero p {
        font-size: 15px;
    }

    .privacy-card {
        margin-top: -40px;

        padding: 35px 24px;

        border-radius: 18px;
    }

    .policy-section {
        display: block;

        padding: 34px 0;
    }

    .policy-number {
        margin-bottom: 15px;
    }

    .policy-section h2 {
        margin-top: 0;

        font-size: 21px;
    }

}

/* ========================================
   404 PAGE
======================================== */

.error-page {
    min-height: 70vh;
}

.error-hero {
    min-height: 72vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    padding: 90px 20px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );
}

.error-container {
    width: 100%;
    max-width: 850px;

    position: relative;
    z-index: 2;

    text-align: center;
}


/* BADGE */

.error-badge {
    display: inline-flex;

    padding: 8px 15px;

    margin-bottom: 18px;

    color: var(--green-dark);

    background: #fff;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}


/* 404 */

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-bottom: 10px;

    color: #fff;

    font-size: clamp(90px, 15vw, 150px);
    font-weight: 900;
    line-height: 0.9;

    letter-spacing: -8px;
}

.error-bounce {
    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green-dark);

    background: #fff;

    border-radius: 50%;

    font-size: 75px;
    line-height: 1;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);

    animation:
        errorBounce 2.5s ease-in-out infinite;
}

@keyframes errorBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* HEADING */

.error-hero h1 {
    margin: 25px 0 0;

    color: #fff;

    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.05;

    letter-spacing: -2px;
}

.error-hero h1 span {
    color: var(--mint);
}


/* DESCRIPTION */

.error-hero p {
    max-width: 610px;

    margin: 22px auto 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
    line-height: 1.7;
}


/* BUTTONS */

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.error-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 900;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.error-button:hover {
    transform: translateY(-2px);
}

.error-button-primary {
    color: var(--green-dark);

    background: #fff;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

.error-button-primary:hover {
    background: #f5faf7;
}

.error-button-secondary {
    color: #fff;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.3);
}

.error-button-secondary:hover {
    background: rgba(255, 255, 255, 0.17);
}


/* HELP LINKS */

.error-help {
    margin-top: 38px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 12px;
}

.error-help > span {
    display: block;

    margin-bottom: 7px;

    font-weight: 700;
}

.error-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.error-links a {
    color: rgba(255, 255, 255, 0.88);

    font-weight: 800;

    text-decoration: none;
}

.error-links a:hover {
    color: #fff;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* DECORATIVE BUBBLES */

.error-decoration {
    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.error-decoration-1 {
    width: 260px;
    height: 260px;

    top: -100px;
    left: -70px;
}

.error-decoration-2 {
    width: 180px;
    height: 180px;

    right: -50px;
    bottom: 5%;
}

.error-decoration-3 {
    width: 80px;
    height: 80px;

    top: 20%;
    right: 12%;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .error-hero {
        min-height: 70vh;

        padding: 65px 18px;
    }

    .error-number {
        gap: 3px;

        font-size: 90px;

        letter-spacing: -5px;
    }

    .error-bounce {
        width: 72px;
        height: 72px;

        font-size: 52px;
    }

    .error-hero h1 {
        margin-top: 20px;

        font-size: 38px;

        letter-spacing: -1px;
    }

    .error-hero p {
        font-size: 15px;
    }

    .error-actions {
        flex-direction: column;

        width: 100%;
    }

    .error-button {
        width: 100%;
        max-width: 330px;
    }

}