
        :root {
            --site-font: 'Inter', Arial, sans-serif;
            --section-padding-y: 88px;
            --section-padding-x: 60px;
            --section-padding-tablet-y: 64px;
            --section-padding-tablet-x: 20px;
            --section-padding-mobile-y: 52px;
            --section-padding-mobile-x: 16px;
            --ink: #0d1117;
            --paper: #f4f1eb;
            --accent: #1a6b55;
            --accent2: #e8a830;
            --accent3: #c5403a;
            --muted: #6b6860;
            --border: rgba(13, 17, 23, 0.12);
            --card-bg: #ffffff;
            --section-alt: #eef4f1;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--site-font);
            background: var(--paper);
            color: var(--ink);
            overflow-x: hidden; 
            
}

.section-title {
    font-family: var(--site-font);
    font-weight: 800;
    letter-spacing: -1px;
}

.service-modern h3 {
    font-family: var(--site-font);
}

        /* ─── NOISE OVERLAY ─── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            
        }

        /* ─── NAV ─── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 60px;
            background: rgba(244, 241, 235, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            font-family: var(--site-font);
            font-weight: 800;
            font-size: 1.15rem;
            letter-spacing: -0.5px;
            color: var(--ink);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mobile-nav .nav-logo {
            font-family: var(--site-font);
            font-weight: 800;
            font-size: 1.15rem;
            letter-spacing: -0.5px;
            color: var(--ink);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-text {
    display: inline-flex;
    gap: 4px;
    align-items: baseline;
}

.nav-logo-text-vector {
    color: #23b77f;
}

.nav-logo-text-mapping {
    color: #0e3c6d;
}
.footer-logo-icon {
    width: 100%;
    max-width: 220px;
}
.footer-logo-icon img {
    display: block;
    width: 100%;
    height: auto;
}
/* Push last icon to the end */
.nav-logo i {
    margin-left: auto;
}

        .nav-logo-icon {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 6px;
            display: grid;
            place-items: center;
        }

        .nav-logo-icon svg {
            width: 18px;
            height: 18px;
        }

        .nav-logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.98rem;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: color 0.2s;
            font-weight: 600;
        }

        .nav-links a:hover {
            color: var(--muted);
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nav-dropdown-toggle::after {
            content: '';
            width: 7px;
            height: 7px;
            border-right: 1.5px solid currentColor;
            border-bottom: 1.5px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            transition: transform 0.2s ease;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 18px);
            left: 50%;
            min-width: 220px;
            margin: 0;
            padding: 10px;
            list-style: none;
            background: rgba(255, 250, 242, 0.98);
            border: 1px solid var(--border);
            border-radius: 10px;
            box-shadow: 0 20px 50px rgba(13, 17, 23, 0.14);
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, 10px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        }

        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: -18px;
            height: 18px;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

        .nav-dropdown:hover .nav-dropdown-toggle::after,
        .nav-dropdown:focus-within .nav-dropdown-toggle::after {
            transform: rotate(225deg) translate(-2px, -1px);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 12px;
            border-radius: 7px;
            color: var(--ink);
            white-space: nowrap;
        }

        .nav-dropdown-menu a:hover {
            background: rgba(26, 107, 85, 0.09);
            color: var(--accent);
        }

        .nav-cta {
            background: var(--ink);
            color: var(--paper);
            border: none;
            border-radius: 8px;
            padding: 10px 22px;
            font-size: 0.875rem;
            font-family: var(--site-font);
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            text-decoration: none;
        }

        .nav-cta:hover {
            background: var(--accent);
            transform: translateY(-1px);
        }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 60px 48px;
            position: relative;
            overflow: hidden;
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 32px;
            width: fit-content;
            position: relative;
            z-index: 1;
            animation: fadeUp 0.6s ease both;
        }

        .hero-tag::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent2);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: 0.6;
                transform: scale(1.4)
            }
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: clamp(3rem, 7vw, 6.5rem);
            line-height: 0.95;
            letter-spacing: -3px;
            position: relative;
            z-index: 1;
            animation: fadeUp 0.7s 0.1s ease both;
        }

        .hero-title .accent-word {
            color: var(--accent);
            font-style: italic;
            position: relative;
        }
         .section-title .accent-word {
            color: var(--accent);
            font-style: italic;
            position: relative;
        }

        .hero-title .accent-word::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent2);
            border-radius: 2px;
        }

        .hero-sub {
            max-width: 520px;
            margin-top: 18px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--muted);
            font-weight: 300;
            position: relative;
            z-index: 1;
            animation: fadeUp 0.7s 0.2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            align-items: center;
            margin-top: 28px;
            position: relative;
            z-index: 1;
            animation: fadeUp 0.7s 0.3s ease both;
        }

        .btn-primary {
            background: var(--ink);
            color: var(--paper);
            padding: 15px 32px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26, 107, 85, 0.3);
        }

        .btn-outline {
            border: 1.5px solid var(--ink);
            color: var(--ink);
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            background: transparent;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            background: var(--ink);
            color: var(--paper);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            position: relative;
            z-index: 1;
            animation: fadeUp 0.7s 0.4s ease both;
        }

        .stat-num {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 2.4rem;
            letter-spacing: -1.5px;
            color: var(--ink);
        }

        .stat-num span {
            color: var(--accent);
        }

        .stat-label {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--muted);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-top: 2px;
        }

        /* Hero map visual (right side) */
        .hero-visual {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            width: 48%;
            opacity: 0.12;
            z-index: 0;
            animation: heroFloat 8s ease-in-out infinite;
        }

        @keyframes heroFloat {

            0%,
            100% {
                transform: translateY(-50%) rotate(0deg)
            }

            50% {
                transform: translateY(-52%) rotate(1deg)
            }
        }

        /* ─── SERVICES ─── */
        section {
            position: relative;
            z-index: 1;
        }

        .section-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--accent);
            opacity: 0.3;
            max-width: 40px;
        }

        .section-title {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 2.2rem);
            letter-spacing: -1.5px;
            line-height: 1.05;
            max-width: 600px;
        }

        .services-section {
            padding: 64px 60px;
            background: var(--accent);
            color: var(--paper);
        }

        .services-section .section-label {
            color: var(--accent2);
        }

        .services-section .section-label::after {
            background: var(--accent2);
        }

        .services-section .section-title {
            color: var(--paper);
            max-width: 500px;
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 36px;
            gap: 32px;
        }

        .services-intro {
            max-width: 340px;
            color: rgba(244, 241, 235, 0.6);
            font-size: 0.95rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(244, 241, 235, 0.1);
            border: 1px solid rgba(244, 241, 235, 0.1);
            border-radius: 16px;
            overflow: hidden;
        }

        .service-card {
            background: var(--accent);
            padding: 40px 32px;
            transition: background 0.3s;
            cursor: default;
        }

        .service-card:hover {
            background: var(--ink);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: rgba(244, 241, 235, 0.08);
            border-radius: 10px;
            display: grid;
            place-items: center;
            margin-bottom: 24px;
            transition: background 0.3s;
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .service-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--paper);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .service-name {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: -0.3px;
            color: var(--paper);
            margin-bottom: 12px;
        }

        .service-desc {
            font-size: 0.90rem;
            line-height: 1.65;
            color: rgba(244, 241, 235, 0.55);
            transition: color 0.3s;
        }

        .service-card:hover .service-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .service-items {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .service-item {
            font-size: 0.78rem;
            color: rgba(244, 241, 235, 0.4);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .service-card:hover .service-item {
            color: rgba(255, 255, 255, 0.7);
        }

        .service-item::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--accent2);
            border-radius: 50%;
            flex-shrink: 0;
            transition: background 0.3s;
        }

        .service-card:hover .service-item::before {
            background: white;
        }
            .service-card a{
                text-decoration: none;
                color:  #fff;
                font-size: 16px;
                display: inline-flex;
                padding-top:    15px;
                padding-left: 12px;
               
            
            }
              .service-card:hover a{
                color:var(--accent2);
              }
            

        /* ─── WHY US ─── */
        .why-section {
            padding: 64px 60px;
            background:var(--paper);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            margin-top: 36px;
        }

        .why-visual {
            position: relative;
            height: 480px;
        }

        .why-card {
            position: absolute;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }

        .why-card.card-a {
            top: 0;
            left: 0;
            width: 280px;
        }

        .why-card.card-b {
            top: 120px;
            right: 0;
            width: 240px;
        }

        .why-card.card-c {
            bottom: 0;
            left: 40px;
            width: 260px;
        }

        .why-card-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .why-card-val {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            letter-spacing: -1px;
            color: var(--accent);
        }

        .why-card-sub {
            font-size: 0.8rem;
            color: var(--muted);
            margin-top: 4px;
            line-height: 1.5;
        }

        .why-bar {
            height: 6px;
            background: #e8e5de;
            border-radius: 3px;
            margin-top: 16px;
            overflow: hidden;
        }

        .why-bar-fill {
            height: 100%;
            background: var(--accent);
            border-radius: 3px;
            animation: barGrow 1.5s 0.5s ease both;
        }

        @keyframes barGrow {
            from {
                width: 0
            }
        }

        .why-points {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .why-point {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--border);
        }

        .why-point:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .why-point-num {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--accent);
            min-width: 36px;
            opacity: 0.4;
        }

        .why-point-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }

        .why-point-desc {
            font-size: 0.875rem;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 300;
        }

        /* ─── SECTORS ─── */
        .sectors-section {
            padding: 64px 60px;
            background: var(--paper);
        }

        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 36px;
        }

        .sector-chip {
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: all 0.25s;
            cursor: default;
            background: transparent;
        }

        .sector-chip:hover {
            border-color: var(--accent);
            background: var(--card-bg);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(26, 107, 85, 0.1);
        }

        .sector-emoji {
            font-size: 1.5rem;
            line-height: 1;
        }

        .sector-name {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: -0.2px;
        }

        /* ─── PROCESS ─── */
        .process-section {
            padding: 64px 60px;
            background: var(--accent);
            color: var(--paper);
        }

        .process-section .section-label {
            color: var(--accent2);
        }

        .process-section .section-label::after {
            background: var(--accent2);
        }

        .process-section .section-title {
            color: var(--paper);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            margin-top: 48px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 10%;
            right: 10%;
            height: 1px;
            background: rgba(244, 241, 235, 0.15);
            z-index: 0;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 16px;
            position: relative;
            z-index: 1;
        }

        .step-dot {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(244, 241, 235, 0.06);
            border: 1px solid rgba(244, 241, 235, 0.15);
            display: grid;
            place-items: center;
            margin-bottom: 24px;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1rem;
            color: var(--accent2);
            transition: all 0.3s;
        }

        .process-step:hover .step-dot {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .step-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--paper);
            margin-bottom: 10px;
        }

        .step-desc {
            font-size: 0.78rem;
            color: rgba(244, 241, 235, 0.45);
            line-height: 1.65;
        }

        /* ─── TESTIMONIAL ─── */
        .testimonial-section {
            padding: 64px 60px;
            background: var(--section-alt);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin-top: 36px;
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .testimonial-quote {
            font-size: 2rem;
            color: var(--accent);
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 0.9rem;
            line-height: 1.75;
            color: var(--muted);
            font-weight: 300;
            flex: 1;
        }

        .testimonial-author {
            margin-top: 18px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 0.85rem;
            color: white;
        }

        .author-name {
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--ink);
        }

        .author-role {
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 2px;
        }

        /* ─── CLIENTS ─── */
        .clients-section {
            padding: 48px 60px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--paper);
        }

        .clients-label {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 40px;
        }

        .clients-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 64px;
            flex-wrap: wrap;
        }

        .client-name {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: rgba(13, 17, 23, 0.25);
            letter-spacing: -0.3px;
            transition: color 0.2s;
        }

        .client-name:hover {
            color: var(--ink);
        }

        /* ─── CTA ─── */
        .cta-section {
            padding: 80px 60px;
            background: var(--accent);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
        }

        .cta-title {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: clamp(1.0rem, 5vw, 3rem);
            color: white;
            letter-spacing: -2px;
            line-height: 1.05;
            position: relative;
            z-index: 1;
            max-width: 680px;
            margin: 0 auto;
        }

        .cta-sub {
            color: rgba(255, 255, 255, 0.7);
            margin: 20px auto 44px;
            max-width: 480px;
            font-size: 1rem;
            line-height: 1.65;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .cta-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .btn-white {
            background: white;
            color: var(--accent);
            padding: 15px 36px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .btn-ghost {
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            color: white;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
            background: transparent;
        }

        .btn-ghost:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        /* ─── CONTACT FORM ─── */
        .contact-section {
            padding: 64px 60px;
            background: var(--paper);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .contact-info h2 {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 2.8rem;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .contact-info p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.75;
            font-weight: 300;
            max-width: 380px;
            margin-bottom: 40px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
        }

        .contact-detail-icon {
            width: 36px;
            height: 36px;
            background: var(--section-alt);
            border-radius: 8px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }

        .contact-detail-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .contact-detail-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--muted);
            margin-bottom: 2px;
        }

        .contact-detail-val {
            font-size: 1rem;
            color: var(--ink);
            font-weight: 600;
            text-decoration: none;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-label {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: var(--muted);
            text-transform: uppercase;
        }

        .form-input,
        .form-select,
        .form-textarea {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 16px;
            font-size: 0.9rem;
            color: var(--ink);
            font-family: 'DM Sans', sans-serif;
            outline: none;
            width: 100%;
            transition: border-color 0.2s;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(26, 107, 85, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            background: var(--ink);
            color: var(--paper);
            border: none;
            border-radius: 10px;
            padding: 16px 32px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-submit:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--ink);
            color: #ede6e6;
            padding: 56px 60px 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(244, 241, 235, 0.1);
            margin-bottom: 40px;
        }

        .footer-brand p {
            font-size: 1rem;
            color:#ede6e6;
            line-height: 1.75;
            margin-top: 16px;
            max-width: 280px;
            font-weight: 300;
        }

        .footer-col-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.09rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(244, 241, 235, 0.5);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 1rem;
            color: #ede6e6;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--paper);
        }

        .footer-contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 0;
        }

        .footer-contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #ede6e6;
            font-size: 1rem;
            line-height: 1.5;
        }

        .footer-contact-list i {
            flex: 0 0 18px;
            margin-top: 2px;
            color: var(--accent2);
            font-size: 0.95rem;
            line-height: 1;
        }

        .footer-contact-list a {
            color: #ede6e6;
            text-decoration: none;
            transition: color 0.2s;
            overflow-wrap: anywhere;
        }

        .footer-contact-list a:hover {
            color: var(--paper);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 0.8rem;
            color: #ede6e6;
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .footer-social {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(244, 241, 235, 0.15);
            border-radius: 8px;
            display: grid;
            place-items: center;
            color: rgba(244, 241, 235, 0.4);
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.2s;
        }

        .footer-social:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(26, 107, 85, 0.1);
        }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─── MOBILE ─── */
        /* ── TABLET (max 900px) ── */
        @media (max-width: 900px) {
            nav {
                padding: 14px 20px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 88px 20px 44px;
            }

            .hero-title {
                font-size: 2.6rem;
                letter-spacing: -1.5px;
            }

            .hero-sub {
                font-size: 1rem;
            }

            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
                margin-top: 32px;
            }

            .hero-stats>div {
                min-width: 110px;
            }

            .stat-num {
                font-size: 2rem;
            }

            .hero-visual {
                display: none;
            }

            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .btn-primary,
            .btn-outline {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .clients-section {
                padding: 36px 20px;
            }

            .clients-row {
                gap: 24px;
            }

            .client-name {
                font-size: 0.85rem;
            }

            .services-section {
                padding: 44px 20px;
            }

            .services-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 32px;
            }

            .services-intro {
                max-width: 100%;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1px;
            }

            .service-card {
                padding: 28px 20px;
            }

            .why-section {
                padding: 44px 20px;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .why-visual {
                display: none;
            }

            .why-points {
                gap: 24px;
            }

            .sectors-section {
                padding: 44px 20px;
            }

            .sectors-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .process-section {
                padding: 44px 20px;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }

            .process-steps::before {
                display: none;
            }

            .testimonial-section {
                padding: 44px 20px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .cta-section {
                padding: 56px 20px;
            }

            .cta-title {
                letter-spacing: -1px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .btn-white,
            .btn-ghost {
                width: 100%;
                text-align: center;
            }

            .contact-section {
                grid-template-columns: 1fr;
                padding: 44px 20px;
                gap: 36px;
            }

            .contact-info h2 {
                font-size: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-submit {
                width: 100%;
                justify-content: center;
            }

            footer {
                padding: 44px 20px 28px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .section-title {
                letter-spacing: -1px;
            }
        }

        /* ── MOBILE (max 600px) ── */
        @media (max-width: 600px) {
            nav {
                padding: 12px 16px;
            }

            .nav-cta {
                display: none;
            }

            .nav-cta {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .hero {
                padding: 80px 16px 36px;
            }

            .hero-tag {
                font-size: 0.68rem;
                padding: 5px 11px;
            }

            .hero-title {
                font-size: 2rem;
                letter-spacing: -1px;
                line-height: 1.05;
            }

            .hero-sub {
                font-size: 0.9rem;
                margin-top: 14px;
            }

            .hero-actions {
                margin-top: 20px;
            }

            .hero-stats {
                margin-top: 24px;
                padding-top: 18px;
            }

            .stat-num {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.72rem;
            }

            .clients-section {
                padding: 28px 16px;
            }

            .clients-label {
                font-size: 0.68rem;
                margin-bottom: 20px;
            }

            .clients-row {
                gap: 16px;
                justify-content: flex-start;
            }

            .client-name {
                font-size: 0.78rem;
            }

            .services-section {
                padding: 36px 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 24px 18px;
            }

            .service-name {
                font-size: 1rem;
            }

            .why-section {
                padding: 36px 16px;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .why-point {
                gap: 14px;
                padding-bottom: 20px;
            }

            .why-point-num {
                font-size: 1.1rem;
                min-width: 28px;
            }

            .why-point-title {
                font-size: 0.95rem;
            }

            .why-point-desc {
                font-size: 0.82rem;
            }

            .sectors-section {
                padding: 36px 16px;
            }

            .sectors-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .sector-chip {
                padding: 16px 14px;
                gap: 8px;
            }

            .sector-emoji {
                font-size: 1.2rem;
            }

            .sector-name {
                font-size: 0.8rem;
            }

            .process-section {
                padding: 36px 16px;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .process-step {
                align-items: flex-start;
                text-align: left;
                flex-direction: row;
                gap: 16px;
            }

            .step-dot {
                width: 44px;
                height: 44px;
                flex-shrink: 0;
                font-size: 0.85rem;
                margin-bottom: 0;
            }

            .step-title {
                margin-bottom: 6px;
            }

            .testimonial-section {
                padding: 36px 16px;
            }

            .testimonial-card {
                padding: 24px 20px;
            }

            .testimonial-text {
                font-size: 0.85rem;
            }

            .cta-section {
                padding: 48px 16px;
            }

            .cta-title {
                font-size: 1.8rem;
                letter-spacing: -0.5px;
            }

            .cta-sub {
                font-size: 0.9rem;
            }

            .contact-section {
                padding: 36px 16px;
                gap: 28px;
            }

            .contact-info h2 {
                font-size: 1.8rem;
                letter-spacing: -0.5px;
            }

            .contact-info p {
                font-size: 0.875rem;
            }

            .contact-detail-val {
                font-size: 0.85rem;
            }

            footer {
                padding: 36px 16px 24px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-brand p {
                font-size: 0.82rem;
                
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .footer-copy {
                font-size: 0.72rem;
            }

            /* Mobile hamburger menu */
            .mob-menu-btn {
                display: flex !important;
            }

            .mobile-nav {
                display: block !important;
            }
        }

        /* ── HAMBURGER MENU ── */
        .mob-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 200;
        }

        .mob-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mob-menu-btn.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mob-menu-btn.open span:nth-child(2) {
            opacity: 0;
        }

        .mob-menu-btn.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transition: 0.3s ease;
  display: flex;          /* ✅ IMPORTANT */
  flex-direction: column;
  padding: 20px;
}

.mobile-nav.active {
  right: 0;
}

body.menu-open {
  overflow: hidden;
}

        .mobile-nav a,
        .mobile-services-toggle {
            font-size: 1rem;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            display: block;
            transition: color 0.2s;
        }

        .mobile-services-toggle {
            width: 100%;
            background: transparent;
            border-top: 0;
            border-right: 0;
            border-left: 0;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-services-toggle i {
            display: inline-flex;
            transition: transform 0.25s ease;
        }

        .mobile-services-toggle.open i {
            transform: rotate(180deg);
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }

        .mobile-nav a:hover {
            color: var(--accent);
        }

        .mobile-services {
            display: block;
            gap: 2px;
            margin: 0 0 0 14px;
            padding: 0 0 0 14px;
            border-left: 1px solid var(--border);
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.25s ease, padding 0.25s ease, margin 0.25s ease;
        }

        .mobile-services.open {
            max-height: 280px;
            margin: -8px 0 8px 14px;
            padding: 4px 0 4px 14px;
        }

        .mobile-services a {
            padding: 8px 0;
            border-bottom: 0;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .mobile-nav .mob-cta {
            margin-top: 16px;
            background: var(--ink);
            color: var(--paper);
            border-radius: 10px;
            padding: 14px;
            text-align: center;
            font-weight: 600;
            border: none;
        }

        .mobile-nav .mob-cta:hover {
            background: var(--accent);
        }

        @media (min-width: 601px) {
            .mob-menu-btn {
                display: none !important;
            }

            .mobile-nav {
                display: none !important;
            }
        }
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transition: 0.3s ease;
}

.mobile-nav.active {
  right: 0;
}

body.menu-open {
  overflow: hidden;
}

/* ─── WHO SECTION ─── */
.who-section {
    padding: 80px 60px;
    background: var(--paper);
    position: relative;
}

/* background grid (same as hero) */
.who-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.who-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* TEXT */
.who-content {
    max-width: 560px;
}

.who-text {
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.who-text strong {
    color: var(--ink);
}

.who-content .btn-primary {
    margin-top: 18px;
}

/* ─── IMAGE DESIGN ─── */
/* ─── IMAGE GRID FIX ─── */
.who-visual {
    width: 100%;
}

/* GRID */
.img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
}

/* COMMON */
.img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* BIG IMAGE */
.img-big {
    grid-row: span 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* SMALL */
.img-small {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* HOVER */
.img-grid div:hover img {
    transform: scale(1.03);
    transition: 0.3s;
}

/* ─── TABLET ─── */
@media (max-width: 900px) {

    .img-grid {
        grid-template-rows: 160px 160px;
    }
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {

    .img-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .img-big {
        grid-row: auto;
    }

    .img-grid div {
        height: 200px;
    }
}
/* ─── TABLET ─── */
@media (max-width: 900px) {

    .who-section {
        padding: 44px 20px;
    }

    .who-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-visual {
        height: auto;
        display: grid;
        gap: 16px;
    }

    .img-card {
        position: relative;
        width: 100% !important;
        height: 200px !important;
        transform: none !important;
    }
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {

    .img-card {
        height: 180px !important;
    }
}

/* ─── DARK WHO SECTION ─── */
.who-section.dark {
    
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

/* GRID BACKGROUND */
.who-section.dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

/* LAYOUT */
.who-section.dark .who-container {
    position: relative;
    z-index: 1;
}

/* TEXT COLORS */
.who-section.dark .section-label {
    color: var(--accent2); /* orange highlight */
}

.who-section.dark .section-title {
    color: #fff;
}

/* ACCENT WORD (like your hero/services) */
.accent-word {
    color: var(--accent);
    font-style: italic;
}

/* PARAGRAPH */
.who-section.dark .who-text {
    color: rgba(255,255,255,0.7);
}

.who-section.dark .who-text strong {
    color: #fff;
}

/* BUTTON */
.who-section.dark .btn-primary {
    background: #fff;
    color: var(--ink);
    font-weight: 600;   
}
.who-section.dark .btn-primary:hover{
    font-weight: 500;
}

.who-section.dark .btn-primary:hover {
    background: var(--accent);
    color: #fff;
}

/* IMAGE CARDS (match dark UI) */
.who-section.dark .img-card {
    border: 1px solid rgba(255,255,255,0.08);
}

/* OPTIONAL GLOW EFFECT */
.who-section.dark .img-card:hover {
    box-shadow: 0 10px 40px rgba(26,107,85,0.3);
}

/* SECTION */
.services-v2 {
    padding: 100px 60px;
    background: #eef4f1;
}

/* GRID */
.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

/* CARD */
.service-v2-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid var(--border);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* SOFT GRADIENT BACKGROUND */
.service-v2-card::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent), transparent);
    opacity: 0.08;
    top: -20px;
    right: -20px;
}

/* ICON BOX */
.service-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--section-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

/* TEXT */
.service-v2-card h3 {
    color: var(--accent);
    font-size: 0.85rem;
}

.service-v2-card h4 {
    font-size: 1.2rem;
    margin: 6px 0;
}

.service-v2-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* LINK */
.service-v2-card a {
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
}

.service-v2-card a:hover {
    color: var(--accent2);
}

/* HOVER */
.service-v2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-v2-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-v2-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.faq-section {
    padding: 100px 60px;
    background: var(--paper);
}

/* LAYOUT */
.faq-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.faq-visual img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* CONTENT */
.faq-content {
    max-width: 520px;
}

/* FAQ LIST */
.faq-list {
    margin-top: 30px;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

/* QUESTION */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
}

/* ICON */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
}

.faq-item.active .faq-question::after {
    content: '−';
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.9rem;
    transition: 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .faq-section {
        padding: 60px 20px;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-visual {
        order: -1;
    }
}
.hero-slider {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

 
.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
 
.slides {
    position: relative;
    width: 80%;
    max-width: 900px;
}

 
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
 
}

/* visible slide */
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* fading out */
.slide.fade-out {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
 
.slide h1 {
    font-size: 3rem;
    font-family: 'Syne';
}

.slide h1 span {
    color: var(--accent);
}

.slide p {
    margin-top: 10px;
    color: rgba(255,255,255,0.7);
}

.desc {
    margin-top: 14px;
}

 
.actions {
    margin-top: 40px;
    display: flex;
    gap: 12px;
}
.fi-rr-arrow-small-right:before {
    font-size: 18px;
    display: block;
}
.actions a {
    padding: 10px 18px;
    background: #fff;
    color: #000000;
    text-decoration: none;
    border-radius: 6px;
}

.actions .outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
 
@media (max-width: 768px) {
    .slide h1 {
        font-size: 2rem;
    }
}

/* SECTION */
.services-modern {
    padding: 100px 60px;
    background: var(--section-alt) ;
    
    position: relative;
}

/* subtle grid bg */
.services-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.25;
}

/* HEADER */
.services-head {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* GRID */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* CARD */
.service-modern {
    padding: 32px;
    border-radius: 20px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    transition: 0.35s;
    overflow: hidden;
}

/* glow effect */
.service-modern::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent), transparent);
    opacity: 0;
    top: -20px;
    right: -20px;
    transition: 0.4s;
}

/* hover */
.service-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-modern:hover::before {
    opacity: 0.12;
}

/* NUMBER */
.service-number {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* TITLE */
.service-modern h3 {
    font-size: 1.4rem;
    margin: 10px 0 6px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* TEXT */
.service-modern p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* LINK */
.service-modern a {
    margin-top: 18px;
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    position: relative;
}

/* animated underline */
.service-modern a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

.service-modern:hover a::after {
    width: 100%;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .services-modern {
        padding: 60px 20px;
    }

    .services-modern-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
}
/* ICON */
.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(26,107,85,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: 0.3s;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    stroke-width: 1.8;
}

/* ICON HOVER */
.service-modern:hover .service-icon {
    background: var(--accent);
    transform: scale(1.05);
}

.service-modern:hover .service-icon svg {
    stroke: #fff;
}

/* EXTRA CONTENT */
.service-extra {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.service-extra li {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
}

.service-extra li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 50%;
}
/* TOP ROW */
.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* LEFT SIDE (icon + title) */
.service-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON */
.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(26,107,85,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TITLE */
.service-left h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* NUMBER (RIGHT SIDE) */
.service-number {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}
.service-modern:hover .service-number {
    color: var(--accent);
    transform: translateX(3px);
}

/* Image card services */
.services-modern {
    padding: 100px 60px;
    background: linear-gradient(180deg, #eef4f1 0%, #f7f4ee 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 90px;
}

.services-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 17, 23, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 17, 23, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.32;
    pointer-events: none;
}

.services-head {
    max-width: 760px;
    margin-bottom: 46px;
    position: relative;
    z-index: 1;
}

.services-subtitle {
    max-width: 660px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.services-slider-wrap {
    position: relative;
    z-index: 1;
}

.services-modern-grid {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 28px;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.services-modern-grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.services-modern-grid::-webkit-scrollbar {
    display: none;
}

.service-modern {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 52px) / 3);
    min-height: 100%;
    height: 100%;
    padding: 0;
    border-radius: 18px;
    background: #fffaf2;
    border: 1px solid rgba(13, 17, 23, 0.1);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(13, 17, 23, 0.08);
    scroll-snap-align: start;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-modern::before {
    display: none;
}

.service-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 107, 85, 0.35);
    box-shadow: 0 26px 70px rgba(13, 17, 23, 0.14);
}

.service-card-image {
    position: relative;
    width: calc(100% - 28px);
    height: 230px;
    margin: 14px 14px 0;
    border-radius: 14px;
    overflow: hidden;
    background: #d9dfda;
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0) 45%, rgba(13, 17, 23, 0.38) 100%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.45s ease;
}

.service-modern:hover .service-card-image img {
    transform: scale(1.06);
}

.service-top {
    align-items: flex-start;
    gap: 16px;
    margin: 0;
    padding: 24px 24px 0;
}

.service-left {
    gap: 12px;
    min-width: 0;
}

.service-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 8px;
    background: rgba(26, 107, 85, 0.1);
}

.service-modern:hover .service-icon {
    background: var(--accent);
    transform: none;
}

.service-number {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 0.76rem;
    letter-spacing: 0;
}

.service-modern:hover .service-number {
    color: #fff;
    background: var(--accent);
    transform: none;
}

.service-modern h3,
.service-left h3 {
    margin: 5px 0 0;
    font-size: 1.28rem;
    line-height: 1.15;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.service-modern p {
    flex: 1;
    margin: 14px 24px 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.service-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 18px 24px 20px;
    padding: 0;
}

.service-extra li {
    margin: 0;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(26, 107, 85, 0.09);
    color: #245245;
    font-size: 0.78rem;
    line-height: 1.2;
}

.service-extra li::before {
    display: none;
}

.service-modern a {
    align-self: flex-start;
    margin: auto 24px 24px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
}

.service-modern a::after {
    display: none;
}

.service-modern a:hover {
    background: #125240;
}

.services-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(13, 17, 23, 0.18);
    transform: translateY(-50%);
    transition: background 0.25s ease, transform 0.25s ease;
}

.services-slider-btn:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.services-slider-prev {
    left: -23px;
}

.services-slider-next {
    right: -23px;
}

@media (max-width: 1020px) {
    .service-modern {
        flex-basis: calc((100% - 26px) / 2);
    }

    .services-slider-prev {
        left: -12px;
    }

    .services-slider-next {
        right: -12px;
    }
}

@media (max-width: 700px) {
    .services-modern {
        padding: 64px 20px;
    }

    .services-modern-grid {
        gap: 18px;
        padding-bottom: 24px;
    }

    .service-modern {
        flex-basis: 88%;
    }

    .service-card-image {
        height: 210px;
    }

    .services-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .services-slider-prev {
        left: -8px;
    }

    .services-slider-next {
        right: -8px;
    }

    .service-top {
        padding: 20px 20px 0;
    }

    .service-modern p,
    .service-extra,
    .service-modern a {
        margin-left: 20px;
        margin-right: 20px;
    }
}
.slide {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    color: #fff;
    width: 100%;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
    border-radius: 6px;
    font-size:30px
}

.prev { left: 20px; }
.next { right: 20px; }

.slide-btn:hover {
    background: var(--accent);
}
/* PRIMARY BUTTON */
.btn {
    background: var(--accent);
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    border: none;
}

/* HOVER */
.btn:hover {
    background:  var(--accent) ;/* darker accent */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,107,85,0.3);
    color: #fff;
}

/* OUTLINE BUTTON */
.btn.outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
}

/* OUTLINE HOVER */
.btn.outline:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
/* .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: var(--accent);
    opacity: 0;
    filter: blur(14px);
    z-index: -1;
    transition: 0.3s;
} */

.btn:hover::after {
    opacity: 0.4;
}
.why-section::before {
        content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;}
.faq-section::before {
        content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;}
.process-section::before {
          content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}
/* SECTION */
.stats-section {
    padding: 60px 60px;
    background: var(--accent);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle grid like hero */
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* ITEM */
.stat-item {
    text-align: center;
}

/* NUMBER */
.stat-item h2 {
    font-family:  sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
}

/* TEXT */
.stat-item p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

 

/* RESPONSIVE */
@media (max-width: 900px) {
    .stats-section {
        padding: 60px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* HIDE BY DEFAULT (desktop) */
.mobile-points {
    display: none;
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    .mobile-points {
        display: block;
    }

    .mobile-points li {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.7);
        margin-bottom: 6px;
        padding-left: 16px;
        position: relative;
    }

    /* small accent dot */
    .mobile-points li::before {
        content: '';
        width: 5px;
        height: 5px;
        background: var(--accent);
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 8px;
    }
}

.about-section {
    position: relative;
    background: var(--paper);
    padding: 100px 20px;
    overflow: hidden;
}
/* .about-section .container::before{
           content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
} */
.container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* BACKGROUND TEXT */
.bg-text {
    position: absolute;
    left: 14%;
    top: 20%;
    transform: translateY(-50%) rotate(270deg);
    writing-mode: vertical-rl;
    font-size: 60px;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    letter-spacing: 5px;
    pointer-events: none;
}

/* IMAGES */
.about-images {
    position: relative;
}
.img-large{
    position: absolute;
    bottom: -170px;
}
.img-large img {
    width: 100%;
    border-radius: 20px;
    display: block;
     
}

.img-small {
    position: absolute;
    top: 0px;
    right: -40px;
    width: 70%;
}

.img-small img {
    width: 100%;
    border-radius: 16px;
    border: 6px solid var(--paper);
}

/* CONTENT */
.tag {
    color: var(--accent2);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 38px;
    color: var(--ink);
    margin: 10px 0 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    color: var(--ink);
}

.features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* BUTTON */
.btn {
 
    margin-top: 15px;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: var(--accent2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bg-text {
        display: none;
    }

    .img-small {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
    
}

@media (max-width: 600px) {
    .about-content h2 {
        font-size: 28px;
    }
.img-small{
        display: none;
    }
    .img-large {
       position: initial;
         
    }
    .about-section {
        padding: 70px 15px;
    }
}

/* Final responsive fixes */
html {
    scroll-padding-top: 90px;
}

img,
svg {
    max-width: 100%;
}

@media (max-width: 900px) {
    nav {
        padding: 12px 18px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mob-menu-btn {
        display: flex !important;
    }

    .mobile-nav {
        display: block !important;
    }

    .hero-slider {
        height: auto;
        min-height: 100svh;
        padding: 96px 20px 64px;
        align-items: center;
    }

    .slides {
        width: min(100%, 760px);
    }

    .slide h1 {
        font-size: clamp(2.1rem, 8vw, 3.4rem);
        line-height: 1.08;
    }

    .slide p,
    .desc {
        max-width: 620px;
        line-height: 1.65;
    }

    .actions {
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .services-modern {
        padding: 72px 20px;
    }

    .service-modern {
        flex-basis: calc((100% - 26px) / 2);
    }

    .about-section {
        padding: 76px 20px;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-images {
        display: grid;
        gap: 18px;
    }

    .img-large,
    .img-small {
        position: static;
        width: 100%;
    }

    .img-small {
        margin-top: 0;
    }
}

@media (max-width: 700px) {
    .services-modern {
        padding: 64px 16px;
    }

    .services-head {
        margin-bottom: 30px;
    }

    .services-subtitle {
        font-size: 0.94rem;
    }

    .services-modern-grid {
        gap: 16px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .service-modern {
        flex-basis: 86%;
    }

    .service-card-image {
        height: 190px;
    }

    .service-top {
        gap: 12px;
        padding: 18px 18px 0;
    }

    .service-modern h3,
    .service-left h3 {
        font-size: 1.08rem;
    }

    .service-modern p,
    .service-extra,
    .service-modern a {
        margin-left: 18px;
        margin-right: 18px;
    }

    .services-slider-btn {
        top: calc(50% + 22px);
        width: 38px;
        height: 38px;
    }

    .services-slider-prev {
        left: 2px;
    }

    .services-slider-next {
        right: 2px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        padding: 88px 16px 56px;
    }

    .slide h1 {
        font-size: clamp(1.9rem, 10vw, 2.55rem);
    }

    .actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .actions a,
    .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .slide-btn {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .prev {
        left: 16px;
    }

    .next {
        right: 16px;
    }

    .stats-section {
        padding: 48px 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .stat-item h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: clamp(1.65rem, 8vw, 2rem);
    }
}

@media (max-width: 420px) {
    .nav-logo {
        font-size: 1rem;
    }

    .nav-logo-icon {
        width: 28px;
        height: 28px;
    }

    .service-modern {
        flex-basis: 92%;
    }

    .service-card-image {
        height: 170px;
    }

    .service-number {
        min-width: 36px;
        height: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Site-wide font normalization */
body,
button,
input,
textarea,
select,
a,
p,
span,
div,
li,
label,
small,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.slide h1,
.service-modern h3,
.service-left h3,
.nav-logo,
.nav-links a,
.nav-cta,
.btn,
.btn-primary,
.btn-outline {
    font-family: var(--site-font) !important;
}
/* ==========================================
   ABOUT HERO SECTION
========================================== */

.about-hero {
    position: relative;
    overflow: hidden;
    background: #081018;
    /* padding: 130px 0 90px; */
}

/* GRID BACKGROUND */

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.about-hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    min-height: 700px;
}

/* ==========================================
   LEFT CONTENT
========================================== */

.about-hero-content {
    position: relative;
    z-index: 5;
    padding-right: 40px;
    padding-left: 50px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #e8a830;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.hero-subtitle span {
    width: 45px;
    height: 2px;
    background: #e8a830;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 4vw, 5.5rem);
    line-height: 1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 35px;
    letter-spacing: -3px;
}

.about-hero-content h1 span {
    color: #1a6b55;
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255,255,255,0.72);
    max-width: 680px;
    margin-bottom: 45px;
}

/* ==========================================
   BUTTONS
========================================== */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 34px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.4s ease;
}

.primary-btn {
    background: #1a6b55;
    color: #fff;
}

.primary-btn:hover {
    background: #145440;
    transform: translateY(-4px);
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

/* ==========================================
   RIGHT IMAGE
========================================== */

.about-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            #081018 2%,
            rgba(8,16,24,0.95) 12%,
            rgba(8,16,24,0.5) 30%,
            rgba(8,16,24,0.1) 60%,
            rgba(8,16,24,0) 100%);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {

    .about-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        width: 100%;
        opacity: 0.3;
    }

    .about-hero-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {

    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero-wrapper {
        min-height: auto;
    }

    .about-hero-content h1 {
        letter-spacing: -1px;
    }

    .about-hero-content p {
        font-size: 1rem;
        line-height: 1.9;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .about-hero-image {
        opacity: 0.2;
    }
}

/* Final site-wide font override */
body,
button,
input,
textarea,
select,
a,
p,
span,
div,
li,
label,
small,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.slide h1,
.service-modern h3,
.service-left h3,
.nav-logo,
.nav-links a,
.nav-cta,
.btn,
.btn-primary,
.btn-outline,
.hero-btn {
    font-family: var(--site-font) !important;
}

/* Final section spacing normalization */
section,
.clients-section,
.services-section,
.services-modern,
.why-section,
.sectors-section,
.process-section,
.testimonial-section,
.cta-section,
.contact-section,
.who-section,
.services-v2,
.faq-section,
.about-section
 {
    padding: var(--section-padding-y) var(--section-padding-x) !important;
}

.hero-slider {
    padding-left: var(--section-padding-x) !important;
    padding-right: var(--section-padding-x) !important;
}

footer {
    padding: 56px var(--section-padding-x) 32px !important;
}

@media (max-width: 900px) {
    section,
    .clients-section,
    .services-section,
    .services-modern,
    .why-section,
    .sectors-section,
    .process-section,
    .testimonial-section,
    .cta-section,
    .contact-section,
    .who-section,
    .services-v2,
    .faq-section,
    .stats-section,
    .about-section,
    .about-hero {
        padding: var(--section-padding-tablet-y) var(--section-padding-tablet-x) !important;
    }

    .hero-slider {
        padding: 96px var(--section-padding-tablet-x) var(--section-padding-tablet-y) !important;
    }

    footer {
        padding: 44px var(--section-padding-tablet-x) 28px !important;
    }
}

@media (max-width: 600px) {
    section,
    .clients-section,
    .services-section,
    .services-modern,
    .why-section,
    .sectors-section,
    .process-section,
    .testimonial-section,
    .cta-section,
    .contact-section,
    .who-section,
    .services-v2,
    .faq-section,
    .stats-section,
    .about-section,
    .about-hero {
        padding: var(--section-padding-mobile-y) var(--section-padding-mobile-x) !important;
    }

    .hero-slider {
        padding: 88px var(--section-padding-mobile-x) var(--section-padding-mobile-y) !important;
    }

    footer {
        padding: 40px var(--section-padding-mobile-x) 24px !important;
    }
}

/* Redesigned why section */
.why-section {
    background: linear-gradient(180deg, #f7f4ee 0%, #eef4f1 100%) !important;
    overflow: hidden;
}

.why-section > .section-label,
.why-section > .section-title {
    position: relative;
    z-index: 2;
}

.why-section > .section-label {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.why-section > .section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
    opacity: 0.3;
}

.why-section > .section-title {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(2rem, 3vw, 200px);
    line-height: 1.05;
}

.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 52px;
}

.why-visual {
    position: sticky;
    top: 110px;
    height: auto;
    min-height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-self: start;
}

.why-card,
.why-card.card-a,
.why-card.card-b,
.why-card.card-c {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding: 26px;
    border-radius: 10px;
    background: rgba(255, 250, 242, 0.92);
    border: 1px solid rgba(13, 17, 23, 0.1);
    box-shadow: 0 18px 45px rgba(13, 17, 23, 0.08);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--accent);
}

.why-card-title {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.why-card-val {
    color: var(--accent);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1;
    letter-spacing: 0;
}

.why-card-sub {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.why-bar {
    height: 7px;
    margin-top: 22px;
    background: rgba(13, 17, 23, 0.08);
}

.why-bar-fill {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.why-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.why-point,
.why-point:last-child {
    min-height: 230px;
    display: flex;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(13, 17, 23, 0.1);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(13, 17, 23, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-point:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 107, 85, 0.28);
    box-shadow: 0 24px 60px rgba(13, 17, 23, 0.12);
}

.why-point-num {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 107, 85, 0.1);
    color: var(--accent);
    opacity: 1;
    font-size: 0.88rem;
}

.why-point-title {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1.25;
}

.why-point-desc {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.75;
    font-weight: 400;
}

@media (max-width: 1020px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-visual {
        position: relative;
        top: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .why-card {
        padding: 22px;
    }
}

@media (max-width: 760px) {
    .why-section > .section-label {
        justify-content: flex-start;
    }

    .why-section > .section-label::before {
        display: none;
    }

    .why-section > .section-title {
        margin: 0;
        text-align: left;
    }

    .why-grid {
        gap: 22px;
        margin-top: 34px;
    }

    .why-visual,
    .why-points {
        grid-template-columns: 1fr;
    }

    .why-point,
    .why-point:last-child {
        min-height: auto;
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .why-point {
        flex-direction: column;
    }
}

/* About page hero redesign */
.about-hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: #081018 !important;
    padding-top: 65px !important;
    padding-bottom: 55px !important;
}

.about-hero-wrapper {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    min-height: 620px;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 56px;
}

.about-hero-content {
    padding: 0;
}

.about-hero-content h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.about-hero-content p {
    max-width: 760px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.9;
}

.about-hero-content strong {
    color: #fff;
    font-weight: 800;
}

.about-hero-image {
    position: relative;
    width: 100%;
    height: min(620px, 72vh);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.about-hero-image img {
    display: block;
}

.about-hero .image-overlay {
    background:
        linear-gradient(180deg, rgba(8, 16, 24, 0.04) 0%, rgba(8, 16, 24, 0.42) 100%),
        linear-gradient(90deg, rgba(8, 16, 24, 0.5) 0%, rgba(8, 16, 24, 0) 45%);
}

@media (max-width: 1020px) {
    .about-hero {
        min-height: auto;
        padding-top: 104px !important;
    }

    .about-hero-wrapper {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-hero-image {
        position: relative;
        width: 100%;
        height: 420px;
        opacity: 1;
        order: -1;
    }
}

@media (max-width: 700px) {
    .about-hero {
        padding-top: 92px !important;
        padding-bottom: 56px !important;
    }

    .about-hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .about-hero-content p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .about-hero-image {
        height: 300px;
    }

    .hero-subtitle {
        margin-bottom: 22px;
        font-size: 0.8rem;
    }
}

/* Inner about page layout */
.inner-page {
    background: var(--paper);
    color: var(--ink);
}

.inner-header {
    padding-top: 128px !important;
    padding-bottom: 54px !important;
    background:
        linear-gradient(rgba(13, 17, 23, 0.55), rgba(13, 17, 23, 0.64)),
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        url("../img/innerpage.jpg");
    background-size: auto, 56px 56px, 56px 56px, cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(244, 241, 235, 0.14);
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.inner-kicker {
    width: fit-content;
    margin: 18px auto 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.inner-kicker i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

.inner-kicker i::before {
    display: block;
    line-height: 1;
}

.inner-header h1 {
    max-width: 980px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: 0;
}

.about-inner-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: start;
    background: var(--paper);
}

.about-inner-media {
    position: sticky;
    top: 110px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 22px 60px rgba(13, 17, 23, 0.12);
}

.about-inner-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-inner-content {
    max-width: 780px;
}

.about-inner-content .section-label {
    margin-bottom: 22px;
}

.about-inner-content p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.9;
}

.about-inner-content strong {
    color: var(--ink);
    font-weight: 800;
}

.about-inner-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 36px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--border);
}

.about-inner-stats div {
    min-height: 126px;
    padding: 22px;
    background: #fffaf2;
}

.about-inner-stats span {
    display: block;
    color: var(--accent);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.1;
}

.about-inner-stats small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

@media (max-width: 960px) {
    .about-inner-section {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-inner-media {
        position: relative;
        top: auto;
    }

    .about-inner-media img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 640px) {
    .inner-header {
        padding-top: 104px !important;
        padding-bottom: 42px !important;
    }

    .inner-header h1 {
        font-size: 32px;
    }

    .about-inner-content p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .about-inner-stats {
        grid-template-columns: 1fr;
    }

    .about-inner-stats div {
        min-height: auto;
    }
}

/* Industries grid section */
.industries-section {
    background: #eef0f4;
}

.industries-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.industries-heading h2 {
    margin: 0 0 18px;
    color: #0d1117;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
}

.industries-heading p {
    margin: 0 auto;
    max-width: 660px;
    color: #20242a;
    font-size: 1rem;
    line-height: 1.55;
}

.industries-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 18px;
}

.industry-card {
    min-height: 128px;
    padding: 22px 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(13, 17, 23, 0.08);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(13, 17, 23, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(26, 107, 85, 0.25);
    box-shadow: 0 16px 34px rgba(13, 17, 23, 0.14);
}

.industry-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(26, 107, 85, 0.08), rgba(232, 168, 48, 0.14));
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 5px 8px rgba(13, 17, 23, 0.12));
}

.industry-card:nth-child(2n) .industry-icon {
    background: linear-gradient(145deg, rgba(232, 168, 48, 0.12), rgba(26, 107, 85, 0.08));
}

.industry-card:nth-child(3n) .industry-icon {
    background: linear-gradient(145deg, rgba(64, 145, 210, 0.12), rgba(26, 107, 85, 0.08));
}

.industry-card h3 {
    margin: 0;
    color: #090b0f;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
}

@media (max-width: 1180px) {
    .industries-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .industries-heading {
        margin-bottom: 30px;
    }

    .industries-heading p {
        font-size: 0.94rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .industry-card {
        min-height: 118px;
        padding: 18px 12px;
    }
}

@media (max-width: 420px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* GIS service page */
.gis-page {
    background: var(--paper);
}

.gis-hero {
    min-height: 720px;
    padding: 150px 60px 82px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 56px;
    align-items: center;
    background:
        linear-gradient(rgba(13, 17, 23, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 17, 23, 0.06) 1px, transparent 1px),
        linear-gradient(135deg, #eef4f1 0%, #f7f4ee 58%, #fffaf2 100%);
    background-size: 64px 64px, 64px 64px, auto;
    overflow: hidden;
}

.gis-hero-content {
    max-width: 760px;
}

.gis-hero h1 {
    margin: 0 0 24px;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: 0;
}

.gis-hero p {
    max-width: 690px;
    margin: 0 0 18px;
    color: #30352f;
    font-size: 1.12rem;
    line-height: 1.75;
}

.gis-hero-note {
    color: var(--accent) !important;
    font-weight: 700;
}

.gis-hero .btn {
    margin-top: 16px;
}

.gis-hero-panel {
    position: relative;
    min-height: 510px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(13, 17, 23, 0.12);
    box-shadow: 0 28px 80px rgba(13, 17, 23, 0.16);
}

.gis-hero-panel img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    display: block;
    object-fit: cover;
}

.gis-hero-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.05), rgba(13, 17, 23, 0.56));
}

.gis-hero-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.92);
    backdrop-filter: blur(10px);
}

.gis-hero-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gis-hero-card strong {
    display: block;
    color: var(--ink);
    font-size: 1.16rem;
    line-height: 1.35;
}

.gis-trust-section {
    padding: 0 60px;
    background: var(--paper);
}

.gis-trust-grid {
    max-width: 1180px;
    margin: -46px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--border);
    box-shadow: 0 24px 70px rgba(13, 17, 23, 0.12);
}

.gis-trust-card {
    min-height: 142px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fffaf2;
}

.gis-trust-card strong {
    color: var(--accent);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
}

.gis-trust-card span {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.gis-about-section {
    padding: 110px 60px;
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 58px;
    align-items: center;
    background: var(--paper);
}

.gis-about-media {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 22px 60px rgba(13, 17, 23, 0.12);
}

.gis-about-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    object-fit: cover;
}

.gis-about-content {
    max-width: 790px;
}

.gis-about-content h2,
.gis-services-head h2 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 4vw, 2%);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
}

.gis-about-content p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.9;
}

.gis-services-section {
    padding: 105px 60px;
    background: linear-gradient(180deg, #eef4f1 0%, #f7f4ee 100%);
    overflow: hidden;
}

.gis-services-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.gis-services-head .section-label {
    justify-content: center;
}

.gis-services-head p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.gis-services-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gis-service-card {
    min-height: 100%;
    background: #fffaf2;
    border: 1px solid rgba(13, 17, 23, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(13, 17, 23, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gis-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 107, 85, 0.32);
    box-shadow: 0 24px 62px rgba(13, 17, 23, 0.13);
}

.gis-service-card img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    background: #d9dfda;
}

.gis-service-card div {
    padding: 24px;
}

.gis-service-card span {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.gis-service-card h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 1.22rem;
    line-height: 1.24;
    font-weight: 800;
    text-align: center;
}

.gis-service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.68;
}

@media (max-width: 1080px) {
    .gis-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .gis-hero-panel {
        min-height: 420px;
    }

    .gis-hero-panel img {
        min-height: 420px;
    }

    .gis-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .gis-hero,
    .gis-about-section,
    .gis-services-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gis-trust-section {
        padding: 0 20px;
    }

    .gis-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gis-about-section {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .gis-about-media img {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 620px) {
    .gis-hero {
        padding-top: 118px;
        padding-bottom: 58px;
    }

    .gis-hero p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .gis-hero-panel,
    .gis-hero-panel img {
        min-height: 330px;
    }

    .gis-hero-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 18px;
    }

    .gis-trust-grid,
    .gis-services-grid {
        grid-template-columns: 1fr;
    }

    .gis-trust-card {
        min-height: 112px;
    }

    .gis-services-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .gis-service-card img {
        height: 210px;
    }
}
.gis-about-section::before{
        content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}
.gis-services-section::before{
        content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(13, 17, 23, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 17, 23, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.32;
    pointer-events: none;
}
.industries-section::before{
        content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(13 17 23 / 8%) 1px, transparent 1px), linear-gradient(90deg, rgb(13 17 23 / 10%) 1px, #00000000 1px);
    background-size: 72px 72px;
    opacity: 0.32;
    pointer-events: none;
}

/* LiDAR page alignment fixes */
.lidar-page .container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    display: block;
}

.lidar-header {
    min-height: 640px;
    padding: 150px 60px 76px !important;
    display: flex;
    align-items: center;
    text-align: left;
    overflow: hidden;
}

.lidar-header .container {
    position: relative;
    z-index: 1;
}

.lidar-header .inner-header-content {
    max-width: 780px;
}

.lidar-header h1 {
    max-width: 780px;
    margin: 0 0 24px;
    font-size: clamp(2.7rem, 5.6vw, 5.4rem);
    line-height: 0.98;
}

.lidar-header .section-label {
    justify-content: flex-start;
}

.lidar-header .banner-description {
    max-width: 700px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.75;
}

.lidar-header .ai-line {
    max-width: 680px;
    margin: 0 0 28px;
    color: var(--accent2);
    font-weight: 700;
    line-height: 1.65;
}

.lidar-header .hero-actions {
    justify-content: flex-start;
}

.lidar-header .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 26px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lidar-header .theme-btn:hover {
    background: #125240;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26, 107, 85, 0.28);
}

.lidar-header .inner-kicker {
    margin: 28px 0 0;
}

.lidar-page .gis-trust-section,
.lidar-page .gis-about-section,
.lidar-page .gis-services-section {
    display: block;
}

.lidar-page .gis-trust-grid {
    width: 100%;
}

.lidar-page .gis-about-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 58px;
    align-items: center;
}

.lidar-page .gis-services-head,
.lidar-page .gis-services-grid {
    position: relative;
    z-index: 1;
}

.lidar-page .gis-service-card {
    display: flex;
    flex-direction: column;
}

.lidar-page .gis-service-card div {
    flex: 1;
}

.lidar-page .cta-actions {
    flex-wrap: wrap;
}

@media (max-width: 880px) {
    .lidar-header {
        min-height: auto;
        padding: 118px 20px 58px !important;
    }

    .lidar-page .gis-about-wrapper {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 620px) {
    .lidar-header h1 {
        font-size: clamp(2.25rem, 12vw, 3.2rem);
    }

    .lidar-header .banner-description {
        font-size: 0.98rem;
    }
}

/* Contact page */
.contact-page {
    background: var(--paper);
}

.contact-hero {
    min-height: 690px;
    padding: 150px 60px 84px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 58px;
    align-items: center;
    background:
        linear-gradient(rgba(13, 17, 23, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 17, 23, 0.06) 1px, transparent 1px),
        linear-gradient(135deg, #eef4f1 0%, #f7f4ee 56%, #fffaf2 100%);
    background-size: 64px 64px, 64px 64px, auto;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 780px;
}

.contact-hero h1 {
    margin: 0 0 24px;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
}

.contact-hero p {
    max-width: 710px;
    margin: 0;
    color: #30352f;
    font-size: 1.1rem;
    line-height: 1.78;
}

.contact-hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.contact-hero-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.contact-hero-link:hover {
    color: #125240;
}

.contact-hero-panel {
    position: relative;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(13, 17, 23, 0.12);
    background: #07120f;
    box-shadow: 0 28px 80px rgba(13, 17, 23, 0.16);
}

.contact-panel-map {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 28% 30%, rgba(232, 168, 48, 0.28), transparent 28%),
        radial-gradient(circle at 70% 58%, rgba(26, 107, 85, 0.55), transparent 32%),
        linear-gradient(135deg, #0d1117 0%, #17392f 100%);
    background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

.contact-panel-map::before {
    content: '';
    position: absolute;
    left: 16%;
    right: 14%;
    top: 48%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    transform: rotate(-16deg);
}

.map-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent2);
    border: 4px solid #fffaf2;
    box-shadow: 0 0 0 12px rgba(232, 168, 48, 0.15);
}

.pin-a {
    left: 24%;
    top: 34%;
}

.pin-b {
    right: 24%;
    top: 53%;
}

.pin-c {
    left: 48%;
    bottom: 26%;
}

.contact-panel-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.93);
    backdrop-filter: blur(10px);
}

.contact-panel-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-panel-card strong {
    display: block;
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.35;
}

.contact-details-section {
    padding: 0 60px; 
    background: var(--paper);
}

.contact-details-grid {
    max-width: 1220px;
    margin: -46px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--border);
    box-shadow: 0 24px 70px rgba(13, 17, 23, 0.12);
}

.contact-info-card {
    min-height: 230px;
    padding: 28px 22px;
    background: #fffaf2;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(26, 107, 85, 0.1);
    color: var(--accent);
    font-size: 1.25rem;
}

.contact-info-card span {
    display: block;
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-info-card strong,
.contact-info-card strong a {
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.38;
    text-decoration: none;
}

.contact-info-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.58;
}

.contact-main-section {
    padding: 110px 60px;
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 58px;
    align-items: start;
    background: var(--paper);
}

.contact-main-copy {
    position: sticky;
    top: 110px;
}

.contact-main-copy h2,
.contact-process-head h2 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
}

.contact-main-copy p {
    max-width: 560px;
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 560px;
}

.contact-service-list span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(26, 107, 85, 0.09);
    color: #245245;
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-page-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(13, 17, 23, 0.1);
    border-radius: 10px;
    background: #fffaf2;
    box-shadow: 0 20px 56px rgba(13, 17, 23, 0.1);
}

.contact-page-form .form-submit {
    margin-top: 4px;
}

.contact-process-section {
    padding: 95px 60px;
    background: linear-gradient(180deg, #eef4f1 0%, #f7f4ee 100%);
}

.contact-process-head {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.contact-process-head .section-label {
    justify-content: center;
}

.contact-process-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.contact-process-card {
    padding: 28px;
    border: 1px solid rgba(13, 17, 23, 0.1);
    border-radius: 8px;
    background: #fffaf2;
    box-shadow: 0 16px 42px rgba(13, 17, 23, 0.08);
}

.contact-process-card span {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.contact-process-card h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
    font-weight: 800;
}

.contact-process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.68;
}

@media (max-width: 1020px) {
    .contact-hero,
    .contact-main-section {
        grid-template-columns: 1fr;
    }

    .contact-main-copy {
        position: relative;
        top: auto;
    }

    .contact-details-grid,
    .contact-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .contact-hero,
    .contact-main-section,
    .contact-process-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-hero {
        min-height: auto;
        padding-top: 118px;
        padding-bottom: 58px;
    }

    .contact-hero-panel {
        min-height: 350px;
    }

    .contact-details-section {
        padding: 0 20px;
    }

    .contact-details-grid,
    .contact-process-grid,
    .contact-page-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: auto;
    }

    .contact-main-section,
    .contact-process-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .contact-page-form {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.2rem);
    }

    .contact-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Career page */
.career-page {
    background: var(--paper);
}

.career-hero {
    min-height: 700px;
    padding: 150px 60px 84px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 58px;
    align-items: center;
    background:
        linear-gradient(rgba(13, 17, 23, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 17, 23, 0.06) 1px, transparent 1px),
        linear-gradient(135deg, #eef4f1 0%, #f7f4ee 58%, #fffaf2 100%);
    background-size: 64px 64px, 64px 64px, auto;
    overflow: hidden;
}

.career-hero-content {
    max-width: 820px;
}

.career-hero h1 {
    margin: 0 0 24px;
    font-size: clamp(2.55rem, 5.6vw, 5.35rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
}

.career-hero p {
    max-width: 720px;
    margin: 0;
    color: #30352f;
    font-size: 1.08rem;
    line-height: 1.78;
}

.career-hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.career-hero-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.career-hero-panel {
    position: relative;
    min-height: 510px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(13, 17, 23, 0.12);
    box-shadow: 0 28px 80px rgba(13, 17, 23, 0.16);
}

.career-hero-panel img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    display: block;
    object-fit: cover;
}

.career-hero-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0), rgba(13, 17, 23, 0.58));
}

.career-hero-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.93);
    backdrop-filter: blur(10px);
}

