/* ================================================================
   ADAAT AL-AMAL CONTRACTING EST.
   Premium Industrial Corporate Landing Page
   ================================================================ */

/* ----------------------------------------------------------------
   1. ROOT VARIABLES
   ---------------------------------------------------------------- */
:root {
    --navy:         #0D1B5E;
    --navy-deep:    #0A1240;
    --navy-mid:     #162A7A;
    --red:          #D7262E;
    --red-dark:     #B91C22;
    --white:        #FFFFFF;
    --light:        #F5F7FA;
    --light-2:      #EDF0F5;
    --dark:         #0A0F1E;
    --dark-2:       #111827;
    --text-main:    #1A1E2E;
    --text-body:    #4B5563;
    --text-light:   #9CA3AF;
    --border:       #E5E7EB;

    --font-head:    'Poppins', sans-serif;
    --font-body:    'Inter', sans-serif;

    --container:    1240px;
    --gap:          32px;

    --shadow-xs:    0 2px 8px rgba(0,0,0,.06);
    --shadow-sm:    0 4px 16px rgba(0,0,0,.08);
    --shadow-md:    0 8px 32px rgba(0,0,0,.12);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.16);
    --shadow-xl:    0 32px 80px rgba(0,0,0,.22);

    --ease:         cubic-bezier(.4,0,.2,1);
    --ease-out:     cubic-bezier(0,0,.2,1);
    --dur:          .3s;

    --navbar-h:     80px;
    --section-py:   110px;
    --red-bar-w:    4px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

input, textarea, select, button {
    font-family: var(--font-body);
    outline: none;
    border: none;
    background: none;
}

button { cursor: pointer; }

/* ----------------------------------------------------------------
   3. UTILITIES
   ---------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.section {
    padding-block: var(--section-py);
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Section labels */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.section-label.light { color: rgba(255,255,255,.65); }
.section-label.light::before { background: var(--red); }

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.18;
    margin-bottom: 18px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: 16px;
    color: var(--text-body);
    max-width: 560px;
    line-height: 1.75;
}

.section-subtitle.light { color: rgba(255,255,255,.65); }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-label { justify-content: center; }
.section-header .section-subtitle { margin-inline: auto; }

/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 14px 32px;
    border-radius: 3px;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn i { font-size: 13px; transition: transform var(--dur) var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(215,38,46,.35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,27,94,.35);
}

/* ----------------------------------------------------------------
   5. PRELOADER
   ---------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s var(--ease), visibility .5s var(--ease);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.preloader-logo-main {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .12em;
}

.preloader-logo-sub {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,.5);
    letter-spacing: .2em;
    margin-top: 4px;
}

.preloader-track {
    width: 180px;
    height: 2px;
    background: rgba(255,255,255,.12);
    border-radius: 2px;
    overflow: hidden;
    margin-inline: auto 0;
    margin-bottom: 14px;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: var(--red);
    border-radius: 2px;
    animation: preload 1.6s var(--ease-out) forwards;
}

@keyframes preload {
    to { width: 100%; }
}

.preloader-tagline {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.35);
    letter-spacing: .22em;
    text-transform: uppercase;
}

/* ----------------------------------------------------------------
   6. NAVBAR
   ---------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    will-change: box-shadow;
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.nav-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo-icon { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo-main {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: .04em;
}

.nav-logo-sub {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 12px;
    border-radius: 3px;
    position: relative;
    transition: color var(--dur) var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--navy); }

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-contact-btn {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: var(--red);
    padding: 10px 24px;
    border-radius: 3px;
    letter-spacing: .02em;
    transition: all var(--dur) var(--ease);
    flex-shrink: 0;
}

.nav-contact-btn:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(215,38,46,.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   7. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--navbar-h);
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 18, 64, 0.97) 0%,
        rgba(13, 27, 94, 0.93) 40%,
        rgba(10, 15, 30, 0.98) 100%
    );
    z-index: 1;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215,38,46,.08) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-body {
    position: relative;
    z-index: 3;
    padding-block: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(215,38,46,.12);
    border: 1px solid rgba(215,38,46,.3);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
    opacity: 0;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 2s ease infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.8); }
}

.hero-badge span:last-child {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
}

.hero-heading-accent {
    color: var(--red);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 44px;
    opacity: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 72px;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 40px;
    opacity: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 48px;
}

.hero-stat-number {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-stat-sep {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.12);
    margin-right: 48px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.4);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 3;
    animation: float-up 2s ease infinite;
}

@keyframes float-up {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: rgba(255,255,255,.5);
    border-radius: 3px;
    animation: scroll-wheel 1.8s ease infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

/* ----------------------------------------------------------------
   8. ABOUT SECTION
   ---------------------------------------------------------------- */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 580px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(13,27,94,.6) 100%
    );
}

