    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --bg: #f0f5fe;
        --surface: #0d2d6b;
        --surface2: #1a4fa0;
        --border: rgba(255, 255, 255, 0.07);
        --border2: rgba(255, 255, 255, 0.12);
        --text: #dde1ed;
        --text-dark: #000000;
        --muted: #5d6480;
        --accent: #4f8ef7;
        --accent-lt: rgba(79, 142, 247, 0.1);
        --accent-md: rgba(79, 142, 247, 0.22);
        --accent-glow: rgba(79, 142, 247, 0.3);
        --teal: #2dd4c0;
        --teal-lt: rgba(45, 212, 192, 0.08);
        --amber: #f59e0b;
        --amber-lt: rgba(245, 158, 11, 0.08);
    }

    body {

        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
    }

    /* ── HERO ── */
    .hero {
        min-height: 50vh;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    /* Animated grid */
    .hero-grid {
        position: absolute;
        inset: 0;
        z-index: 0;
        background:
            linear-gradient(rgba(8, 33, 61, 0.13), rgba(26, 79, 160, 0.103)),
            url(/assete/images/page-banner/gis-survey.webp);
        background-size: cover;
        background-position: center;
        /* animation: gridShift 20s linear infinite; */
    }

    @keyframes gridShift {
        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 72px 72px;
        }
    }

    .hero-glow-1 {
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(79, 142, 247, 0.12) 0%, transparent 65%);
        top: -100px;
        left: -100px;
        pointer-events: none;
        z-index: 0;
    }

    .hero-glow-2 {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(45, 212, 192, 0.08) 0%, transparent 65%);
        bottom: 100px;
        right: -100px;
        pointer-events: none;
        z-index: 0;
    }

    /* Floating coordinate dots */
    .hero-dots-layer {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }

    .coord-dot {
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--accent);
        opacity: 0;
        animation: dotPulse 4s ease-in-out infinite;
    }

    @keyframes dotPulse {

        0%,
        100% {
            opacity: 0;
            transform: scale(1);
        }

        50% {
            opacity: 0.6;
            transform: scale(2);
        }
    }

    .hero-content {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 0 72px;
        align-items: end;
    }

    .hero-left {
        padding-bottom: 0;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--accent-lt);
        border: 1px solid var(--accent-md);
        border-radius: 4px;
        padding: 5px 12px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 32px;
    }

    .hero h1 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 700;
        line-height: 1.05;
        color: #ffffff;
        margin-bottom: 32px;
    }

    .hero h1 .italic {
        font-style: italic;
        color: #ffffff;
    }

    .hero h1 .small-label {
        display: block;
        font-family: 'Syne', sans-serif;
        font-size: 13px;
        font-weight: 500;
        font-style: normal;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 1.8;
        color: #ffffff;
        max-width: 480px;
        font-weight: 300;
        margin-bottom: 40px;
    }

    .hero-desc strong {
        color: #ffffff;
        font-weight: 500;
    }

    .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .btn-accent {
        background: var(--accent);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 14px 28px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.25s;
    }

    .btn-accent:hover {
        background: #3a7ae8;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px var(--accent-glow);
    }

    .btn-ghost {
        border: 1px solid var(--border2);
        color: #ffffff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 14px 24px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.25s;
        background: #2d659a;
    }

    .btn-ghost:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    /* Hero right: tech stack visual */
    .hero-right-panel {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 20px 20px 0 0;
        padding: 36px 32px;
        position: relative;
        overflow: hidden;
    }

    .hero-right-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--teal));
    }

    .hrp-label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #ffffff;
        margin-bottom: 24px;
    }

    .tech-stack {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tech-row {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.568);
        border: 1px solid var(--border);
        transition: all 0.2s;
        width: 410px;
    }

    .tech-row:hover {
        background: var(--accent-lt);
        border-color: var(--accent-md);
    }

    .tech-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    .tech-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        flex: 1;
    }

    .tech-tag {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #000000;
        background: var(--accent-lt);
        border-radius: 4px;
        padding: 3px 8px;
    }

    .inner {
        max-width: 1280px;
        margin: auto;
    }

    /* Stats bar */
    .hero-stats-bar {
        position: relative;
        z-index: 1;
        background: rgba(255, 255, 255, 0.03);
        border-top: 1px solid var(--border);
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        margin-top: 60px;
    }

    .hstat {
        padding: 28px 32px;
        border-right: 1px solid var(--border);
    }

    .hstat:last-child {
        border-right: none;
    }

    .hstat-n {
        font-family: 'Syne', sans-serif;
        font-size: 28px;
        color: var(--accent);
        line-height: 1;
        margin-bottom: 4px;
    }

    .hstat-l {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
    }

    /* ── SECTION BASE ── */
    section {
        padding: 100px 72px;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 18px;
    }

    .eyebrow::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--accent);
    }

    .sh {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 400;
        line-height: 1.1;
        color: #fff;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
    }

    .sh em {
        font-style: italic;
        color: var(--accent);
    }

    .shs {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 400;
        line-height: 1.1;
        color: #000000;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
    }

    .shs em {
        font-style: italic;
        color: var(--accent);
    }

    .sp {
        font-size: 16px;
        line-height: 1.85;
        color: var(--muted);
        max-width: 600px;
        font-weight: 300;
    }

    /* ── OVERVIEW ── */
    #overview {
        background: #fff;
    }

    .overview-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 80px;
        align-items: center;
        margin-top: 56px;
    }

    .overview-text p {
        font-size: 16px;
        line-height: 1.9;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 24px;
    }

    .overview-text p strong {
        color: #000;
        font-weight: 500;
    }

    .overview-outcomes {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 36px;
    }

    .outcome-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 18px 20px;
        border-radius: 12px;
        background: var(--bg);
        border: 1px solid var(--border);
        transition: all 0.25s;
    }

    .outcome-item:hover {
        border-color: var(--accent);
        background: var(--accent-lt);
    }

    .outcome-icon {
        font-size: 20px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .outcome-item h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 3px;
    }

    .outcome-item p {
        font-size: 13px;
        line-height: 1.6;
        color: var(--muted);
        font-weight: 300;
    }

    /* iSurvey Architecture panel */
    .arch-panel {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 20px;
        /* padding: 40px 36px; */
        position: relative;
        overflow: hidden;
    }

    .arch-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--teal));
    }

    .arch-label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 24px;
    }

    .arch-title {
        font-family: 'Syne', sans-serif;
        font-size: 24px;
        color: #000000;
        margin-bottom: 8px;
    }

    .arch-sub {
        font-size: 13px;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 32px;
    }

    .arch-layers {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .arch-layer {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
    }

    .arch-layer-1 {
        background: rgba(79, 142, 247, 0.12);
        border: 1px solid rgba(79, 142, 247, 0.2);
    }

    .arch-layer-2 {
        background: rgba(45, 212, 192, 0.08);
        border: 1px solid rgba(45, 212, 192, 0.15);
    }

    .arch-layer-3 {
        background: rgba(245, 158, 11, 0.08);
        border: 1px solid rgba(245, 158, 11, 0.15);
    }

    .arch-layer-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    .arch-layer-content h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 2px;
    }

    .arch-layer-content p {
        font-size: 12px;
        color: var(--muted);
        font-weight: 300;
    }

    .arch-connector {
        width: 1px;
        height: 14px;
        background: var(--border2);
        margin-left: 30px;
    }

    /* ── SECTORS ── */
    #sectors {
        background: var(--bg);
    }

    .sectors-tabs {
        display: flex;
        gap: 2px;
        margin-top: 56px;
        margin-bottom: 2px;
        background: var(--surface);
        border-radius: 12px 12px 0 0;
        overflow: hidden;
    }

    .stab {
        flex: 1;
        background: none;
        border: none;
        cursor: pointer;
        padding: 20px 24px;
        text-align: left;
        font-family: 'Syne', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: var(--muted);
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 2px solid transparent;
    }

    .stab:hover {
        color: var(--text);
        background: rgba(255, 255, 255, 0.03);
    }

    .stab.active {
        color: var(--accent);
        border-bottom-color: var(--accent);
        background: rgba(79, 142, 247, 0.06);
    }

    .stab-icon {
        font-size: 18px;
    }

    .sector-panels {
        background: var(--surface);
        border-radius: 0 0 16px 16px;
    }

    .sector-panel {
        display: none;
        padding: 48px;
    }

    .sector-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .sector-panel-desc h3 {
        font-family: 'Syne', sans-serif;
        font-size: 28px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .sector-panel-desc h3 em {
        font-style: italic;
        color: var(--accent);
    }

    .sector-panel-desc p {
        font-size: 15px;
        line-height: 1.8;
        color: var(--muted);
        font-weight: 300;
    }

    .sector-services {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sector-services li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        border-radius: 10px;
        background: var(--bg);
        border: 1px solid var(--border);
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
        transition: all 0.2s;
    }

    .sector-services li:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: var(--accent-lt);
    }

    .sector-services li::before {
        content: '→';
        color: var(--accent);
        font-weight: 700;
        flex-shrink: 0;
    }

    /* ── ISURVEY ── */
    #isurvey {
        background: #fff;
    }

    .isurvey-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: end;
        margin-bottom: 56px;
    }

    .isurvey-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        background: var(--border);
        border-radius: 16px;
        overflow: hidden;
    }

    .isv-card {
        background: var(--bg);
        padding: 36px 28px;
        position: relative;
        overflow: hidden;
        transition: background 0.25s;
    }

    .isv-card:hover {
        background: var(--surface2);
    }

    .isv-card::after {
        content: attr(data-layer);
        position: absolute;
        bottom: -12px;
        right: -8px;
        font-family: 'Syne', sans-serif;
        font-size: 80px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.03);
        line-height: 1;
        pointer-events: none;
    }

    .isv-num {
        font-family: 'Syne', sans-serif;
        font-size: 13px;
        color: var(--accent);
        font-style: italic;
        margin-bottom: 16px;
    }

    .isv-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .isv-1 .isv-icon {
        background: var(--accent-lt);
    }

    .isv-2 .isv-icon {
        background: var(--teal-lt);
    }

    .isv-3 .isv-icon {
        background: var(--amber-lt);
    }

    .isv-card h3 {
        font-size: 17px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .isv-card p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 18px;
    }

    .isv-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .isv-features li {
        font-size: 13px;
        color: var(--muted);
        padding-left: 14px;
        position: relative;
        line-height: 1.5;
    }

    .isv-features li::before {
        content: '·';
        position: absolute;
        left: 0;
        color: var(--accent);
        font-size: 18px;
        line-height: 1.1;
    }

    /* ── GIS SERVICES ── */
    #services {
        background: var(--bg);
    }

    .services-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-top: 56px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .svc-chip {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 18px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        transition: all 0.2s;
        cursor: default;
    }

    .svc-chip:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: var(--accent-lt);
    }

    .svc-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .services-text p {
        font-size: 16px;
        line-height: 1.85;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 24px;
    }

    .services-text p strong {
        color: var(--text);
        font-weight: 500;
    }

    .synergy-box {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 28px;
        position: relative;
        overflow: hidden;
    }

    .synergy-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--teal));
    }

    .synergy-box h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 10px;
    }

    .synergy-box p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 0;
    }

    /* ── INTEGRATIONS ── */
    #integrations {
        background: #fff;
    }

    .int-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-top: 56px;
    }

    .int-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .int-item {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-dark);
        transition: all 0.2s;
    }

    .int-item:hover {
        border-color: var(--teal);
        color: var(--teal);
        background: var(--teal-lt);
    }

    .int-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    .int-text p {
        font-size: 16px;
        line-height: 1.85;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 24px;
    }

    .int-text p strong {
        color: var(--text);
        font-weight: 500;
    }

    .int-arch-note {
        background: var(--bg);
        border: 1px solid rgba(45, 212, 192, 0.2);
        border-radius: 12px;
        padding: 22px 24px;
    }

    .int-arch-note .label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 8px;
    }

    .int-arch-note p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--muted);
        font-weight: 300;
    }

    /* ── FAQ ── */
    #faq {
        background: var(--bg);
    }

    .faq-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 56px;
    }

    .faq-item {
        border: 1px solid var(--border);
        border-radius: 14px;
        overflow: hidden;
        background: var(--surface);
    }

    .faq-q {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        padding: 22px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        font-family: 'Syne', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: var(--text);
        transition: color 0.2s;
    }

    .faq-q:hover {
        color: var(--accent);
    }

    .faq-item.open .faq-q {
        color: var(--accent);
    }

    .faq-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1px solid var(--border2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--accent);
        transition: transform 0.3s;
    }

    .faq-item.open .faq-icon {
        transform: rotate(45deg);
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s;
        padding: 0 24px;
        font-size: 14px;
        line-height: 1.8;
        color: var(--muted);
        font-weight: 300;
    }

    .faq-item.open .faq-a {
        max-height: 300px;
        padding: 0 24px 22px;
    }

    /* ── CTA ── */
    #cta {
        background: #fff;
        padding: 100px 72px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(79, 142, 247, 0.08) 0%, transparent 65%);
    }

    .cta-left {
        position: relative;
        z-index: 1;
    }

    .cta-left h2 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 400;
        color: #fff;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
    }

    .cta-left h2 em {
        font-style: italic;
        color: var(--accent);
    }

    .cta-left p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 36px;
        max-width: 460px;
    }

    .cta-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cta-note {
        margin-top: 16px;
        font-size: 12px;
        color: var(--muted);
    }

    .cta-right {
        position: relative;
        z-index: 1;
    }

    .cta-sectors {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .cta-sector {
        display: flex;
        align-items: center;
        gap: 18px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 22px 24px;
        transition: all 0.25s;
    }

    .cta-sector:hover {
        border-color: var(--accent);
        background: var(--accent-lt);
    }

    .cs-icon {
        font-size: 28px;
        flex-shrink: 0;
    }

    .cs-text h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 3px;
    }

    .cs-text p {
        font-size: 13px;
        color: var(--muted);
        font-weight: 300;
        line-height: 1.5;
    }

    /* ── REVEAL ── */
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    .overview-img {
        width: 100%;
        max-width: 600px;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {

        section {
            padding: 80px 32px;
        }

        .hero-content {
            grid-template-columns: 1fr;
            padding: 0 32px;
        }

        .hero-right-panel {
            display: none;
        }

        .hero-stats-bar {
            grid-template-columns: repeat(3, 1fr);
        }

        .overview-layout,
        .isurvey-header,
        .services-layout,
        .int-layout,
        .faq-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .isurvey-grid {
            grid-template-columns: 1fr;
        }

        .sector-panel.active {
            grid-template-columns: 1fr;
        }

        #cta {
            grid-template-columns: 1fr;
            padding: 80px 32px;
        }
    }

    @media (max-width: 640px) {

        section {
            padding: 60px 20px;
        }

        .hero-content {
            padding: 0 20px;
        }

        .hero-stats-bar {
            grid-template-columns: repeat(2, 1fr);
        }

        .services-grid,
        .int-grid {
            grid-template-columns: 1fr;
        }

        .sectors-tabs {
            flex-direction: column;
        }

        .stab {
            border-bottom: none;
            border-left: 2px solid transparent;
        }

        .stab.active {
            border-left-color: var(--accent);
            border-bottom-color: transparent;
        }

        #cta {
            padding: 60px 20px;
        }
    }