.career-hero-card span,
.career-mail-card span,
.career-role-card span {
    display: block;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.career-hero-card span {
    margin-bottom: 8px;
}

.career-hero-card strong {
    display: block;
    color: var(--ink);
    font-size: 1.16rem;
    line-height: 1.35;
}

.career-stats-section {
    padding: 0 60px;
    background: var(--paper);
}

.career-stats-grid {
    max-width: 1220px;
    margin: -46px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--border);
    box-shadow: 0 24px 70px rgba(13, 17, 23, 0.12);
}

.career-stat-card {
    min-height: 142px;
    padding: 28px 22px;
    background: #fffaf2;
}

.career-stat-card strong {
    display: block;
    color: var(--accent);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
}

.career-stat-card span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.career-about-section,
.career-apply-section {
    padding: 110px 60px;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 58px;
    align-items: start;
    background: var(--paper);
}

.career-about-copy,
.career-apply-copy {
    position: sticky;
    top: 110px;
}

.career-about-copy h2,
.career-section-head h2,
.career-apply-copy h2 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
}

.career-about-copy p,
.career-section-head p,
.career-apply-copy p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.career-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.career-value-card,
.career-role-card,
.career-apply-form,
.career-mail-card {
    border: 1px solid rgba(13, 17, 23, 0.1);
    border-radius: 8px;
    background: #fffaf2;
    box-shadow: 0 16px 42px rgba(13, 17, 23, 0.08);
}