.about-badge-est {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(215,38,46,.4);
}

.badge-year {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.badge-word {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    letter-spacing: .06em;
}

.about-achievement {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    border-radius: 4px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--navy);
}

.about-achievement i {
    font-size: 28px;
    color: var(--navy);
}

.about-achievement strong {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.about-achievement span {
    font-size: 12px;
    color: var(--text-light);
}

/* About Content */
.about-content { padding-left: 16px; }

.about-lead {
    font-size: 16.5px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 400;
}

.about-body {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--light);
    border-radius: 4px;
    border-left: 3px solid var(--navy);
    transition: all var(--dur) var(--ease);
}

.about-pillar:hover {
    background: var(--light-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon i { color: var(--white); font-size: 16px; }

.pillar-text h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.pillar-text p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ----------------------------------------------------------------
   9. PARALLAX SERVICES — INTRO HEADER
   ---------------------------------------------------------------- */
.parallax-intro {
    background: var(--navy);
    padding: 80px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.parallax-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 50px 50px;
}

.parallax-intro .section-title { margin-bottom: 12px; }

/* ----------------------------------------------------------------
   10. PARALLAX PANELS — STICKY STACK
   ---------------------------------------------------------------- */
.parallax-panels {
    position: relative;
}

.parallax-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    will-change: transform;
}

.parallax-panel:nth-child(1) { z-index: 1; }
.parallax-panel:nth-child(2) { z-index: 2; }
.parallax-panel:nth-child(3) { z-index: 3; }
.parallax-panel:nth-child(4) { z-index: 4; }
.parallax-panel:nth-child(5) { z-index: 5; }
.parallax-panel:nth-child(6) { z-index: 6; }
.parallax-panel:nth-child(7) { z-index: 7; }

/* Panel backgrounds */
.panel-civil {
    background-color: #0e1e3a;
    background-image: linear-gradient(135deg, #0a1628 0%, #1a2d50 100%);
}
.panel-mechanical {
    background-color: #111e2e;
    background-image: linear-gradient(135deg, #0c1820 0%, #1e3040 100%);
}
.panel-electrical {
    background-color: #0d1b5e;
    background-image: linear-gradient(135deg, #091444 0%, #162A7A 100%);
}
.panel-manpower {
    background-color: #18102e;
    background-image: linear-gradient(135deg, #120c26 0%, #241840 100%);
}
.panel-transport {
    background-color: #101620;
    background-image: linear-gradient(135deg, #0c1218 0%, #1c2638 100%);
}
.panel-coating {
    background-color: #1c1010;
    background-image: linear-gradient(135deg, #160c0c 0%, #2c1c1c 100%);
}
.panel-it {
    background-color: #080e1e;
    background-image: linear-gradient(135deg, #060a18 0%, #0d1b5e 100%);
}

/* Panel texture overlay */
.panel-texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,.018) 60px,
            rgba(255,255,255,.018) 61px
        );
    z-index: 0;
    pointer-events: none;
}

/* Red left bar */
.panel-red-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--red-bar-w);
    background: var(--red);
    z-index: 1;
}

/* Panel layout */
.panel-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    height: 100%;
    padding-block: 80px;
}

/* Panel left content */
.panel-left {
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.panel-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.panel-num {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: .1em;
}

.panel-sep {
    color: rgba(255,255,255,.2);
    font-weight: 300;
}

.panel-meta > span:last-child {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.4);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.panel-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(215,38,46,.12);
    border: 1px solid rgba(215,38,46,.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.panel-icon-wrap i {
    font-size: 26px;
    color: var(--red);
}

.panel-title {
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 20px;
}

.panel-desc {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.panel-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-bottom: 40px;
}

.panel-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.72);
    font-weight: 400;
    line-height: 1.45;
}

.panel-bullets li i {
    color: var(--red);
    font-size: 11px;
    flex-shrink: 0;
}

.panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 4px;
    width: fit-content;
    transition: all var(--dur) var(--ease);
    letter-spacing: .04em;
}

.panel-cta:hover {
    color: var(--red);
    border-bottom-color: var(--red);
    gap: 14px;
}

/* Panel right */
.panel-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.panel-ghost-num {
    position: absolute;
    font-family: var(--font-head);
    font-size: clamp(140px, 18vw, 260px);
    font-weight: 900;
    color: rgba(255,255,255,.03);
    line-height: 1;
    right: -20px;
    user-select: none;
    letter-spacing: -.04em;
}

/* Decorative elements */
.panel-deco {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-deco::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(215,38,46,.1);
}

.panel-deco::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(215,38,46,.06);
    border: 1px solid rgba(215,38,46,.2);
}

