/* ── VARIABLES ──────────────────────────────────────────────────────────── */
:root {
    --charcoal:      #1A1A2E;
    --charcoal-mid:  #16213E;
    --charcoal-deep: #0D0D1A;
    --cyan:          #00D4FF;
    --cyan-dim:      rgba(0, 212, 255, 0.3);
    --cyan-glow:     rgba(0, 212, 255, 0.15);
    --white:         #FFFFFF;
    --grey:          #8892A4;
    --grey-light:    #C4CDD8;
    --card-bg:       rgba(255, 255, 255, 0.035);
    --card-border:   rgba(0, 212, 255, 0.14);
    --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--charcoal);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 500;
}

/* Subtle grid overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* ── LOGO ───────────────────────────────────────────────────────────────── */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.logo-icon {
    width: 22px;
    height: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    flex-shrink: 0;
}

.logo-icon span {
    background: var(--cyan);
    border-radius: 1px;
    animation: blockPulse 2s ease-in-out infinite;
}

.logo-icon span:nth-child(even) {
    background: var(--cyan-dim);
    animation-delay: .4s;
}

@keyframes blockPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .35; }
}

.logo-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}

.logo-name span { color: var(--cyan); }

/* ── NAVIGATION ─────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: 70px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 26, 46, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: box-shadow .3s var(--ease);
}

.nav.scrolled { box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35); }

.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .25s;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
    background: var(--cyan) !important;
    color: var(--charcoal) !important;
    padding: .4rem 1.2rem;
    border-radius: 6px;
    transition: background .25s, box-shadow .25s, transform .25s !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.4) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: .3s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 6% 200px;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
}

.orb-1 {
    width: 640px;
    height: 640px;
    background: rgba(0, 212, 255, 0.07);
    top: -140px;
    right: -140px;
    animation: breathe 9s ease-in-out infinite;
}

.orb-2 {
    width: 480px;
    height: 480px;
    background: rgba(0, 212, 255, 0.055);
    bottom: -120px;
    left: -80px;
    animation: breathe 11s ease-in-out infinite reverse;
}

@keyframes breathe {
    0%, 100% { transform: scale(1);    opacity: .7; }
    50%       { transform: scale(1.18); opacity: 1;  }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(0, 212, 255, 0.09);
    border: 1px solid rgba(0, 212, 255, 0.28);
    color: var(--cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .25; }
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: 1px;
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}

.hero h1 .grad {
    background: linear-gradient(130deg, var(--cyan) 0%, #00AACC 45%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--grey-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 570px;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--cyan);
    color: var(--charcoal);
    padding: .85rem 1.9rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .25s, box-shadow .25s, transform .25s;
}

.btn-primary:hover {
    background: var(--white);
    box-shadow: 0 0 32px rgba(0, 212, 255, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: .85rem 1.9rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color .25s, color .25s, transform .25s;
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

.hero-floating-stats {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fstat {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.2rem 1.6rem;
    backdrop-filter: blur(12px);
    text-align: center;
    min-width: 145px;
}

.fstat .n {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--cyan);
    display: block;
    line-height: 1;
    margin-bottom: .3rem;
}

.fstat .l {
    font-family: 'Share Tech Mono', monospace;
    font-size: .68rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── SECTION COMMONS ────────────────────────────────────────────────────── */
section { position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    color: var(--cyan);
    font-size: .75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: .7rem;
}

.section-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header p {
    color: var(--grey);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.inner { max-width: 1200px; margin: 0 auto; }

/* ── SERVICES ───────────────────────────────────────────────────────────── */
.services {
    padding: 110px 6%;
    background: var(--charcoal-mid);
}

.services .inner { max-width: 1600px; margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: scaleX(0);
    transition: transform .35s var(--ease);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 212, 255, 0.32);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 0 28px rgba(0, 212, 255, 0.07);
}

.svc-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 212, 255, 0.09);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background .3s, box-shadow .3s;
}

.service-card:hover .svc-icon {
    background: rgba(0, 212, 255, 0.18);
    box-shadow: 0 0 22px rgba(0, 212, 255, 0.22);
}

.svc-icon i { font-size: 1.35rem; color: var(--cyan); }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .65rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.service-card p {
    font-size: .95rem;
    color: var(--grey);
    line-height: 1.65;
    font-weight: 500;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 1.1rem;
}

.svc-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: .68rem;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.18);
    padding: .2rem .55rem;
    border-radius: 4px;
}

/* ── WHY US ─────────────────────────────────────────────────────────────── */
.why-us { padding: 110px 6%; }

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-text .section-tag { margin-bottom: .7rem; }

.why-us-text h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.15;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
}

.why-us-text > p {
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: 1rem;
    color: var(--grey-light);
}

.feature-list li i {
    color: var(--cyan);
    margin-top: 4px;
    flex-shrink: 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: border-color .3s, box-shadow .3s;
}

.stat-box:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.07);
}

.stat-box .n {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan);
    display: block;
    line-height: 1;
    margin-bottom: .45rem;
}

