/* =====================================================
   IT HQ — REDESIGNED STYLES
   Inspired by ProvenIT / Proteli / myithq.com branding
   ===================================================== */

/* ---- Custom Properties ---- */
:root {
    /* Brand - pulled from ITHQ's dark navy + cyan/teal accents */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-deeper: #0369a1;
    --primary-glow: rgba(14, 165, 233, 0.5);
    --accent: #06d6a0;
    --accent-dark: #05b384;
    --danger: #ef4444;
    --danger-glow: rgba(239, 68, 68, 0.4);
    --warning: #f59e0b;

    /* Dark palette */
    --bg-deepest: #030712;
    --bg-deep: #0a0f1e;
    --bg-dark: #0f172a;
    --bg-card: #131c31;
    --bg-card-hover: #1a2542;
    --bg-elevated: #1e293b;

    /* Light / Text */
    --white: #ffffff;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(14,165,233,0.25);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    /* Layout */
    --max-w: 1220px;
    --section-py: 110px;

    /* Effects */
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 100px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s var(--ease);
    --shadow-card: 0 4px 30px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 40px var(--primary-glow);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deepest);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: var(--section-py) 0; position: relative; }

.text-center { text-align: center; }
.text-accent { color: var(--primary); }
.text-danger { color: var(--danger); }
.text-body { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 14px; }

/* ---- Section Intro ---- */
.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

/* ---- Tags ---- */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.2);
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}

.tag-light {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

.tag-danger {
    color: var(--danger);
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.2);
}

/* ---- Headlines ---- */
.headline-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.headline-md {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-glow {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-glow:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    box-shadow: 0 4px 20px var(--danger-glow);
}
.btn-danger:hover {
    background: #dc2626;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--danger-glow);
}

/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

/* ---- Centered Logo Row (hides on scroll) ---- */
.nav-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), padding 0.4s var(--ease);
    max-height: 200px;
    opacity: 1;
    overflow: hidden;
    padding: 10px 0 0;
    background: transparent;
}

.nav-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Soft glow behind logo to blend JPEG edges */
.nav-logo-center::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(14,165,233,0.06) 40%, transparent 70%);
    pointer-events: none;
}

.nav-hero-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 14px;
    filter:
        drop-shadow(0 0 1px rgba(255,255,255,0.9))
        drop-shadow(0 0 2px rgba(255,255,255,0.7))
        drop-shadow(0 0 4px rgba(255,255,255,0.4))
        drop-shadow(0 0 20px rgba(14,165,233,0.35))
        drop-shadow(0 0 40px rgba(14,165,233,0.2));
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.nav-hero-logo:hover {
    transform: scale(1.06);
    filter:
        drop-shadow(0 0 1px rgba(255,255,255,1))
        drop-shadow(0 0 3px rgba(255,255,255,0.8))
        drop-shadow(0 0 6px rgba(255,255,255,0.5))
        drop-shadow(0 0 25px rgba(14,165,233,0.5))
        drop-shadow(0 0 50px rgba(14,165,233,0.3));
}

/* Hide logo row on scroll */
.navbar.scrolled .nav-logo-row {
    max-height: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-brand-text {
    display: none;
}

.navbar.scrolled .nav-brand-text {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    white-space: nowrap;
}

.navbar.scrolled .nav-container {
    justify-content: space-between;
}

/* Center nav-menu when logo row visible */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.logo-img {
    height: 44px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.7)) drop-shadow(0 0 2px rgba(255,255,255,0.9));
}

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.nav-phone {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.nav-phone:hover { color: var(--primary); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

/* =============================================================
   HERO — ProvenIT-inspired full-screen landing
   ============================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(14,165,233,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(6,214,160,0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-deepest) 0%, #060d1f 40%, #091428 70%, var(--bg-deepest) 100%);
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
    animation: meshDrift 20s linear infinite;
}

@keyframes meshDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(14,165,233,0.15);
    top: -10%;
    right: -5%;
    animation: orbFloat1 18s ease-in-out infinite;
}
.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(6,214,160,0.1);
    bottom: 5%;
    left: -5%;
    animation: orbFloat2 22s ease-in-out infinite;
}
.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(14,165,233,0.1);
    top: 50%;
    left: 40%;
    animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -30px) scale(0.95); }
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 220px 28px 70px;
    width: 100%;
}

.hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    animation: heroFadeIn 1.2s var(--ease) both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 28px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(14,165,233,0.2);
    background: rgba(14,165,233,0.06);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
}

/* Stats bar at bottom of hero */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 80px;
    padding: 32px 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    animation: heroFadeIn 1.2s var(--ease) 0.4s both;
}

.hero-stat {
    flex: 1;
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
}

.hero-stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.4; height: 25px; }
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
}