/* IT panel — tag cloud */
.panel-it-left { gap: 0; }

.it-tags-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    margin-top: 4px;
}

.it-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: 7px 14px;
    border-radius: 100px;
    transition: all var(--dur) var(--ease);
}

.it-tag:hover {
    background: rgba(215,38,46,.12);
    border-color: rgba(215,38,46,.35);
    color: var(--white);
}

.it-tag i { font-size: 11px; color: var(--red); }

/* ----------------------------------------------------------------
   11. SERVICE CARDS
   ---------------------------------------------------------------- */
.service-cards { background: var(--light); }

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

.svc-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--red);
    display: flex;
    flex-direction: column;
    transition: all .35s var(--ease);
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.svc-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.svc-card:hover .svc-card-img img { transform: scale(1.06); }

.svc-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-card-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background var(--dur) var(--ease);
}

.svc-card-icon i { color: var(--white); font-size: 18px; }

.svc-card:hover .svc-card-icon { background: var(--red); }

.svc-card-icon-it { background: var(--red); }

.svc-card-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.svc-card-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.svc-card-list li {
    font-size: 13.5px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.svc-card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.svc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--dur) var(--ease);
    margin-top: auto;
}

.svc-card-link i { font-size: 12px; transition: transform var(--dur) var(--ease); }

.svc-card-link:hover { color: var(--red); }
.svc-card-link:hover i { transform: translateX(4px); }

/* IT card — full row */
.svc-card-it {
    grid-column: 1 / -1;
    flex-direction: row;
}

.svc-card-it .svc-card-img {
    width: 320px;
    height: auto;
    flex-shrink: 0;
}

.svc-it-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.svc-it-tags span {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy);
    background: var(--light);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 100px;
    transition: all var(--dur) var(--ease);
}

.svc-it-tags span:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ----------------------------------------------------------------
   12. WHY CHOOSE US
   ---------------------------------------------------------------- */
.why-us {
    position: relative;
    padding-block: var(--section-py);
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    z-index: 0;
}

.why-us-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
    background-size: 56px 56px;
}

.why-us .container { position: relative; z-index: 1; }

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.counter-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: all var(--dur) var(--ease);
}

.counter-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(215,38,46,.4);
    transform: translateY(-4px);
}

