:root {
    --surface: #ffffff;
    --section: #fcf9f4;
    --card: #ffffff;
    --card-alt: #f6f2eb;
    --primary: #2c4073;
    --accent-one: #fe7162;
    --accent-two: #fab319;
    --accent-three: #4ad9c7;
    --text: #1b1f2f;
    --muted: #6a718d;
    --border: rgba(44, 64, 115, 0.08);
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-bold: 0 25px 60px rgba(44, 64, 115, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f6f7fb 0%, #fef9f2 45%, #f7f7ff 100%);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

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

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

.container {
    width: min(1200px, 100% - 3rem);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-circle {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(140deg, var(--accent-one), var(--accent-two));
    display: grid;
    place-items: center;
    font-family: "Baloo 2", cursive;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.brand-name {
    font-family: "Baloo 2", cursive;
    letter-spacing: 0;
    font-size: 1.25rem;
}

.primary-nav {
    margin-left: auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: 1px solid var(--border);
    padding: 0.6rem;
    border-radius: 0.75rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
}

.nav-list a {
    padding-bottom: 0.35rem;
    position: relative;
    color: var(--primary);
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent-one), var(--accent-two));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    background: var(--card);
    aspect-ratio: 4 / 4.5;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.load-more-btn {
    display: inline-flex;
    justify-content: center;
    margin: 2rem auto 0;
}

.gallery-note {
    margin-top: 1rem;
    color: var(--muted);
}

/* Lightbox/Slider Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    margin-top: 20px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        max-height: 95vh;
    }

    .lightbox-image {
        max-height: 80vh;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 10px;
        right: 10px;
    }

    .lightbox-counter {
        font-size: 16px;
        padding: 6px 16px;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-card {
    background: var(--card);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-bold);
    margin-bottom: 1rem;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-embed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-embed.video-file {
    padding-bottom: 0;
    aspect-ratio: 16 / 9;
}

.video-embed.video-file video {
    border-radius: inherit;
}

.video-card h3 {
    margin: 0 0 0.35rem;
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.primary {
    background: linear-gradient(135deg, var(--accent-one), var(--accent-two));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn.secondary {
    background: var(--primary);
    color: #fff;
}

.btn.ghost {
    border: 1px solid var(--border);
    color: var(--primary);
    background: transparent;
}

.feedback-section {
    position: relative;
}

.feedback-slider {
    margin-top: 2rem;
    position: relative;
    --slides-per-view: 3;
}

.feedback-slider .slider-window {
    overflow: hidden;
}

.feedback-slider .slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s ease;
}

.feedback-slider .video-card {
    flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * 1.5rem) / var(--slides-per-view));
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--surface);
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    z-index: 1;
}

.slider-btn:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-bold);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.slider-btn.prev {
    left: -1.5rem;
}

.slider-btn.next {
    right: -1.5rem;
}

@media (max-width: 1024px) {
    .feedback-slider {
        --slides-per-view: 2;
    }

    .slider-btn.prev {
        left: 0.25rem;
    }

    .slider-btn.next {
        right: 0.25rem;
    }
}

@media (max-width: 640px) {
    .feedback-slider {
        --slides-per-view: 1;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }
}

main {
    padding-top: 2rem;
}

.hero {
    padding: 5rem 0 3rem;
    background: var(--section);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-text,
.page-hero .hero-text {
    text-align: left;
}

.hero-text h1,
.page-hero h1 {
    font-family: "Baloo 2", cursive;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 720px;
    margin: 0.5rem 0 1.5rem;
    text-align: left;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--accent-one);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.hero-lead {
    margin: 0 0 1rem;
    color: #2e3550;
    font-size: 1.05rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
}

.hero-highlights i {
    color: var(--accent-one);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: flex-start;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    justify-content: flex-start;
}

.hero-tags span {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.hero-stats {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-pill {
    padding: 1rem 1.25rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    min-width: 140px;
    box-shadow: var(--shadow-soft);
}

.stat-pill strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary);
}

.stat-pill span {
    color: var(--muted);
    font-size: 0.85rem;
}

.hero-visual {
    background: var(--card);
    border-radius: 32px;
    padding: 1.5rem;
    box-shadow: var(--shadow-bold);
}

.hero-badge {
    display: inline-flex;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(44, 64, 115, 0.08);
    font-weight: 700;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.image-frame {
    background: linear-gradient(135deg, rgba(252, 249, 244, 0.8), rgba(255, 255, 255, 0.9));
    border-radius: 28px;
    padding: 1.25rem;
    border: 1px solid var(--border);
}

.hero-perks {
    list-style: none;
    padding: 1.5rem 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-perks li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-perks li::before {
    content: "★";
    color: var(--accent-two);
}

.section-title {
    font-family: "Baloo 2", cursive;
    font-size: clamp(2.1rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--primary);
}

.section {
    padding: 4rem 0;
    background: #fff;
    border-radius: 32px;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.section::after {
    content: "";
    position: absolute;
    inset: 20px auto auto -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(250, 179, 25, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section > .container,
.section .split {
    position: relative;
    z-index: 1;
}

.section-deep::after,
.section-gradient::after,
.highlight-grid::after {
    display: none;
}

.section-soft {
    background: #fdfbf6;
}

.section-warm {
    background: linear-gradient(135deg, #fff5eb, #ffe9f1);
}

.section-deep {
    background: linear-gradient(135deg, #2c4073, #1b2242);
    color: #f6f7ff;
}

.section-deep .section-title,
.section-deep .eyebrow,
.section-deep p,
.section-deep li {
    color: #f6f7ff;
}

.section-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.section-gradient {
    background: linear-gradient(120deg, #2c4073, #fe7162);
    color: #fff;
}

.section-gradient .section-title,
.section-gradient .eyebrow,
.section-gradient p {
    color: #fff;
}

.mission-band {
    margin: 0 0 2rem;
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
}

.mission-band blockquote {
    background: rgba(255, 255, 255, 0.12);
    border-left: 5px solid var(--accent-two);
    color: inherit;
}

.trusted-strip {
    padding: 2rem 0;
    background: transparent;
    box-shadow: none;
}

.trusted-strip::after {
    display: none;
}

.trust-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 2rem;
    border-radius: 28px;
    background: #1c233f;
    color: #f6f7ff;
}

.trust-marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

.trust-marquee i {
    color: var(--accent-three);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.card-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-card,
.service-card {
    background: var(--card);
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, border 0.2s ease;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-card.has-icon h3 {
    margin-top: 0;
}

.service-icon i {
    font-size: 1.4rem;
}

.service-grid {
    gap: 2rem;
}

.icon-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.card-icon.accent-one {
    background: linear-gradient(140deg, #fe7162, #fab319);
}

.card-icon.accent-two {
    background: linear-gradient(140deg, #fab319, #4ad9c7);
}

.card-icon.accent-three {
    background: linear-gradient(140deg, #2c4073, #4ad9c7);
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--muted);
    font-weight: 600;
}

.card-list li::before {
    content: "•";
    color: var(--accent-one);
    margin-right: 0.4rem;
}

.info-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 113, 98, 0.35);
}

.split-section .split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.image-panel {
    background: var(--card-alt);
    border-radius: 28px;
    padding: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.check-list li::before {
    content: "✓";
    color: var(--accent-three);
    font-weight: 800;
}

.mission-band blockquote {
    margin: 2rem auto 0;
    padding: 1.25rem 1.5rem;
    font-style: italic;
    max-width: 760px;
    box-shadow: var(--shadow-soft);
}

.tag-grid {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-grid span {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.45rem 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    color: #111;
}

.cta-band {
    border-radius: 36px;
    margin: 0 0 4rem;
    box-shadow: var(--shadow-bold);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.highlight-grid {
    background: #11152a;
    color: #f6f7ff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-grid article {
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-grid article span {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
    color: var(--accent-two);
}

.highlight-grid .section-title,
.highlight-grid .eyebrow {
    color: #f6f7ff;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer {
    background: var(--section);
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    border-bottom: 1px solid rgba(44, 64, 115, 0.08);
    padding-bottom: 2rem;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0 2.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Inner pages */
.page-hero {
    padding: 4rem 0 2rem;
}

.page-hero .hero-grid {
    align-items: flex-start;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-card h3 {
    font-size: 2.2rem;
    margin: 0;
    font-family: "Baloo 2", cursive;
    color: var(--primary);
}

.page-section {
    padding: 3rem 0;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--muted);
}

.service-details li::before {
    content: "•";
    color: var(--accent-three);
    margin-right: 0.5rem;
}

.timeline {
    border-left: 3px solid var(--accent-one);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.story-layout {
    gap: 3rem;
    align-items: stretch;
}

.story-journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.story-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.story-year {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--accent-two);
}

.story-card h3 {
    margin: 0.35rem 0;
    font-size: 1.25rem;
    color: var(--primary);
}

.story-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.story-ribbon span {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(44, 64, 115, 0.08);
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.edge-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.edge-intro {
    margin: 0;
    color: var(--muted);
}

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

.edge-grid article {
    background: var(--card-alt);
    border-radius: 18px;
    padding: 1.2rem;
    border: 1px solid var(--border);
    min-height: 160px;
}

.edge-grid h4 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    color: var(--primary);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.experience-card {
    background: var(--card);
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.experience-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.75rem;
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.experience-icon.accent-one {
    background: var(--accent-one);
}

.experience-icon.accent-two {
    background: var(--accent-two);
}

.experience-icon.accent-three {
    background: var(--accent-three);
}

.badge-list {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-list li {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: var(--section);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.audience-layout {
    align-items: stretch;
    gap: 2.5rem;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.25rem 0 1rem;
}

.audience-tags span {
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    background: rgba(250, 179, 25, 0.16);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.roomy li {
    margin-bottom: 0.35rem;
}

.audience-card {
    align-self: center;
    text-align: left;
}
.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--card);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.contact-form {
    background: var(--card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-bold);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--section);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    color: var(--text);
    font-family: inherit;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2px solid var(--accent-three);
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        right: 0;
        top: 120%;
        flex-direction: column;
        gap: 1rem;
        background: var(--primary);
        padding: 1.5rem;
        border-radius: 18px;
        box-shadow: var(--shadow-bold);
        min-width: 220px;
        display: none;
    }

    .nav-list a {
        color: #fff;
    }

    .nav-list.show {
        display: flex;
    }
}

@media (max-width: 640px) {
    .trust-content {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Keep logo and menu button on a single row */
    .header-inner {
        flex-wrap: nowrap;
        align-items: center;
    }

    .brand {
        flex: 0 0 auto;
    }

    .primary-nav {
        margin-left: auto;
        order: 2;
    }

    /* Optional: move header CTA below or hide on very small screens
       so it doesn't force the logo/menu to wrap */
    .site-header .btn.primary {
        display: none;
    }

    /* Make the opened mobile menu span full width and keep items on one line */
    .nav-list {
        position: fixed;
        left: 0;
        right: 0;
        top: 85px;
        margin: 0;
        border-radius: 0;
        min-width: 100%;
        max-width: 100%;
        font-size: 0.85rem;
        letter-spacing: 0.05rem;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        white-space: nowrap;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-grid,
    .split-section .split {
        gap: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