.stat-box .l {
    font-family: 'Share Tech Mono', monospace;
    font-size: .72rem;
    color: var(--grey);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── PARTNERS ───────────────────────────────────────────────────────────── */
.partners {
    padding: 60px 6%;
    background: var(--charcoal-mid);
    border-top: 1px solid rgba(0, 212, 255, 0.07);
    border-bottom: 1px solid rgba(0, 212, 255, 0.07);
}

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

.partners-inner .eyebrow {
    font-family: 'Share Tech Mono', monospace;
    color: var(--grey);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 2.2rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.8rem;
    flex-wrap: wrap;
}

.partner-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    transition: color .3s;
    user-select: none;
}

.partner-name:hover { color: var(--grey-light); }

/* ── PROCESS ────────────────────────────────────────────────────────────── */
.process { padding: 110px 6%; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 29px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), rgba(0, 212, 255, 0.1));
}

.step { text-align: center; }

.step-circle {
    width: 58px;
    height: 58px;
    background: var(--charcoal-mid);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: .95rem;
    color: var(--cyan);
    margin: 0 auto 1.1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 22px rgba(0, 212, 255, 0.22);
}

.step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .45rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.step p { font-size: .9rem; color: var(--grey); line-height: 1.55; }

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.contact {
    padding: 110px 6%;
    background: var(--charcoal-mid);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 4.5rem;
    align-items: start;
}

.contact-info .section-tag { margin-bottom: .7rem; }

.contact-info h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-info > p {
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.cdetail {
    display: flex;
    align-items: center;
    gap: .85rem;
    font-size: .95rem;
    color: var(--grey-light);
}

.cdetail .icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 212, 255, 0.09);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
    font-size: .85rem;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: .72rem;
    color: var(--grey-light);
    margin-bottom: .45rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: .72rem 1rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.09);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.22); }

.form-group select { cursor: pointer; }
.form-group select option { background: var(--charcoal); font-family: 'Rajdhani', sans-serif; }
.form-group textarea { resize: vertical; min-height: 118px; }

/* -- PHONE INPUT ----------------------------------------------------------- */
.phone-wrap {
    display: flex;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.phone-wrap:focus-within {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.09);
}

.phone-wrap .phone-dial {
    background: rgba(255, 255, 255, 0.065);
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    padding: .72rem .5rem .72rem .8rem;
    width: auto;
    flex-shrink: 0;
    font-size: .95rem;
    cursor: pointer;
    color: var(--white);
    outline: none;
    box-shadow: none;
    -webkit-appearance: auto;
    appearance: auto;
}

.phone-wrap .phone-dial option { background: var(--charcoal); }

.phone-wrap input[type="tel"] {
    width: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: .72rem 1rem;
    flex: 1;
    min-width: 0;
    outline: none;
    box-shadow: none;
}

.phone-wrap input[type="tel"]:focus {
    border-color: transparent;
    box-shadow: none;
}

.form-note {
    font-family: 'Share Tech Mono', monospace;
    font-size: .72rem;
    color: var(--grey);
    margin-bottom: 1.1rem;
    letter-spacing: .5px;
}

.form-feedback {
    font-family: 'Share Tech Mono', monospace;
    font-size: .78rem;
    letter-spacing: .5px;
    padding: .65rem .9rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: none;
}

.form-feedback:not(:empty) { display: block; }
.form-success { color: #4ade80; background: rgba(74, 222, 128, 0.08); border: 1px solid rgba(74, 222, 128, 0.25); }
.form-error   { color: #f87171; background: rgba(248, 113, 113, 0.08); border: 1px solid rgba(248, 113, 113, 0.25); }

.btn-submit {
    width: 100%;
    background: var(--cyan);
    color: var(--charcoal);
    border: none;
    padding: .9rem 2rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background .25s, box-shadow .25s, transform .25s;
}

.btn-submit:hover {
    background: var(--white);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.35);
    transform: translateY(-2px);
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
    background: var(--charcoal-deep);
    padding: 65px 6% 32px;
    border-top: 1px solid rgba(0, 212, 255, 0.09);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--grey);
    font-size: .95rem;
    line-height: 1.7;
    margin-top: .9rem;
    max-width: 300px;
}

.footer-col h3, .footer-col h4 {
    font-family: 'Share Tech Mono', monospace;
    font-size: .72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey-light);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-col ul a {
    color: var(--grey);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    transition: color .25s;
}

.footer-col ul a:hover { color: var(--cyan); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.footer-bottom p {
    font-family: 'Share Tech Mono', monospace;
    color: var(--grey);
    font-size: .72rem;
    letter-spacing: .5px;
}

/* ── TEMPORARILY HIDDEN ──────────────────────────────────────────────────── */
.partners,
.hero-floating-stats,
.stat-grid { display: none; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }
.d7 { transition-delay: .56s; }
.d8 { transition-delay: .64s; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-floating-stats { display: none; }
    .why-us-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(22, 33, 62, 0.97);
        flex-direction: column;
        padding: 1.5rem 6%;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }
    .nav-links.open    { display: flex; }
    .services-grid     { grid-template-columns: repeat(2, 1fr); }
    .hamburger         { display: flex; }
    .process-steps     { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .contact-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top        { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
    .services-grid  { grid-template-columns: 1fr; }
    .stat-grid      { grid-template-columns: 1fr 1fr; }
    .process-steps  { grid-template-columns: 1fr; }
    .form-row       { grid-template-columns: 1fr; }
    .footer-bottom  { flex-direction: column; text-align: center; }
}
