/* ==========================================
   EDEN LIFESTYLE CENTRE - MAIN STYLES
   ========================================== */

:root {
    --primary-green: #A4CD39;
    --dark-green: #667F1E;
    --light-green: #B9D967;
    --accent-green: #D7EAA2;
    --dark-grey: #1A1A1A;
    --grey-dark: #2C2C2C;
    --grey-medium: #555555;
    --grey-light: #E8E8E8;
    --grey-lighter: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --border-color: #E0E0E0;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ==========================================
   RESET & TYPOGRAPHY
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-grey);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-light);
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--dark-grey);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--dark-grey);
    transform: translateY(-2px);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary-green);
}

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

.logo-text {
    font-size: 1.2rem;
    color: var(--dark-grey);
    display: none;
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid var(--grey-light);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translateY(13px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-13px);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.78), rgba(164, 205, 57, 0.38));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: slideInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--grey-light);
    font-weight: 300;
}

.hero-meta {
    font-size: 0.9rem;
    color: var(--accent-green);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 200px;
    }
}

/* ==========================================
   SECTION STYLING
   ========================================== */

section {
    padding: 60px 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 500;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    background-color: var(--white);
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--grey-lighter);
    border-left: 4px solid var(--primary-green);
    border-radius: 4px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 5px;
}

.highlight-item h4 {
    margin-bottom: 8px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FOCUS AREAS SECTION
   ========================================== */

.focus-areas {
    background: linear-gradient(135deg, var(--grey-lighter) 0%, var(--white) 100%);
}

.focus-areas h2 {
    text-align: center;
    margin-bottom: 10px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
    cursor: pointer;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-green);
}

.area-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.area-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.area-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   MISSION SECTION
   ========================================== */

.mission-section {
    background-color: var(--dark-grey);
    color: var(--white);
}

.mission-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.mission-card {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-green);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.mission-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-card i {
    font-size: 1.8rem;
}

.mission-card p {
    color: var(--grey-light);
    line-height: 1.8;
}

/* ==========================================
   VALUES SECTION
   ========================================== */

.values-section {
    background-color: var(--white);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 30px;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.value-card h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    background: linear-gradient(135deg, var(--dark-grey), var(--grey-dark));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--grey-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 200px;
    }
}



/* ==========================================
   GALLERY CAROUSEL
   ========================================== */

.gallery-section {
    background: var(--white);
    overflow: hidden;
}

.gallery-heading-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.gallery-heading-wrap h2 {
    margin-bottom: 8px;
}

.gallery-heading-wrap .section-subtitle {
    margin-bottom: 0;
    max-width: 720px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #667F1E;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gallery-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gallery-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-grey);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-btn:hover,
.gallery-btn:focus-visible {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    outline: none;
}

.gallery-carousel {
    position: relative;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    background: var(--grey-lighter);
}

.gallery-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.gallery-slide {
    position: relative;
    flex: 0 0 100%;
    margin: 0;
    aspect-ratio: 16 / 8.5;
    overflow: hidden;
}

.gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.18), transparent 38%);
    pointer-events: none;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 6s ease;
}

.gallery-slide.active img {
    transform: scale(1.055);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #D8D8D8;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    width: 30px;
    background: var(--primary-green);
}

.gallery-dot:focus-visible {
    outline: 3px solid rgba(164, 205, 57, 0.35);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .gallery-heading-wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .gallery-controls {
        align-self: flex-end;
    }

    .gallery-slide {
        aspect-ratio: 4 / 3;
    }

    .gallery-viewport {
        border-radius: 12px;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: var(--dark-grey);
    color: var(--grey-light);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--grey-light);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: var(--dark-grey);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 45px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 35px 0;
    }

    .about-highlights {
        margin-top: 20px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .area-card {
        padding: 30px 20px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-box {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    section {
        padding: 25px 0;
    }

    .hero {
        height: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

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

    .nav-menu li {
        padding: 12px 15px;
    }
}


/* ==========================================
   PAGE HERO BANNERS & FAQ ENHANCEMENTS
   ========================================== */

.page-hero-banner {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--white);
    isolation: isolate;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.58) 42%, rgba(102, 127, 30, 0.55) 100%);
    z-index: -1;
}

.page-hero-banner .hero-copy {
    max-width: 760px;
    padding: 96px 0 84px;
}

.page-hero-banner .hero-panel {
    background: rgba(12, 12, 12, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 34px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(164, 205, 57, 0.2);
    border: 1px solid rgba(164, 205, 57, 0.35);
    color: var(--accent-green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-hero-banner h1 {
    font-size: clamp(2.5rem, 4.8vw, 4.4rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-banner p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    max-width: 640px;
    margin-bottom: 0;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-pill i {
    color: var(--primary-green);
}

.page-hero-what {
    background-image: url("../images/IMG_8311.JPG");
    background-position: center 35%;
}

.page-hero-donate {
    background-image: url("../images/clasped-hands-541849_1920-1.jpg");
    background-position: center center;
}

.page-hero-join {
    background-image: url("../images/student-on-a-computer.jpg");
    background-position: center 36%;
}

.page-hero-contact {
    background-image: url("../images/1838564.jpg");
    background-position: center center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(164, 205, 57, 0.2);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-item-head {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.faq-item-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(164, 205, 57, 0.24), rgba(164, 205, 57, 0.1));
    color: var(--dark-green);
    font-size: 1.15rem;
}

.faq-item h3 {
    margin: 0;
    font-size: 1.35rem;
}

.faq-item p {
    margin-bottom: 0;
}

.faq-overview {
    margin-bottom: 42px;
}

.faq-overview .section-subtitle {
    margin-bottom: 12px;
}

.faq-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.faq-highlight-card {
    position: relative;
    padding: 26px 22px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(164, 205, 57, 0.25);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-highlight-card::after {
    content: '';
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 110px;
    height: 110px;
    background: rgba(164, 205, 57, 0.12);
    border-radius: 50%;
}

.faq-highlight-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--dark-grey);
    font-size: 1.45rem;
    margin-bottom: 16px;
    box-shadow: 0 10px 20px rgba(164, 205, 57, 0.25);
}

.faq-highlight-stat {
    display: block;
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-grey);
}

.faq-highlight-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

@media (max-width: 1024px) {
    .faq-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero-banner {
        min-height: 360px;
    }

    .page-hero-banner .hero-copy {
        padding: 78px 0 68px;
    }

    .page-hero-banner .hero-panel {
        padding: 24px;
        border-radius: 20px;
    }

    .hero-pill-row {
        gap: 10px;
    }

    .hero-pill {
        font-size: 0.88rem;
    }

    .faq-grid,
    .faq-highlight-grid {
        grid-template-columns: 1fr;
    }
}