.career-value-card {
    min-height: 230px;
    padding: 28px;
}

.career-value-card i {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(26, 107, 85, 0.1);
    color: var(--accent);
    font-size: 1.25rem;
}

.career-value-card h3,
.career-role-card h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
}

.career-value-card p,
.career-role-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.68;
}

.career-roles-section {
    padding: 105px 60px;
    background: linear-gradient(180deg, #eef4f1 0%, #f7f4ee 100%);
}

.career-section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.career-section-head .section-label {
    justify-content: center;
}

.career-roles-list {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.career-role-card {
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.career-role-card span {
    margin-bottom: 10px;
}

.career-role-card a {
    flex: 0 0 auto;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.career-mail-card {
    max-width: 420px;
    margin-top: 28px;
    padding: 22px;
}

.career-mail-card span {
    margin-bottom: 8px;
}

.career-mail-card a {
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.career-apply-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1020px) {
    .career-hero,
    .career-about-section,
    .career-apply-section {
        grid-template-columns: 1fr;
    }

    .career-about-copy,
    .career-apply-copy {
        position: relative;
        top: auto;
    }

    .career-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .career-hero,
    .career-about-section,
    .career-roles-section,
    .career-apply-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .career-hero {
        min-height: auto;
        padding-top: 118px;
        padding-bottom: 58px;
    }

    .career-hero-panel,
    .career-hero-panel img {
        min-height: 340px;
    }

    .career-stats-section {
        padding: 0 20px;
    }

    .career-stats-grid,
    .career-values-grid,
    .career-apply-form .form-row {
        grid-template-columns: 1fr;
    }

    .career-about-section,
    .career-roles-section,
    .career-apply-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .career-role-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-apply-form {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .career-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.15rem);
    }

    .career-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Site-wide typography normalization */
:where(body, body *):not(i):not([class^="fi"]):not([class*=" fi-"]) {
    font-family: var(--site-font) !important;
    font-style: normal !important;
   
}
 .gis-trust-card   {
    
    text-align: center;
}

.accent-word,
.hero-title .accent-word {
    font-style: normal !important;
}

/* Quote popup */
.quote-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.quote-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quote-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, 0.72);
    backdrop-filter: blur(8px);
}

.quote-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: min(86vh, 820px);
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    overflow: auto;
    border-radius: 10px;
    background: #fffaf2;
    border: 1px solid rgba(244, 241, 235, 0.18);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.25s ease;
}

.quote-popup.active .quote-popup-dialog {
    transform: translateY(0) scale(1);
}

.quote-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.quote-popup-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.quote-popup-info {
    position: relative;
    padding: 44px 34px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(135deg, #0d1117 0%, #17392f 100%);
    background-size: 48px 48px, 48px 48px, auto;
    color: #fff;
}

.quote-popup-info .section-label {
    color: var(--accent2);
}

.quote-popup-info h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
}

.inner-header .section-label {
    justify-content: center;
    color: var(--accent2);
}

.quote-popup-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.75;
}

.quote-popup-points {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.quote-popup-points span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.5;
}

.quote-popup-points i {
    color: var(--accent2);
    font-size: 1rem;
    line-height: 1;
    margin-top: 2px;
}

.quote-popup-form {
    padding: 44px 34px 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-popup-form .form-textarea {
    min-height: 110px;
}

.quote-popup-form .form-submit {
    margin-top: 4px;
}

body.quote-popup-open {
    overflow: hidden;
}

@media (max-width: 860px) {
    .quote-popup-dialog {
        grid-template-columns: 1fr;
    }

    .quote-popup-info,
    .quote-popup-form {
        padding: 34px 24px;
    }
}

@media (max-width: 560px) {
    .quote-popup {
        padding: 12px;
        align-items: flex-start;
    }

    .quote-popup-dialog {
        max-height: calc(100vh - 24px);
    }

    .quote-popup-form .form-row {
        grid-template-columns: 1fr;
    }

.quote-popup-close {
    top: 10px;
    right: 10px;
}
}

.inner-header h1 {
    color: #fff;
}