/* =============================================================
   TRUST BAR
   ============================================================= */
.trust-bar {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.trust-badge i {
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.trust-badge:hover {
    color: var(--text-primary);
}
.trust-badge:hover i {
    color: var(--primary);
}

/* =============================================================
   ABOUT
   ============================================================= */
.about {
    background: var(--bg-deep);
}

.about-layout {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-left .tag { margin-bottom: 14px; }

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 22px;
    background: rgba(14,165,233,0.05);
    border: 1px solid rgba(14,165,233,0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}
.highlight-item:hover {
    border-color: rgba(14,165,233,0.25);
    background: rgba(14,165,233,0.08);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(14,165,233,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.highlight-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

/* Region card */
.region-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.region-card:hover {
    border-color: var(--border-hover);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.region-header i {
    color: var(--accent);
    font-size: 1.3rem;
}
.region-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
}

.region-states {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.state-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    background: rgba(6,214,160,0.08);
    border: 1px solid rgba(6,214,160,0.15);
    color: var(--accent);
}
.state-pill i { font-size: 0.65rem; }

.region-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
}
.region-note i { color: var(--text-muted); }

.region-map {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
}

.map-shape {
    fill: rgba(14,165,233,0.12);
    stroke: rgba(14,165,233,0.3);
    stroke-width: 1.5;
    transition: var(--transition);
    cursor: pointer;
}
.map-shape:hover {
    fill: rgba(14,165,233,0.25);
    stroke: var(--primary);
}

.map-text {
    fill: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-display);
    text-anchor: middle;
    pointer-events: none;
}

.hq-dot { fill: var(--accent); }
.hq-pulse {
    fill: transparent;
    stroke: var(--accent);
    stroke-width: 2;
    animation: hqPulse 2s ease infinite;
}
.hq-label {
    fill: var(--accent);
    font-size: 10px;
    font-weight: 800;
    font-family: var(--font-display);
}

@keyframes hqPulse {
    0% { r: 5; opacity: 1; }
    100% { r: 18; opacity: 0; }
}

/* =============================================================
   SERVICES
   ============================================================= */
.services { background: var(--bg-deepest); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card), 0 0 30px rgba(14,165,233,0.06);
    background: var(--bg-card-hover);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}
.svc-card:hover .svc-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.svc-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.svc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14,165,233,0.08);
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
}
.svc-arrow:hover, .svc-card:hover .svc-arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

/* =============================================================
   CTA BAND / HOW IT WORKS
   ============================================================= */
.cta-band {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0c1a30 50%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-band-inner { text-align: center; }
.cta-band-text { margin-bottom: 50px; }

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex: 1;
    max-width: 320px;
    transition: var(--transition);
}
.step:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
}

.step-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-arrow {
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.3;
}

/* =============================================================
   INDUSTRIES
   ============================================================= */
.industries { background: var(--bg-deep); }

.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ind-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: var(--transition);
}
.ind-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6,214,160,0.2);
    box-shadow: var(--shadow-card);
}

.ind-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(6,214,160,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--accent);
    transition: var(--transition);
}
.ind-card:hover .ind-icon {
    background: var(--accent);
    color: var(--bg-deepest);
    box-shadow: 0 4px 15px rgba(6,214,160,0.3);
}

.ind-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.ind-card > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ind-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ind-tags li {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(6,214,160,0.08);
    border: 1px solid rgba(6,214,160,0.12);
    color: var(--accent);
}

/* =============================================================
   IQMS / DELMIAWorks
   ============================================================= */
.iqms-section {
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}
.iqms-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.iqms-section .section-intro {
    text-align: center;
    margin-bottom: 48px;
}

.iqms-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.15);
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    margin-bottom: 20px;
}
.iqms-badge i { font-size: 0.85rem; }

/* 2x2 card grid */
.iqms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.iqms-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}
.iqms-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.iqms-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}
.iqms-card:hover .iqms-card-icon {
    background: rgba(14,165,233,0.18);
    transform: scale(1.05);
}

.iqms-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.iqms-card > p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* Callout banner */
.iqms-callout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
}
.iqms-callout:hover {
    border-color: var(--border-hover);
}

.iqms-callout-left h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.iqms-callout-left h3 i {
    color: var(--primary);
}
.iqms-callout-left > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.iqms-module-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.iqms-module-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.iqms-module-list li:last-child {
    border-bottom: none;
}
.iqms-module-list li i {
    color: var(--accent);
    font-size: 0.78rem;
    min-width: 16px;
}

/* reveal delays */
.iqms-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.iqms-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.iqms-grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }

/* =============================================================
   CYBERSECURITY
   ============================================================= */