.counter-icon {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 16px;
}

.counter-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.counter-num {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.counter-suffix {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
    padding-top: 6px;
}

.counter-label {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Why features */
.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 56px;
}

.why-feature {
    text-align: center;
    padding: 28px 20px;
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(215,38,46,.1);
    border: 1px solid rgba(215,38,46,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: var(--red);
    transition: all var(--dur) var(--ease);
}

.why-feature:hover .why-feature-icon {
    background: var(--red);
    color: var(--white);
}

.why-feature h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-feature p {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}

/* ----------------------------------------------------------------
   13. INDUSTRIES
   ---------------------------------------------------------------- */
.industries { background: var(--white); }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--light);
    border-radius: 4px;
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .35s var(--ease);
    cursor: default;
}

.industry-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(13,27,94,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--navy);
    transition: all .35s var(--ease);
}

.industry-card:hover .industry-icon {
    background: rgba(215,38,46,.15);
    color: var(--red);
}

.industry-card h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: color .35s var(--ease);
}

.industry-card:hover h4 { color: var(--white); }

/* ----------------------------------------------------------------
   14. CLIENTS SLIDER
   ---------------------------------------------------------------- */
.clients { background: var(--light); overflow: hidden; }

.clients-slider {
    overflow: hidden;
    padding-block: 8px;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: clients-scroll 32s linear infinite;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes clients-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.client-card {
    flex-shrink: 0;
    width: 180px;
    height: 88px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
    filter: grayscale(1);
    opacity: .55;
}

.client-card:hover {
    filter: grayscale(0);
    opacity: 1;
    box-shadow: var(--shadow-md);
    border-color: var(--navy);
}

.client-card span {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: .08em;
}

/* ----------------------------------------------------------------
   15. CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
    position: relative;
    padding-block: 100px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1b5e 60%, #0a0f1e 100%);
    z-index: 0;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,.02) 80px,
            rgba(255,255,255,.02) 81px
        );
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(215,38,46,.06) 0%, transparent 70%);
    z-index: 0;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid rgba(215,38,46,.3);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.cta-heading {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,.55);
    max-width: 500px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

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

/* ----------------------------------------------------------------
   16. CONTACT SECTION
   ---------------------------------------------------------------- */
.contact { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-lead {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--light);
    border-radius: 4px;
    border-left: 3px solid var(--navy);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i { color: var(--white); font-size: 16px; }

.contact-item-text h5 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    transition: color var(--dur) var(--ease);
}

.contact-item-text a:hover { color: var(--red); }

/* Contact Form */
.contact-form-wrap {
    background: var(--light);
    border-radius: 6px;
    padding: 40px;
    border-top: 4px solid var(--red);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-main);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-light); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13,27,94,.08);
}

.form-field select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }

.form-field textarea { resize: vertical; min-height: 120px; }

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
}

.form-feedback {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    min-height: 20px;
}

.form-feedback.success { color: #16a34a; }
.form-feedback.error { color: var(--red); }

/* ----------------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------------- */
.footer { background: var(--navy-deep); }

.footer-body {
    padding-block: 80px 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

/* Footer brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}

.footer-logo-main {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .04em;
}

.footer-logo-sub {
    display: block;
    font-family: var(--font-head);
    font-size: 10px;
    color: rgba(255,255,255,.35);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-about-text {
    font-size: 13.5px;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 15px;
    transition: all var(--dur) var(--ease);
}

.social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer cols */
.footer-col-title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }

.footer-nav li a {
    font-size: 13.5px;
    color: rgba(255,255,255,.4);
    transition: color var(--dur) var(--ease);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-nav li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    opacity: .5;
    transition: opacity var(--dur) var(--ease);
}

.footer-nav li a:hover { color: var(--white); }
.footer-nav li a:hover::before { opacity: 1; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}

.footer-contact-item i {
    color: var(--red);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact-item a {
    color: rgba(255,255,255,.4);
    transition: color var(--dur) var(--ease);
}

.footer-contact-item a:hover { color: var(--white); }

.footer-careers-block {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
}

.footer-careers-block p {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    margin-bottom: 12px;
}

.footer-careers-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    transition: all var(--dur) var(--ease);
}

.footer-careers-link i { font-size: 12px; transition: transform var(--dur) var(--ease); }
.footer-careers-link:hover i { transform: translateX(4px); }

/* Footer bottom */
.footer-bottom {
    padding-block: 20px;
    background: rgba(0,0,0,.2);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255,255,255,.3);
}

