/* CSS Variables - STRICTLY from Brand Board */
        :root {
            --deep-navy: #0F2747;
            --forest-green: #1F5A44;
            --ivory: #F7F5F2;
            --champagne-gold: #CBA96A;
            --charcoal: #1A1A1A;
            --white: #FFFFFF;
            
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Inter', sans-serif;
            
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: var(--font-body);
            color: var(--charcoal);
            background-color: var(--ivory);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

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

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

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

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        
        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active, .reveal-left.active, .reveal-right.active {
            opacity: 1;
            transform: translate(0, 0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .btn-primary {
            background-color: var(--deep-navy);
            color: var(--champagne-gold);
            border-color: var(--champagne-gold);
        }

        .btn-primary:hover {
            background-color: var(--forest-green);
            color: var(--ivory);
            border-color: var(--forest-green);
        }
        
        .btn-outline-light {
            background-color: transparent;
            color: var(--champagne-gold);
            border-color: var(--champagne-gold);
        }

        .btn-outline-light:hover {
            background-color: var(--champagne-gold);
            color: var(--deep-navy);
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--charcoal);
            color: var(--ivory);
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-contact {
            display: flex;
            gap: 20px;
        }

        .top-bar-contact i {
            color: var(--champagne-gold);
            margin-right: 5px;
        }

        /* Navigation */
        .navbar {
            background-color: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(15, 39, 71, 0.05);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-menu-toggle {
            display: none;
            border: 1px solid rgba(15, 39, 71, 0.15);
            background: var(--ivory);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            transition: var(--transition);
        }

        .mobile-menu-toggle span {
            width: 20px;
            height: 2px;
            background: var(--deep-navy);
            border-radius: 2px;
            display: block;
            transition: var(--transition);
        }

        .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .logo {
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .logo-main {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            color: var(--deep-navy);
            font-weight: 700;
            letter-spacing: 2px;
            line-height: 1;
        }

        .logo-sub {
            font-family: var(--font-body);
            font-size: 0.6rem;
            color: var(--champagne-gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 4px;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--deep-navy);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--forest-green);
        }

        /* Hero Section */
        .hero {
            background-color: var(--deep-navy);
            color: var(--ivory);
            padding: 6rem 0 9rem 0;
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            color: var(--ivory);
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-content h1 span {
            color: var(--champagne-gold);
            font-style: italic;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: rgba(247, 245, 242, 0.85);
            margin-bottom: 2.5rem;
            max-width: 500px;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-slider {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(203, 169, 106, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            background: #0d1b2a;
        }

        .hero-slide {
            display: none;
            position: relative;
            min-height: 560px;
        }

        .hero-slide.active {
            display: block;
        }

        .hero-slide img {
            width: 100%;
            height: 560px;
            object-fit: cover;
            display: block;
        }

        .slide-badge {
            position: absolute;
            top: 22px;
            right: 22px;
            background: rgba(15, 39, 71, 0.82);
            color: var(--ivory);
            border: 1px solid rgba(203, 169, 106, 0.7);
            padding: 10px 18px;
            font-size: 0.8rem;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            font-weight: 600;
            z-index: 2;
        }

        .hero-slider-dots {
            position: absolute;
            bottom: 18px;
            right: 20px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .hero-slider-dots button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid rgba(247, 245, 242, 0.8);
            background: rgba(255,255,255,0.25);
            cursor: pointer;
            padding: 0;
            transition: var(--transition);
        }

        .hero-slider-dots button.active {
            background: var(--champagne-gold);
            border-color: var(--champagne-gold);
            transform: scale(1.1);
        }

        .stats-box {
            position: absolute;
            bottom: -30px;
            left: -40px;
            background: var(--white);
            padding: 25px 35px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 20px;
            border-top: 4px solid var(--forest-green);
            z-index: 3;
        }

        .stats-box h3 {
            font-size: 2.5rem;
            color: var(--champagne-gold);
        }

        .stats-box p {
            font-size: 0.9rem;
            color: var(--deep-navy);
            line-height: 1.3;
            font-weight: 600;
        }

        /* Shared Section padding */
        .section-padding {
            padding: 7rem 0;
        }

        .subtitle {
            color: var(--champagne-gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.85rem;
            margin-bottom: 10px;
            display: block;
        }

        /* About Section */
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .intro-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .intro-content p {
            color: rgba(26, 26, 26, 0.8);
            font-size: 1.05rem;
        }

        .intro-list {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
            color: var(--charcoal);
        }

        .intro-list i {
            color: var(--forest-green);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .intro-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: end;
        }

        .intro-images img {
            border-radius: 2px;
            object-fit: cover;
            height: 100%;
            border: 1px solid rgba(203, 169, 106, 0.35);
            box-shadow: 0 20px 35px rgba(15, 39, 71, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .intro-images img:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 42px rgba(15, 39, 71, 0.15);
        }

        .intro-images img:first-child {
            margin-top: 40px;
            height: 420px;
        }

        .intro-images img:last-child {
            height: 500px;
        }

        /* Services Grid */
        .services-section {
            background-color: var(--white);
            text-align: center;
        }

        .services-header {
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .services-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

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

        .service-card {
            padding: 3rem 2rem;
            background: var(--ivory);
            text-align: left;
            transition: var(--transition);
            border: 1px solid rgba(15, 39, 71, 0.05);
            border-bottom: 3px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            border-bottom-color: var(--champagne-gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(15, 39, 71, 0.08);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background-color: var(--deep-navy);
            color: var(--champagne-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

.service-card p {
            color: rgba(26, 26, 26, 0.7);
            font-size: 0.95rem;
            flex-grow: 1;
        }

        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--deep-navy);
            text-decoration: none;
            transition: var(--transition);
        }

        .service-card-link i {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }

        .service-card-link:hover {
            color: var(--champagne-gold);
        }

        .service-card-link:hover i {
            transform: translateX(4px);
        }

        .who-we-serve-section {
            background-color: var(--ivory);
        }

        .serve-header {
            max-width: 820px;
            margin: 0 auto 3rem auto;
            text-align: center;
        }

        .serve-header h2 {
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            margin-bottom: 1rem;
        }

        .serve-intro {
            font-size: 1.15rem;
            color: var(--deep-navy);
            font-weight: 600;
            margin: 0;
        }

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

        .serve-card {
            background: var(--white);
            border: 1px solid rgba(15, 39, 71, 0.08);
            padding: 2rem 2.25rem;
            box-shadow: 0 10px 25px rgba(15, 39, 71, 0.04);
            transition: var(--transition);
        }

        .serve-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 35px rgba(15, 39, 71, 0.08);
            border-color: rgba(203, 169, 106, 0.5);
        }

        .serve-card h3 {
            font-size: 1.6rem;
            margin-bottom: 0.85rem;
            color: var(--deep-navy);
        }

        .serve-card p {
            color: rgba(26, 26, 26, 0.75);
            font-size: 1rem;
            margin: 0;
        }

        .cta-service-section {
            background-color: var(--white);
            padding-top: 3rem;
        }

        .cta-service-card {
            position: relative;
            display: flex;
            align-items: stretch;
            min-height: 520px;
            margin-left: calc(50% - 50vw);
            background: var(--deep-navy);
            border: 1px solid rgba(15, 39, 71, 0.12);
            border-radius: 22px;
            box-shadow: 0 18px 35px rgba(15, 39, 71, 0.08);
            overflow: hidden;
            width: 100vw;
        }

        .cta-service-image {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .cta-service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            object-position: center;
            filter: saturate(0.78) contrast(1.08) brightness(0.78);
        }

        .cta-service-card::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(90deg, rgba(8, 25, 45, 0.94) 0%, rgba(8, 25, 45, 0.78) 42%, rgba(8, 25, 45, 0.2) 100%);
        }

        .cta-service-content {
            position: relative;
            z-index: 2;
            width: min(58%, 660px);
            padding: 4.5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-service-content .subtitle {
            margin-bottom: 0.75rem;
            color: var(--champagne-gold);
        }

        .cta-service-content h2 {
            font-size: clamp(2.2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            line-height: 1.05;
            color: var(--white);
        }

        .cta-service-content p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 2rem;
            max-width: 560px;
        }

        .cta-service-content .btn {
            align-self: flex-start;
        }

        /* How It Works Section */
        .how-it-works-section {
            background-color: var(--ivory);
        }

        .timeline-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: start;
        }

        .timeline-header {
            position: sticky;
            top: 120px;
        }

        .timeline-header h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .timeline-header p {
            font-size: 1.1rem;
            color: rgba(26, 26, 26, 0.8);
            margin-bottom: 2rem;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .process-step {
            display: flex;
            gap: 25px;
            background: var(--white);
            padding: 2.5rem;
            border: 1px solid rgba(15, 39, 71, 0.05);
            box-shadow: 0 10px 30px rgba(15, 39, 71, 0.03);
            transition: var(--transition);
        }
        
        .process-step:hover {
            transform: translateX(10px);
            border-left: 4px solid var(--forest-green);
        }

        .step-number {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            color: var(--champagne-gold);
            line-height: 0.8;
            font-weight: 700;
        }

        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--deep-navy);
        }
        
        .step-content p {
            color: rgba(26, 26, 26, 0.7);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Dark Banner Section */
        .dark-banner {
            background-color: var(--forest-green);
            color: var(--ivory);
            border-top: 2px solid var(--champagne-gold);
        }

        .banner-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .dark-banner h2 {
            color: var(--ivory);
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .dark-banner p {
            color: rgba(247, 245, 242, 0.85);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .banner-stats-img {
            position: relative;
        }
        
        .banner-stats-img img {
            border-radius: 2px;
            border: 1px solid rgba(203, 169, 106, 0.4);
        }

        .floating-stat {
            position: absolute;
            bottom: 30px;
            right: -30px;
            background: var(--deep-navy);
            padding: 25px 35px;
            border-left: 4px solid var(--champagne-gold);
        }

        .floating-stat h4 {
            color: var(--champagne-gold);
            font-size: 2.2rem;
            margin-bottom: 0;
        }
        
        .floating-stat p {
            color: var(--ivory);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Proof In Practice Section */
        .proof-section {
            background: var(--white);
        }

        .proof-header {
            max-width: 760px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .proof-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.2rem;
        }

        .proof-header p {
            color: rgba(26, 26, 26, 0.78);
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }

        .proof-note,
        .proof-disclosure {
            color: rgba(26, 26, 26, 0.56);
            font-size: 0.82rem;
        }

        /* Proof Case Cards Grid */
        .proof-case-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .proof-card {
            background: var(--ivory);
            border-top: 3px solid var(--forest-green);
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: var(--transition);
        }

        .proof-card:hover {
            box-shadow: 0 12px 28px rgba(15, 39, 71, 0.12);
            transform: translateY(-4px);
        }

        .proof-card-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: rgba(15, 39, 71, 0.08);
        }

        .proof-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: var(--transition);
        }

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

        .proof-card-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .case-category {
            display: block;
            color: var(--forest-green);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.3px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .proof-card h3 {
            font-size: 1.4rem;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--deep-navy);
        }

        .case-excerpt {
            color: rgba(26, 26, 26, 0.75);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .proof-card .btn {
            align-self: flex-start;
            margin-top: auto;
        }

        .proof-disclosure {
            max-width: 900px;
            margin: 2rem auto 0;
            line-height: 1.6;
            text-align: center;
        }

        .proof-disclosure strong {
            color: var(--deep-navy);
        }

        .proof-cta {
            position: relative;
            align-items: flex-start;
            border-top: 1px solid rgba(15, 39, 71, 0.15);
            background-color: var(--ivory);
            background-image: linear-gradient(90deg, rgba(247, 245, 242, 0.97) 0%, rgba(247, 245, 242, 0.88) 42%, rgba(247, 245, 242, 0.08) 74%), url('../Images/after-proof.png');
            background-position: center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            gap: 3rem;
            justify-content: center;
            margin-top: 5rem;
            margin-left: calc(50% - 50vw);
            min-height: 520px;
            padding: 5rem max(5%, calc((100vw - 1200px) / 2));
            width: 100vw;
        }

        .proof-cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 0.75rem;
        }

        .proof-cta p {
            color: rgba(26, 26, 26, 0.72);
            max-width: 680px;
            margin: 0;
        }

        .proof-cta-actions {
            display: flex;
            flex-shrink: 0;
            gap: 0.75rem;
        }

       
        /* Section 5: Contact Form */
        .contact-section { background-color: var(--white); }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 18px 35px rgba(15, 39, 71, 0.08);
        }
        .contact-image { min-height: 100%; }
        .form-container { background: var(--forest-green); color: var(--ivory); padding: 4rem 3rem; border-top: 4px solid var(--champagne-gold); }
        .form-container h2 { color: var(--ivory); font-size: 2.8rem; margin-bottom: 0.5rem; }
        .form-group { margin-bottom: 1.5rem; }
        .form-control { width: 100%; padding: 15px; border: 1px solid rgba(247, 245, 242, 0.2); font-family: var(--font-body); background: rgba(255, 255, 255, 0.05); color: var(--ivory); transition: var(--transition); }
        .form-control::placeholder { color: rgba(247, 245, 242, 0.5); }
        .form-control:focus { outline: none; border-color: var(--champagne-gold); background: rgba(255, 255, 255, 0.1); }
        textarea.form-control { height: 120px; resize: none; }

        
        /* Footer */
        .footer {
            background-color: var(--deep-navy);
            color: var(--ivory);
            padding: 6rem 0 2rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-logo .logo-main {
            color: var(--champagne-gold);
        }
        
        .footer-logo p {
            margin-top: 1.5rem;
            color: rgba(247, 245, 242, 0.6);
            font-size: 0.95rem;
            max-width: 300px;
            font-weight: 300;
        }

        .footer-col h4 {
            color: var(--ivory);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(247, 245, 242, 0.6);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--champagne-gold);
            padding-left: 5px;
        }
        
        .footer-contact li {
            display: flex;
            align-items: center;
            color: rgba(247, 245, 242, 0.6);
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        
        .footer-contact i {
            color: var(--champagne-gold);
            margin-right: 15px;
            font-size: 1.1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(203, 169, 106, 0.2);
            color: rgba(247, 245, 242, 0.4);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-grid, .intro-grid, .banner-grid, .timeline-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .timeline-header {
                position: relative;
                top: 0;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .contact-image {
                min-height: 320px;
            }
            .intro-images {
                grid-template-columns: 1fr 1fr;
            }
            .form-container {
                padding: 3rem 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-content h1 {
                font-size: 3.5rem;
            }
            .stats-box {
                left: 20px;
                bottom: -20px;
                right: 20px;
            }
            .pre-footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .proof-case-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 4rem 0;
            }

            .navbar .container {
                position: relative;
                flex-wrap: wrap;
                gap: 12px;
            }

            .logo-main {
                font-size: 1.7rem;
            }

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

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

            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                padding: 1rem 1.25rem 1.25rem;
                background: var(--white);
                border-top: 1px solid rgba(15, 39, 71, 0.08);
                box-shadow: 0 12px 25px rgba(15, 39, 71, 0.08);
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                width: 100%;
                padding: 0.25rem 0;
            }

            .navbar .btn.btn-primary {
                display: none;
            }

            .hero-slider,
            .hero-slide,
            .hero-slide img {
                min-height: 420px;
                height: 420px;
            }

            .slide-badge {
                top: 16px;
                right: 16px;
                font-size: 0.7rem;
                padding: 8px 12px;
            }

            .hero-content h1 {
                font-size: 2.7rem;
                line-height: 1.1;
            }

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

            .hero-buttons .btn {
                width: 100%;
            }

            .stats-box {
                position: static;
                margin-top: 1.25rem;
                left: auto;
                bottom: auto;
                width: 100%;
                justify-content: center;
                padding: 18px 20px;
            }

            .floating-stat {
                right: 21px;
            }

            .intro-images {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .intro-images img:first-child,
            .intro-images img:last-child {
                height: 260px;
                margin-top: 0;
            }

            .serve-header {
                margin-bottom: 2rem;
            }

            .serve-header h2 {
                font-size: 2.25rem;
            }

            .serve-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .serve-card {
                padding: 1.5rem 1.25rem;
            }

            .serve-card h3 {
                font-size: 1.4rem;
                margin-bottom: 0.6rem;
            }

            .serve-card p {
                font-size: 0.95rem;
            }

            .proof-header {
                margin-bottom: 2.5rem;
            }

            .proof-case-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .proof-card-image {
                height: 250px;
            }

            .proof-card-content {
                padding: 1.5rem;
            }

            .proof-card h3 {
                font-size: 1.2rem;
            }

            .case-excerpt {
                font-size: 0.9rem;
            }

            .proof-points {
                gap: 0.75rem;
            }

            .proof-points strong {
                font-size: 1.35rem;
            }

            .proof-points span {
                font-size: 0.62rem;
                letter-spacing: 0.35px;
            }

            .proof-cta {
                align-items: flex-start;
                background-position: 82% center;
                flex-direction: column;
                gap: 1.5rem;
                margin-top: 3.5rem;
                min-height: 560px;
                padding-bottom: 3rem;
                padding-top: 3rem;
            }

            .proof-cta-actions {
                align-items: stretch;
                flex-direction: column;
                width: 100%;
            }

            .proof-cta-actions .btn {
                width: 100%;
            }

            .proof-cta-actions .btn-outline {
                background-color: var(--deep-navy);
                color: var(--champagne-gold);
            }

           

            .services-grid,
            .process-steps {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .cta-service-card {
                min-height: 500px;
                border-radius: 18px;
            }

            .cta-service-section {
                padding-top: 2rem;
            }

            .cta-service-image img {
                object-position: 62% center;
            }

            .cta-service-content {
                width: 100%;
                padding: 2.5rem 1.4rem;
            }

            .service-card,
            .process-step {
                padding: 1.5rem 1.2rem;
            }

            .contact-grid {
                gap: 0;
            }
            .contact-image {
                min-height: 260px;
            }
            .form-container {
                padding: 2.25rem 1.4rem;
            }
            .form-container h2 {
                font-size: 2.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .top-bar-contact {
                display: none;
            }
        }