.cyber {
    background: var(--bg-deepest);
    overflow: hidden;
}

.cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--danger), var(--primary), var(--accent));
}

.cyber-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 48px;
}

.cyber-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}
.cyber-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239,68,68,0.2);
    box-shadow: var(--shadow-card);
}

.cyber-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: rgba(239,68,68,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--danger);
    transition: var(--transition);
}
.cyber-card:hover .cyber-icon {
    background: var(--danger);
    color: var(--white);
    box-shadow: 0 4px 15px var(--danger-glow);
}

.cyber-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cyber-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.centered-cta { text-align: center; }

/* =============================================================
   CLOUD
   ============================================================= */
.cloud-section { background: var(--bg-deep); }

.cloud-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.cloud-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}
.cloud-col:hover { border-color: var(--border-hover); }

.cloud-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.cloud-col-header i { font-size: 2rem; }
.cloud-col-header.microsoft i { color: #00a4ef; }
.cloud-col-header.aws-header i { color: #ff9900; }

.cloud-col-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
}

.cloud-items { display: flex; flex-direction: column; gap: 18px; }

.cloud-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.cloud-item:hover { background: rgba(255,255,255,0.02); }

.ci-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.ci-icon.azure { background: rgba(0,120,212,0.12); color: #0078D4; }
.ci-icon.m365 { background: rgba(235,100,0,0.12); color: #EB6400; }
.ci-icon.intune { background: rgba(0,164,239,0.12); color: #00A4EF; }
.ci-icon.entra { background: rgba(0,166,156,0.12); color: #00A69C; }
.ci-icon.aws-i { background: rgba(255,153,0,0.12); color: #FF9900; }

.ci-text h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: var(--white);
    margin-bottom: 3px;
}
.ci-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials { background: var(--bg-deepest); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.testi-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.testi-stars i { color: #fbbf24; font-size: 0.85rem; }

.testi-card blockquote {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.testi-author strong { display: block; color: var(--white); font-size: 0.88rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================================
   FAQ
   ============================================================= */
.faq-section {
    background: var(--bg-deepest);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.faq-item:hover {
    border-color: rgba(14,165,233,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.faq-item.active {
    border-color: rgba(14,165,233,0.35);
    background: linear-gradient(135deg, rgba(14,165,233,0.04) 0%, rgba(6,214,160,0.02) 100%);
    box-shadow: 0 4px 24px rgba(14,165,233,0.08), 0 2px 8px rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.4;
}
.faq-question:hover {
    color: var(--primary);
}
.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
}

.faq-chevron {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(14,165,233,0.06);
    border: 1px solid rgba(14,165,233,0.1);
    color: var(--text-muted);
    font-size: 0.7rem;
    transition: all 0.3s ease;
}
.faq-item:hover .faq-chevron {
    background: rgba(14,165,233,0.1);
    border-color: rgba(14,165,233,0.2);
    color: var(--primary);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    background: rgba(14,165,233,0.15);
    border-color: rgba(14,165,233,0.3);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 28px 0 28px;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer-inner {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 18px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}
.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(14,165,233,0.3);
    transition: var(--transition);
}
.faq-answer a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.faq-num {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.12);
    border-radius: 8px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.faq-item.active .faq-num {
    background: rgba(14,165,233,0.15);
    border-color: rgba(14,165,233,0.3);
    color: var(--white);
}

/* reveal delays */
.faq-list [data-reveal]:nth-child(2) { transition-delay: 0.04s; }
.faq-list [data-reveal]:nth-child(3) { transition-delay: 0.08s; }
.faq-list [data-reveal]:nth-child(4) { transition-delay: 0.12s; }
.faq-list [data-reveal]:nth-child(5) { transition-delay: 0.16s; }
.faq-list [data-reveal]:nth-child(6) { transition-delay: 0.20s; }
.faq-list [data-reveal]:nth-child(7) { transition-delay: 0.24s; }
.faq-list [data-reveal]:nth-child(8) { transition-delay: 0.28s; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { background: var(--bg-deep); }

.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 44px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field { margin-bottom: 18px; }

.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-muted);
}

.field textarea { resize: vertical; min-height: 110px; }

.field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 22px;
}
.field select option { background: var(--bg-dark); color: var(--white); }

/* Contact sidebar */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 20px;
}

.ci-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ci-icon-wrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.05rem;
}

.ci-row strong { display: block; color: var(--white); font-size: 0.92rem; margin-bottom: 2px; }
.ci-row a { font-size: 0.9rem; color: var(--primary); }
.ci-row a:hover { color: var(--accent); }
.ci-row p { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.contact-socials {
    display: flex;
    gap: 10px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}
.contact-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
    background: var(--bg-deepest);
    border-top: 1px solid var(--border);
    padding: 64px 0 28px;
}

/* Centered Footer Logo */
.footer-logo-center {
    text-align: center;
    margin-bottom: 44px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-hero-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 14px;
    filter:
        drop-shadow(0 0 1px rgba(255,255,255,0.9))
        drop-shadow(0 0 2px rgba(255,255,255,0.7))
        drop-shadow(0 0 4px rgba(255,255,255,0.4))
        drop-shadow(0 0 20px rgba(14,165,233,0.35))
        drop-shadow(0 0 40px rgba(14,165,233,0.2));
    display: block;
    transition: var(--transition);
}
.footer-hero-logo:hover {
    transform: scale(1.06);
    filter:
        drop-shadow(0 0 1px rgba(255,255,255,1))
        drop-shadow(0 0 3px rgba(255,255,255,0.8))
        drop-shadow(0 0 6px rgba(255,255,255,0.5))
        drop-shadow(0 0 25px rgba(14,165,233,0.5))
        drop-shadow(0 0 50px rgba(14,165,233,0.3));
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand .logo-img {
    height: 44px;
    margin-bottom: 14px;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.7)) drop-shadow(0 0 2px rgba(255,255,255,0.9));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-secondary);
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =============================================================
   BACK TO TOP
   ============================================================= */
.btt {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--primary-glow);
    z-index: 999;
}
.btt.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.btt:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays inside grids */
.services-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.services-grid [data-reveal]:nth-child(4) { transition-delay: 0.06s; }
.services-grid [data-reveal]:nth-child(5) { transition-delay: 0.12s; }
.services-grid [data-reveal]:nth-child(6) { transition-delay: 0.18s; }
.services-grid [data-reveal]:nth-child(7) { transition-delay: 0.06s; }
.services-grid [data-reveal]:nth-child(8) { transition-delay: 0.12s; }
.services-grid [data-reveal]:nth-child(9) { transition-delay: 0.18s; }

.ind-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.ind-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.ind-grid [data-reveal]:nth-child(4) { transition-delay: 0.06s; }
.ind-grid [data-reveal]:nth-child(5) { transition-delay: 0.12s; }
.ind-grid [data-reveal]:nth-child(6) { transition-delay: 0.18s; }

.cyber-grid [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
.cyber-grid [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
.cyber-grid [data-reveal]:nth-child(4) { transition-delay: 0.18s; }
.cyber-grid [data-reveal]:nth-child(5) { transition-delay: 0.06s; }
.cyber-grid [data-reveal]:nth-child(6) { transition-delay: 0.12s; }
.cyber-grid [data-reveal]:nth-child(7) { transition-delay: 0.18s; }
.cyber-grid [data-reveal]:nth-child(8) { transition-delay: 0.24s; }

.testi-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.testi-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .services-grid, .ind-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .cyber-grid { grid-template-columns: repeat(2, 1fr); }
    .cloud-columns { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-wrap: wrap; gap: 20px; padding: 24px 28px; }
    .hero-stat-divider { display: none; }
    .hero-stat { min-width: 40%; }
    .nav-hero-logo { width: 160px; height: 160px; }
    .footer-hero-logo { width: 160px; height: 160px; }
    .iqms-grid { grid-template-columns: repeat(2, 1fr); }
    .iqms-callout { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    :root { --section-py: 80px; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        padding: 90px 24px 24px;
        transition: var(--transition);
        border-left: 1px solid var(--border);
        z-index: 1000;
    }
    .nav-menu.active { right: 0; }
    .nav-list { flex-direction: column; gap: 4px; }
    .nav-link { padding: 12px 16px; font-size: 1rem; }
    .nav-right { display: none; }
    .hamburger { display: flex; }

    .nav-hero-logo { width: 140px; height: 140px; }
    .footer-hero-logo { width: 140px; height: 140px; }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero-wrapper { padding: 60px 20px 50px; }
    .hero-headline { letter-spacing: -1px; }

    .services-grid, .ind-grid, .testi-grid, .cyber-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .step { max-width: 100%; }
    .form-2col { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .nav-logo-row { padding: 12px 0 2px; }
    .trust-items { gap: 20px; }
    .hero-stats { flex-direction: column; align-items: stretch; }
    .hero-stat { min-width: auto; }
    .hero-scroll-indicator { display: none; }
    .iqms-grid { grid-template-columns: 1fr; }
    .iqms-callout { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .btn-lg { padding: 14px 28px; font-size: 0.9rem; }
    .contact-form { padding: 24px; }
    .nav-hero-logo { width: 120px; height: 120px; }
    .footer-hero-logo { width: 120px; height: 120px; }
}