/* ----------------------------------------------------------------
   18. BACK TO TOP
   ---------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--dur) var(--ease);
    box-shadow: var(--shadow-md);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red);
    transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   19. AOS OVERRIDES
   ---------------------------------------------------------------- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ----------------------------------------------------------------
   20. RESPONSIVE — TABLET (≤ 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    /* Navbar */
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 60px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        box-shadow: -8px 0 40px rgba(0,0,0,.12);
        z-index: 999;
    }

    .nav-menu.open { transform: translateX(0); }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 32px;
        width: 100%;
    }

    .nav-link {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
    }

    .nav-link::after { display: none; }

    .nav-contact-btn { margin-top: 8px; align-self: flex-start; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual { max-width: 500px; margin-inline: auto; }

    .about-content { padding-left: 0; }

    /* Parallax panels */
    .panel-layout {
        grid-template-columns: 1fr;
    }

    .panel-right { display: none; }

    .panel-bullets {
        grid-template-columns: 1fr;
    }

    /* Service cards */
    .cards-grid { grid-template-columns: repeat(2, 1fr); }

    .svc-card-it {
        flex-direction: column;
        grid-column: span 2;
    }

    .svc-card-it .svc-card-img {
        width: 100%;
        height: 200px;
    }

    /* Counters */
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .why-features { grid-template-columns: repeat(2, 1fr); }

    /* Industries */
    .industries-grid { grid-template-columns: repeat(4, 1fr); }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ----------------------------------------------------------------
   21. RESPONSIVE — MOBILE (≤ 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    /* Hero */
    .hero-heading { font-size: clamp(28px, 8vw, 42px); }
    .hero-subtitle br { display: none; }
    .hero-stats { gap: 24px; flex-direction: column; align-items: flex-start; }
    .hero-stat-sep { display: none; }
    .hero-stat { padding-right: 0; }
    .hero-actions { flex-direction: column; align-items: flex-start; }

    /* About */
    .about-pillars { grid-template-columns: 1fr; }
    .about-badge-est { top: -10px; right: -10px; width: 80px; height: 80px; }
    .badge-year { font-size: 18px; }
    .about-achievement { bottom: -10px; left: -10px; padding: 14px 16px; }

    /* Parallax */
    .panel-title { font-size: clamp(26px, 6vw, 40px); }
    .panel-left { padding-right: 0; }
    .panel-bullets li { font-size: 13px; }
    .it-tags-panel { gap: 8px; }
    .it-tag { font-size: 11px; padding: 6px 12px; }

    /* Service cards */
    .cards-grid { grid-template-columns: 1fr; }
    .svc-card-it { grid-column: 1; }

    /* Counters */
    .counters-grid { grid-template-columns: 1fr 1fr; }
    .why-features { grid-template-columns: 1fr 1fr; }
    .counter-num { font-size: 40px; }

    /* Industries */
    .industries-grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    /* Form */
    .form-row-2 { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }

    /* CTA */
    .cta-heading { font-size: clamp(22px, 6vw, 34px); }
    .cta-heading br { display: none; }
}

@media (max-width: 480px) {
    .hero-heading-accent { display: block; }
    .counters-grid { grid-template-columns: 1fr; }
    .why-features { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .parallax-intro { padding: 60px 0 48px; }
    .back-to-top { bottom: 20px; right: 20px; }
}
