/* ========================================
           Font Faces
           ======================================== */
        @font-face {
            font-family: "Playfair Display";
            font-weight: 500;
            font-display: swap;
            src: var(--lj-font-65d0c3b53fd6) format("woff2"),
                var(--lj-font-aed59634dc34) format("woff");
        }

        @font-face {
            font-family: "Playfair Display";
            font-weight: 900;
            font-display: swap;
            src: var(--lj-font-a8e193d32df5) format("woff2"),
                var(--lj-font-1d0ad30173bd) format("woff");
        }

        @font-face {
            font-family: "Inter Tight";
            font-weight: 400;
            font-display: swap;
            src: var(--lj-font-eaaf111e634e) format("woff2"),
                var(--lj-font-ef64ad7ff64f) format("woff");
        }

        @font-face {
            font-family: "Inter Tight";
            font-weight: 500;
            font-display: swap;
            src: var(--lj-font-1d4a6df2d5ee) format("woff2"),
                var(--lj-font-42f1c279aac0) format("woff");
        }

        @font-face {
            font-family: "Inter Tight";
            font-weight: 600;
            font-display: swap;
            src: var(--lj-font-aae1100cdf09) format("woff2"),
                var(--lj-font-20c6970b4189) format("woff");
        }

        @font-face {
            font-family: "Inter";
            font-weight: 400;
            font-display: swap;
            src: var(--lj-font-23124adcfb7d) format("woff2"),
                var(--lj-font-8279b9c2773c) format("woff");
        }

        @font-face {
            font-family: "Inter";
            font-weight: 600;
            font-display: swap;
            src: var(--lj-font-a401ff245dfe) format("woff2"),
                var(--lj-font-d281eb4d064e) format("woff");
        }

        /* ========================================
           CSS Variables & Reset
           ======================================== */
        :root {
            --color-green: #D2B48C;
            --color-green-dark: #995A3B;
            --color-green-light: #FCF1DD;
            --color-white: #FCF1DD;
            --color-black: #000000;
            --color-text: #17110A;
            --color-text-light: #17110A;
            --color-gray: #FCF1DD;
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Inclusive Sans', sans-serif;
            --font-ui: 'Playfair Display', serif;
            --color-primary: #D2B48C;
            --color-primary-dark: #995A3B;
            --container-width: 1200px;
            --header-height: 80px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            background-color: #FCF1DD;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

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

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 500;
            line-height: 1.2;
        }

        /* Override for intro-heading to match hero */
        .intro-heading h2 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-weight: 900 !important;
        }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========================================
           Hero Section
           ======================================== */
        .hero-section {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            padding: 120px 0;
            overflow: hidden;
            background: transparent;
        }

        .hero-video-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-video-wrapper .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .hero-video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transform: scaleX(-1);
        }

        .hero-container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            width: 100%;
            padding: 0;
        }

        .hero-content {
            max-width: 1100px;
            padding: 0 100px;
            margin-right: auto;
            transform: translateY(-40%) translateX(70px);
            position: relative;
            z-index: 3;
        }

        .hero-eyebrow {
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-green);
            margin-bottom: 32px;
            margin-top: 80px;
            display: block;
            opacity: 1;
            visibility: visible;
            z-index: 10;
            position: relative;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.05;
            color: #ffffff;
            margin-bottom: 48px;
            white-space: normal;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }

        .btn-primary {
            display: inline-block;
            padding: 14px 28px;
            background: var(--color-green);
            color: var(--color-white);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(210, 180, 140, 0.2);
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--color-green-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(210, 180, 140, 0.3);
        }

        .btn-secondary {
            display: inline-block;
            background: var(--color-white);
            border: 2px solid var(--color-green);
            color: var(--color-green);
            padding: 12px 26px;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

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

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0, 0, 0, 0.6);
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 10;
        }

        .scroll-indicator svg {
            width: 24px;
            height: 24px;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* ========================================
           Stats Section
           ======================================== */
        .stats-section {
            background: #FCF1DD;
            padding: 30px 0;
        }

        .stats-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            max-width: 920px;
            margin: 0 auto;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 180px;
            gap: 6px;
            padding: 0 30px;
            border-right: 1px solid rgba(0, 0, 0, 0.1);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item:nth-child(2) .stat-number {
            margin-top: -0.3em;
        }

        .stat-number {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1;
            min-height: 1.2em;
        }

        .stat-number .count {
            color: var(--color-text);
        }

        .stat-number .suffix {
            color: var(--color-green);
            font-size: 0.5em;
            line-height: 1;
            margin-top: 0.1em;
        }

        .stat-label {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(16, 16, 16, 0.65);
        }

        /* ========================================
           Logo Carousel Section
           ======================================== */
        .logos-section {
            background: var(--color-green);
            padding: 48px 0;
        }

        .logos-wrapper {
            max-width: 100%;
            overflow: hidden;
            position: relative;
        }

        .logos-carousel {
            display: flex;
            gap: 0;
            overflow: hidden;
            position: relative;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
            -webkit-mask-position: center;
            mask-position: center;
        }

        .logos-track {
            display: flex;
            gap: 48px;
            animation: scroll-logos 40s linear infinite;
            padding: 0 40px;
        }

        .logo-slide {
            flex-shrink: 0;
            width: 200px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-slide img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ========================================
           Intro Section
           ======================================== */
        .intro-section {
            padding: 100px 0;
            background: var(--color-white);
        }

        .intro-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .intro-heading h2 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900 !important;
            color: var(--color-text);
            margin-bottom: 24px;
            line-height: 1.15;
        }

        .intro-heading h2 em {
            font-style: italic;
        }

        .intro-heading .btn-primary {
            margin-top: 8px;
        }

        .intro-text p {
            font-family: var(--font-body);
            font-size: 20.3px;
            font-weight: 400;
            line-height: 1.85;
            color: var(--color-text-light);
        }

        /* ========================================
           About Section
           ======================================== */
        .about-section {
            padding: 120px 0;
            background: #FCF1DD;
        }

        .about-container {
            display: grid;
            grid-template-columns: 520px 1fr;
            gap: 80px;
            align-items: start;
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .about-image {
            position: relative;
            height: 645px;
            width: 520px;
            max-width: 520px;
        }

        .about-section .about-container .about-image img {
            width: 520px !important;
            max-width: 520px !important;
            height: 645px !important;
            max-height: 645px !important;
            min-height: 645px !important;
            aspect-ratio: unset !important;
            object-fit: cover;
            object-position: center;
            border-radius: 10px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
            display: block;
        }

        .about-content h2 {
            font-family: var(--font-heading);
            font-size: 55px;
            font-weight: 900;
            line-height: 1.15;
            margin-top: -13px;
            margin-bottom: 14px;
            color: #1a1a1a;
        }

        .about-content h2 em {
            font-style: italic;
            color: #1a1a1a;
        }

        .about-subtitle {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: #D2B48C;
            margin-bottom: 30px;
            display: block;
        }

        .about-text {
            font-size: 18.5px;
            line-height: 1.85;
            color: #333;
            margin-bottom: 40px;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        .about-text strong {
            color: #1a1a1a;
            font-weight: 700;
        }

        /* ========================================
           Signature Topics Section
           ======================================== */
        .topics-section {
            padding: 100px 0;
            background: #FCF1DD;
        }

        .topics-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .topics-header h2 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900 !important;
            color: var(--color-text);
            margin-bottom: 16px;
        }

        .topics-header h2 em {
            font-style: italic;
        }

        .topics-header p {
            font-size: 1rem;
            color: var(--color-text-light);
        }

        .topics-header p strong em {
            color: var(--color-text);
        }

        .topics-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: stretch;
            margin-bottom: 48px;
        }

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

        .topic-card {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 32px;
            background: #FCF8F3;
            border: 1px solid rgba(210, 180, 140, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .topic-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .topic-icon {
            width: 48px;
            height: 48px;
            background: var(--color-green-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .topic-icon svg {
            width: 24px;
            height: 24px;
            color: var(--color-green);
        }

        .topic-content h4 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: 1.25rem;
            font-weight: 700 !important;
            color: var(--color-text);
            margin-bottom: 8px;
        }

        .topic-content p {
            font-size: 0.9375rem;
            color: var(--color-text-light);
            line-height: 1.6;
            margin: 0;
        }

        .topics-image {
            position: relative;
            display: flex;
            align-items: stretch;
        }

        .topics-image img {
            width: 100%;
            height: 100%;
            min-height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .topics-cta {
            text-align: center;
            margin-top: 60px;
        }

        @media (max-width: 1024px) {
            .topics-content {
                grid-template-columns: 1fr;
            }

            .topics-image {
                order: -1;
                max-width: 400px;
                margin: 0 auto;
            }
        }

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

        /* ========================================
           Engagement Formats Section
           ======================================== */
        .formats-section {
            padding: 100px 0;
            background: var(--color-green);
        }

        .formats-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .formats-header h2 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900 !important;
            color: var(--color-white);
            margin-bottom: 16px;
            line-height: 1.05;
        }

        .formats-header h2 em {
            font-style: italic;
        }

        .formats-header p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
        }

        .formats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .format-card {
            background: var(--color-white);
            border-radius: 8px;
            padding: 0 32px 40px 32px;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 450px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .format-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .format-image {
            width: calc(100% + 64px);
            height: 200px;
            margin: 0 -32px 24px -32px;
            border-radius: 8px 8px 0 0;
            overflow: hidden;
            background: rgba(210, 180, 140, 0.15);
        }

        .format-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .format-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding-top: 16px;
        }

        .format-content h3 {
            font-family: "Playfair Display", Georgia, serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 16px;
            min-height: 30px;
            display: flex;
            align-items: flex-start;
            white-space: nowrap;
        }

        .format-content p {
            font-size: 0.9375rem;
            color: var(--color-text-light);
            line-height: 1.7;
            margin: 0 0 24px 0;
            min-height: 100px;
            flex: 1;
        }

        .format-footer {
            margin-top: 0;
            padding-top: 24px;
        }

        .format-footer .btn-primary {
            display: block;
            text-align: center;
            margin-bottom: 12px;
        }

        .format-footer .format-duration {
            font-size: 0.8125rem;
            color: var(--color-text-light);
            text-align: center;
        }

        /* ========================================
           Why Work With Section
           ======================================== */
        .why-section {
            position: relative;
            background: #faf9f6;
            overflow: hidden;
            min-height: 700px;
            display: flex;
            align-items: center;
            padding: 80px 0;
        }

        .why-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

        .why-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .why-header h2 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 900 !important;
            color: var(--color-text);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .why-header>p {
            font-size: 1.05rem;
            color: var(--color-text-light);
            line-height: 1.7;
            max-width: 750px;
            margin: 0 auto;
        }

        /* Bento Grid */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
            height: 400px;
        }

        .bento-item {
            background: var(--color-white);
            border-radius: 16px;
            padding: 22px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden;
            position: relative;
        }

        .bento-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        /* Bento item variations */
        .bento-item.bento-image {
            grid-column: span 1;
            grid-row: span 2;
            padding: 0;
        }

        .bento-item.bento-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        .bento-item.bento-featured {
            grid-column: span 2;
            background: var(--color-green);
            color: var(--color-white);
        }

        .bento-item.bento-featured h3 {
            color: var(--color-white);
        }

        .bento-item.bento-featured p {
            color: rgba(255, 255, 255, 0.9);
        }

        .bento-item.bento-featured .bento-icon {
            background: rgba(252, 248, 243, 0.2);
            color: #FCF8F3;
        }

        .bento-item.bento-featured .bento-icon svg {
            color: #FCF8F3;
        }

        .bento-item.bento-accent {
            background: var(--color-green-light);
        }

        /* Bento content */
        .bento-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }

        .bento-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: #FCF8F3;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .bento-icon svg {
            width: 24px;
            height: 24px;
            color: var(--color-green);
        }

        .bento-item h3 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: 1.15rem;
            font-weight: 700 !important;
            color: var(--color-text);
            margin: 0;
            line-height: 1.3;
        }

        .bento-item p {
            font-size: 0.85rem;
            color: var(--color-text-light);
            line-height: 1.55;
            margin: 0;
            text-align: center;
        }

        .why-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-outline {
            display: inline-block;
            padding: 14px 28px;
            background: transparent;
            color: var(--color-text);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            border: 1px solid #ccc;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-outline:hover {
            background: var(--color-gray);
            border-color: var(--color-text);
        }

        /* ========================================
           Impact Section
           ======================================== */
        .impact-section {
            padding: 100px 0;
            background: var(--color-green);
            overflow: visible;
        }

        .impact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .impact-header h2 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900 !important;
            color: var(--color-white);
            margin-bottom: 16px;
            line-height: 1.05;
        }

        .impact-header p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            padding: 10px 0 40px;
        }

        .impact-card {
            background: #FCF8F3;
            border-radius: 8px;
            padding: 40px 32px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: default;
        }

        .impact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }

        .impact-number {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 500;
            color: var(--color-green);
            line-height: 1;
            margin-bottom: 16px;
        }

        .impact-card h4 {
            font-family: var(--font-body);
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 12px;
        }

        .impact-card p {
            font-size: 0.9375rem;
            color: var(--color-text-light);
            line-height: 1.6;
            margin: 0;
        }

        /* ========================================
           Featured Talks Section
           ======================================== */
        .talks-section {
            padding: 100px 0;
            background: var(--color-white);
        }

        .talks-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .talks-header h2 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900 !important;
            color: var(--color-text);
            line-height: 1.05;
        }

        .talks-header h2 em {
            font-style: italic;
        }

        .talks-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }

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

        .talk-video {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 24px;
            background: #000;
        }

        .talk-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .talk-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--color-text);
            margin-bottom: 12px;
        }

        .talk-card p {
            font-size: 0.9375rem;
            color: var(--color-text-light);
            line-height: 1.7;
            margin: 0;
        }

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

        /* ========================================
           Testimonials Section
           ======================================== */
        .testimonials-section {
            padding: 100px 0 80px;
            background: var(--color-green);
            position: relative;
            overflow: visible;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
        }

        .testimonials-header h2 {
            font-family: "Playfair Display", Georgia, serif !important;
            font-size: 52px;
            font-weight: 900 !important;
            color: #fff;
            letter-spacing: -0.01em;
            line-height: 1.1;
        }

        .testimonials-header h2 em {
            font-style: italic;
        }

        .testimonials-wrapper {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px 35px;
            position: relative;
            overflow: visible;
        }

        .testimonials-scroll {
            display: flex;
            gap: 32px;
            overflow-x: auto;
            overflow-y: visible;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            cursor: grab;
            padding: 20px 0 40px;
        }

        .testimonials-scroll::-webkit-scrollbar {
            display: none;
        }

        .testimonials-scroll:active,
        .testimonials-scroll.active {
            cursor: grabbing;
        }

        .testimonial-card {
            flex: 0 0 calc(33.333% - 22px);
            min-width: calc(33.333% - 22px);
            background: #FFFEFB;
            border-radius: 8px;
            padding: 48px 32px 36px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 480px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            scroll-snap-align: start;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text {
            font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.75;
            color: #2d2d2d;
            margin-bottom: 32px;
            flex-grow: 1;
            font-style: italic;
        }

        .testimonial-text em {
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: auto;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            background: #D2B48C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
        }

        .testimonial-avatar::before {
            content: '"';
            position: absolute;
            font-size: 32px;
            font-family: Georgia, serif;
            color: #fff;
            font-weight: bold;
            line-height: 1;
        }

        .testimonial-avatar img {
            display: none;
        }

        .testimonial-info h6 {
            font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #000;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .testimonial-info span {
            font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 13px;
            font-weight: 400;
            color: #666;
            line-height: 1.4;
        }

        .testimonials-pagination {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 48px;
        }

        .testimonials-pagination .pagination-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #fff;
            border: none;
            cursor: pointer;
            padding: 0;
            opacity: 1;
            transition: opacity 0.3s ease, transform 0.2s ease;
        }

        .testimonials-pagination .pagination-dot:not(.active) {
            opacity: 0.25;
        }

        .testimonials-pagination .pagination-dot:hover {
            transform: scale(1.2);
            opacity: 0.5;
        }

        .testimonials-pagination .pagination-dot.active {
            opacity: 1;
        }

        /* ========================================
           FAQ Section
           ======================================== */
        .faq-section {
            padding: 100px 0;
            background: #FCF8F3;
        }

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

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

        .faq-header h2 {
            font-family: "Playfair Display", Georgia, serif;
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 900;
            color: var(--color-text);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .faq-header h2 em {
            font-style: italic;
        }

        .faq-header p {
            font-size: 1.05rem;
            color: var(--color-text-light);
            line-height: 1.7;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .faq-card {
            background: #FCF1DD;
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.3s ease;
            height: 100%;
            border-left: 4px solid var(--color-green);
        }

        .faq-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .faq-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .faq-card-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: #FCF8F3;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(210, 180, 140, 0.3);
        }

        .faq-card-icon svg {
            width: 24px;
            height: 24px;
            color: var(--color-green);
        }

        .faq-card h3 {
            font-family: "Playfair Display", Georgia, serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0;
            line-height: 1.35;
            padding-top: 4px;
        }

        .faq-card p {
            font-size: 0.95rem;
            color: var(--color-text-light);
            line-height: 1.7;
            margin: 0;
        }

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

            .faq-card {
                padding: 24px;
            }
        }

        /* ========================================
           CTA Section
           ======================================== */
        .speaking-cta {
            background: #FCF8F3;
            padding: 80px 0 100px;
            position: relative;
        }

        .speaking-cta-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .speaking-cta-card {
            background: #D2B48C;
            border-radius: 20px;
            padding: 56px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(210, 180, 140, 0.2);
        }

        .speaking-cta-title {
            font-family: var(--font-heading);
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .speaking-cta-text {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.7;
            color: #fff;
            margin-bottom: 32px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .speaking-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border-radius: 8px;
            background-color: #fff;
            color: #1a1a1a;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .speaking-cta-btn:hover {
            background-color: #faf9f4;
            color: #1a1a1a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .speaking-cta {
                padding: 60px 0 80px;
            }

            .speaking-cta-container {
                padding: 0 24px;
            }

            .speaking-cta-card {
                padding: 40px 32px;
            }

            .speaking-cta-title {
                font-size: clamp(32px, 5vw, 44px);
            }

            .speaking-cta-text {
                font-size: 16px;
            }
        }

        /* ========================================
           Footer
           ======================================== */
        .site-footer {
            background: #000000;
            color: #ffffff;
            padding: 80px 0 32px;
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
        }

        .footer-brand h6 a {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
        }

        .footer-brand p {
            font-size: 0.9375rem;
            line-height: 1.7;
            color: #ffffff;
            margin-top: 16px;
        }

        .footer-links h4 {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a,
        .footer-links span {
            font-size: 0.9375rem;
            color: #ffffff;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            opacity: 0.8;
        }

        .footer-contact span {
            display: block;
            margin-bottom: 8px;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #ffffff;
            color: #000000;
        }

        .footer-bottom {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 32px 24px 0;
            margin-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.875rem;
            color: #ffffff;
            margin: 0;
        }

        /* ========================================
           Responsive
           ======================================== */
        @media (max-width: 1024px) {

            .intro-container,
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-section {
                padding: 60px 0;
                min-height: auto;
            }

            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
                height: auto;
                gap: 16px;
            }

            .bento-item {
                padding: 24px;
            }

            .bento-item.bento-image {
                grid-column: span 2;
                grid-row: span 1;
                height: 220px;
            }

            .bento-item.bento-featured {
                grid-column: span 2;
            }

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

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

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

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

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

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }

            .hero-content {
                max-width: 100%;
                padding: 0 32px;
            }

            .stats-grid {
                flex-wrap: wrap;
                gap: 40px;
            }

            .stat-item {
                flex: 1 1 calc(50% - 20px);
                min-width: 150px;
            }
        }

        @media (max-width: 768px) {

            .main-nav,
            .header-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .bento-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                height: auto;
                gap: 14px;
            }

            .bento-item {
                padding: 22px;
            }

            .bento-item.bento-image,
            .bento-item.bento-featured {
                grid-column: span 1;
            }

            .bento-item.bento-image {
                height: 180px;
            }

            .bento-icon {
                width: 40px;
                height: 40px;
            }

            .why-container {
                padding: 0 24px;
            }

            .why-buttons {
                flex-direction: column;
            }

            .why-buttons .btn-primary,
            .why-buttons .btn-outline {
                text-align: center;
                width: 100%;
            }

            .mobile-nav {
                display: block;
                position: fixed;
                top: 0;
                right: 0;
                left: auto;
                width: 80%;
                max-width: 340px;
                height: 100vh;
                background: var(--color-bg, #FCF1DD);
                padding: 100px 28px 32px;
                box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease, visibility 0.3s ease;
                transform: translateX(100%);
                visibility: hidden;
                z-index: 10000;
                border-left: 1px solid rgba(210, 180, 140, 0.15);
                overflow-y: auto;
            }

            .mobile-nav.active {
                transform: translateX(0);
                visibility: visible;
            }

            .mobile-nav-close {
                position: absolute;
                top: 24px;
                left: 24px;
                background: none;
                border: none;
                font-size: 32px;
                line-height: 1;
                color: var(--color-text);
                cursor: pointer;
                padding: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: color 0.2s ease;
            }

            .mobile-nav-close:hover {
                color: var(--color-primary-dark, #995A3B);
            }

            .mobile-nav-menu {
                display: flex;
                flex-direction: column;
                gap: 4px;
            }

            .mobile-nav-menu a {
                font-size: 1rem;
                font-weight: 500;
                color: var(--color-text);
                padding: 12px 0;
                border-bottom: 1px solid #eee;
            }

            /* Nav overlay system — matches home.css */
            body.nav-open::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                z-index: 9999;
                pointer-events: auto;
            }

            body.nav-open .site-header {
                z-index: 10001;
            }

            body.nav-open .site-header::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: calc(100% + 2px);
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                z-index: 9999;
                pointer-events: none;
            }

            body.nav-open {
                overflow: hidden !important;
            }

            html:has(body.nav-open) {
                overflow: hidden !important;
            }

            /* Mobile hero - match home page pattern */
            .hero-section {
                min-height: 100vh;
                min-height: 100svh;
                padding: 0;
                background-color: #000;
                display: flex;
                align-items: flex-end;
            }

            .hero-video-wrapper::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(
                    to top,
                    rgba(23, 17, 10, 0.85) 0%,
                    rgba(23, 17, 10, 0.6) 35%,
                    rgba(23, 17, 10, 0.15) 60%,
                    transparent 100%
                );
                z-index: 1;
            }

            .hero-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0 24px 144px;
                justify-content: flex-end;
                text-align: center;
                max-width: 100%;
                min-height: 100vh;
                min-height: 100svh;
                z-index: 2;
            }

            .hero-content {
                padding: 0;
                transform: none !important;
                max-width: 100%;
                z-index: 2;
                text-align: center;
                margin-right: 0;
                margin-left: 0;
            }

            .hero-eyebrow {
                font-size: 11px;
                margin-top: 0;
                margin-bottom: 14px;
                letter-spacing: 0.12em;
                color: #D2B48C;
            }

            .hero-title {
                font-size: clamp(28px, 8vw, 40px);
                margin-bottom: 20px;
                line-height: 1.15;
                color: #fff;
            }

            .hero-buttons {
                flex-direction: row;
                gap: 10px;
                justify-content: center;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                flex: 1;
                text-align: center;
                padding: 11px 13px;
                font-size: 14px;
            }

            .hero-buttons .btn-secondary {
                color: #fff;
                border-color: rgba(255, 255, 255, 0.5);
                background: transparent;
            }

            .scroll-indicator {
                bottom: 80px;
                color: rgba(255, 255, 255, 0.7);
            }

            .stats-section {
                padding: 16px 0;
            }

            .stats-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 8px 4px;
                max-width: 100%;
                justify-content: initial;
            }

            .stat-item {
                flex: none;
                border-right: none;
                border-bottom: none;
                padding: 12px 4px;
                min-width: auto;
            }

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

            .stat-number .suffix {
                font-weight: 900;
                font-family: var(--font-body);
            }

            .stat-label {
                font-size: 0.55rem;
                letter-spacing: 0.08em;
            }

            .logos-section {
                padding: 32px 0;
            }

            .logos-track {
                gap: 24px;
                padding: 0 16px;
            }

            .logo-slide {
                width: 100px;
                height: 55px;
            }

            .logo-slide img {
                max-width: 100px;
                max-height: 55px;
            }

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

            .intro-heading .btn-primary {
                display: inline-flex;
                margin-left: auto;
                margin-right: auto;
            }

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

            .testimonials-section {
                overflow: hidden;
            }

            .testimonials-header h2 {
                font-size: clamp(28px, 7vw, 40px);
            }

            .testimonials-wrapper {
                padding: 0 24px;
            }

            .testimonials-scroll {
                gap: 20px;
                touch-action: pan-x;
                overscroll-behavior-x: contain;
            }

            .testimonial-card {
                flex: 0 0 calc(100% - 20px);
                min-width: calc(100% - 20px);
                min-height: 480px;
                padding: 36px 24px 28px;
            }

            .testimonials-pagination .pagination-dot {
                width: 14px;
                height: 14px;
                padding: 8px;
                box-sizing: content-box;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
                text-align: center;
            }

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

            .footer-contact {
                grid-column: 1 / -1;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* ============================================
           CTA SECTION - About Page Style
           ============================================ */
        .cta-section {
            padding: 40px 0 100px 0;
            background-color: #F8F5F0;
            background-image: none !important;
            position: relative;
        }

        .cta-section::before,
        .cta-section::after {
            display: none !important;
            content: none !important;
        }

        .cta-section .cta-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 64px 56px;
            text-align: center;
            background: linear-gradient(135deg, #995A3B 0%, #BD9450 100%);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(153, 90, 59, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            row-gap: 16px;
        }

        .cta-section .cta-container h2 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: clamp(44px, 5vw, 64px);
            line-height: 1.1;
            color: #fff;
            margin: 0 0 12px 0;
        }

        .cta-section .cta-container p {
            font-family: "Inter", sans-serif;
            font-size: 20px;
            line-height: 1.5;
            color: #fff;
            margin: 0 0 12px 0;
        }

        .cta-section .cta-contact-row {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }

        .cta-section .cta-contact-row .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border-radius: 8px;
            background-color: #fff !important;
            color: #1a1a1a !important;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
            min-width: 180px;
        }

        .cta-section .cta-contact-row .btn-primary:hover {
            background-color: #2d4a3e !important;
            color: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .cta-section .cta-buttons {
            display: flex !important;
            gap: 20px;
            justify-content: center !important;
            align-items: center !important;
            flex-wrap: wrap;
            margin-top: -10px;
            width: 100% !important;
            position: relative;
            text-align: center !important;
        }

        .cta-section .cta-buttons .btn-primary,
        .cta-section .cta-buttons .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-family: var(--font-body) !important;
            font-weight: 500 !important;
            font-size: 15px;
            text-decoration: none;
            border-radius: 8px;
            background-color: #fff !important;
            color: #1a1a1a !important;
            border: none !important;
            outline: none !important;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            width: 250px !important;
            flex: none !important;
        }

        .cta-section .cta-buttons .btn-primary:hover,
        .cta-section .cta-buttons .btn-secondary:hover {
            background-color: #E8D5B7 !important;
            color: #1a1a1a !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 40px 16px;
            }

            .cta-section .cta-container {
                padding: 36px 24px 40px;
                margin: 0 auto;
                text-align: center;
                overflow: hidden;
                gap: 0 !important;
            }

            .cta-section .cta-container h2 {
                font-size: clamp(28px, 7vw, 36px);
                text-align: center;
                margin-bottom: 12px !important;
            }

            .cta-section .cta-container p {
                font-size: 15px;
                text-align: center;
                margin-bottom: 20px !important;
            }

            .cta-section .cta-contact-row {
                margin: 0 0 12px 0 !important;
                width: 100%;
            }

            .cta-section .cta-contact-row .btn-primary {
                width: 100% !important;
                min-width: unset;
                margin: 0 !important;
            }

            .cta-section .cta-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 12px !important;
                margin: 0 !important;
                width: 100%;
            }

            .cta-section .cta-buttons .btn-primary,
            .cta-section .cta-buttons .btn-secondary {
                width: 100% !important;
                flex: unset;
                box-sizing: border-box;
                text-align: center;
                justify-content: center;
                margin: 0 !important;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .hero-container {
                padding: 0 20px calc(120px + env(safe-area-inset-bottom));
            }

            .hero-eyebrow {
                font-size: 10px;
                letter-spacing: 0.08em;
            }

            .hero-title {
                font-size: clamp(24px, 7vw, 34px);
                margin-bottom: 16px;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                padding: 10px 11px;
                font-size: 13px;
            }

            .header-container {
                padding: 12px 12px;
            }

            .site-logo {
                font-size: 19px;
            }

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

            .stat-item {
                padding: 8px 2px;
            }

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

            .stat-label {
                font-size: 0.5rem;
                letter-spacing: 0.05em;
            }

            .logos-section {
                padding: 16px 0;
            }

            .logos-track {
                gap: 24px;
                padding: 0 16px;
            }

            .logo-slide {
                width: 90px;
                height: 45px;
            }

            .logo-slide img {
                max-width: 90px;
                max-height: 45px;
            }

            .testimonials-section {
                padding: 60px 0 56px;
            }

            .testimonials-header {
                margin-bottom: 32px;
            }

            .testimonials-header h2 {
                font-size: clamp(24px, 7vw, 32px);
            }

            .testimonials-wrapper {
                padding: 0 16px;
            }

            .testimonial-card {
                padding: 36px 24px 32px;
                min-height: 420px;
            }

            .testimonial-text {
                font-size: 15px;
                line-height: 1.7;
                margin-bottom: 20px;
            }

            .testimonial-avatar {
                width: 42px;
                height: 42px;
            }

            .testimonial-avatar::before {
                font-size: 24px;
            }

            .testimonial-info h6 {
                font-size: 14px;
            }

            .testimonial-info span {
                font-size: 12px;
            }

            .bento-grid {
                gap: 12px;
                padding: 0 16px;
            }

            .bento-content {
                padding: 20px 16px;
            }

            .bento-content h3 {
                font-size: 18px;
            }

            .bento-content p {
                font-size: 14px;
            }

            .cta-section .cta-container {
                padding: 36px 24px 40px;
                margin: 0 auto;
                text-align: center;
                overflow: hidden;
                gap: 0 !important;
            }

            .cta-section .cta-container h2 {
                font-size: clamp(28px, 7vw, 36px);
                text-align: center;
                margin-bottom: 12px !important;
            }

            .cta-section .cta-container p {
                font-size: 15px;
                text-align: center;
                margin-bottom: 20px !important;
            }

            .footer-container {
                padding: 0 16px;
                gap: 28px;
            }

            .site-footer {
                padding: 40px 0 24px;
            }

            .footer-bottom p {
                font-size: 12px;
            }
        }

        @media (max-width: 360px) {
            .stats-grid {
                gap: 2px 0;
            }

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

            .stat-label {
                font-size: 0.45rem;
                letter-spacing: 0.03em;
            }

            .testimonials-wrapper {
                padding: 0 12px;
            }
        }

