@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=DM+Mono:wght@400;500&family=Inter:wght@300;400;500&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
    --black:     #0b0f1c;
    --bg-deep:   #090d18;
    --bg-mid:    #0f1628;
    --white:     #eef0f7;
    --mid:       #7b82a0;
    --dim:       #3a4060;
    --border:    rgba(120,140,255,0.10);
    --card-bg:   rgba(120,140,255,0.04);

    /* Accent — Indigo Electric */
    --accent:        #5b6ef5;
    --accent-light:  #7c8fff;
    --accent-glow:   rgba(91,110,245,0.25);
    --accent-dim:    rgba(91,110,245,0.12);

    /* Secondary accent — Teal */
    --teal:      #2dd4c7;
    --teal-dim:  rgba(45,212,199,0.12);

    --ff-display: 'Space Grotesk', sans-serif;
    --ff-mono:    'DM Mono', monospace;
    --ff-body:    'Inter', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; } /* Increased from 16px to scale up everything globally */
body {
    font-family: var(--ff-body);
    background: var(--bg-deep);
    background-image:
        radial-gradient(ellipse 80% 60% at 70% -10%, rgba(91,110,245,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 90%, rgba(45,212,199,0.06) 0%, transparent 55%);
    background-attachment: fixed;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent); opacity: 0.5; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

/* ─── Scroll reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    padding: 1.4rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: all 0.4s ease;
}
.header.scrolled {
    padding: 0.9rem 5%;
    background: rgba(9,13,24,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 30px rgba(91,110,245,0.06);
}

/* Logo */
.logo { display: flex; align-items: center; }
.site-logo {
    height: 130px;
    width: auto;
    filter: invert(1);
    transition: opacity 0.3s ease, transform 0.35s ease;
}
.site-logo:hover { opacity: 0.65; transform: scale(1.03); }
.site-logo--footer { height: 100px; }

/* Nav */
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
    font-family: var(--ff-mono);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mid);
    position: relative;
    transition: color 0.25s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    height: 1px; width: 0;
    background: var(--white);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-contact {
    font-family: var(--ff-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.75rem 1.8rem;
    border: 1px solid var(--accent);
    border-radius: 100px;
    color: var(--accent-light);
    transition: all 0.3s ease;
    box-shadow: 0 0 12px var(--accent-glow);
}
.btn-contact:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 24px var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
}

/* ═══════════════════════════════════════
   HERO — HOME
═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    overflow: hidden;
}

/* diagonal texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -58deg, transparent, transparent 90px,
        rgba(255,255,255,0.013) 90px,
        rgba(255,255,255,0.013) 91px
    );
    pointer-events: none;
    z-index: 0;
}

.hero-bg-orbs { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(130px); animation: drift 20s infinite alternate ease-in-out; }
.orb-1 {
    width: 55vw; height: 55vw;
    max-width: 700px; max-height: 700px;
    background: radial-gradient(circle, rgba(91,110,245,0.22) 0%, rgba(91,110,245,0.04) 70%);
    top: -15%; right: -5%;
}
.orb-2 {
    width: 50vw; height: 50vw;
    max-width: 600px; max-height: 600px;
    background: radial-gradient(circle, rgba(45,212,199,0.15) 0%, rgba(45,212,199,0.03) 70%);
    bottom: -10%; left: 15%;
    animation-delay: -10s;
}
.orb-3 {
    width: 30vw; height: 30vw;
    max-width: 380px; max-height: 380px;
    background: radial-gradient(circle, rgba(150,100,255,0.13) 0%, transparent 70%);
    top: 30%; left: -8%;
    animation-delay: -5s;
    animation-duration: 26s;
}
@keyframes drift {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(50px,80px) scale(1.18); }
}

/* eyebrow */
.hero-eyebrow {
    position: relative; z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--ff-mono);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 0.9s var(--ease-out) forwards 0.1s;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--mid);
}

/* main title */
.hero-title {
    position: relative; z-index: 1;
    font-family: var(--ff-display);
    font-size: clamp(3.5rem, 8.5vw, 8.5rem);
    font-weight: 700;
    line-height: 0.93;
    letter-spacing: -3px;
    max-width: 14ch;
    margin-bottom: 2.5rem;
    color: var(--white);
    opacity: 0;
    animation: slideUp 0.9s var(--ease-out) forwards 0.25s;
}
.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* subtitle */
.hero-subtitle {
    position: relative; z-index: 1;
    max-width: 520px;
    font-family: var(--ff-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 0.9s var(--ease-out) forwards 0.42s;
}

/* CTA */
.hero-cta {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.9s var(--ease-out) forwards 0.58s;
}

.btn-primary {
    font-family: var(--ff-mono);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 3.2rem;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent), #7c5ff5);
    color: var(--white);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #4a5de8, #6a4fe0);
    box-shadow: 0 6px 32px rgba(91,110,245,0.45);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: var(--ff-body);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.28s ease;
}
.btn-ghost i { font-size: 0.75rem; transition: transform 0.3s ease; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover i { transform: translateX(5px); }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--ff-mono);
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dim);
    opacity: 0;
    animation: slideUp 1s var(--ease-out) forwards 1.3s;
}
.scroll-hint-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, var(--dim), transparent);
    animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.8} 50%{opacity:.25} }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 24s linear infinite;
}
.marquee-item {
    font-family: var(--ff-mono);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dim);
    padding: 0 2.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.marquee-item::after { content: '◆'; color: var(--accent); opacity: 0.4; font-size: 0.5rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
.section-padding { padding: 9rem 5%; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 5rem;
    flex-wrap: wrap;
    gap: 2rem;
}
.section-label {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}
.section-note {
    font-family: var(--ff-body);
    font-size: 0.92rem;
    color: var(--mid);
    max-width: 290px;
    font-weight: 300;
    line-height: 1.75;
}

/* ═══════════════════════════════════════
   SERVICES LIST (home)
═══════════════════════════════════════ */
.services-list { max-width: 1200px; margin: 0 auto; }

.service-item {
    display: grid;
    grid-template-columns: 56px 1fr 1fr 44px;
    align-items: center;
    gap: 2rem;
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.35s var(--ease-out);
    color: var(--white);
    cursor: default;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 0.8rem; }
.service-num {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    color: var(--dim);
    letter-spacing: 2px;
    transition: color 0.3s;
}
.service-item:hover .service-num { color: var(--mid); }
.service-title {
    font-family: var(--ff-display);
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: transform 0.3s var(--ease-out);
}
.service-item:hover .service-title { transform: translateX(4px); }
.service-desc {
    font-family: var(--ff-body);
    font-size: 1.05rem;
    color: var(--mid);
    font-weight: 400;
    line-height: 1.7;
    max-width: 380px;
}
.service-arrow {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    color: var(--dim);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.service-item:hover .service-arrow {
    border-color: var(--accent);
    color: var(--accent-light);
    background: var(--accent-dim);
    box-shadow: 0 0 12px var(--accent-glow);
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 5%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
}

/* ═══════════════════════════════════════
   VISUAL BREAK
═══════════════════════════════════════ */
.visual-break {
    position: relative;
    padding: 11rem 5%;
    overflow: hidden;
}
.visual-break::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(9,13,24,0.88) 0%,
            rgba(15,22,50,0.82) 50%,
            rgba(9,13,24,0.88) 100%
        ),
        url('https://images.unsplash.com/photo-1626785774573-4b799315345d?auto=format&fit=crop&w=1920&q=80')
        center/cover fixed;
    z-index: -1;
}
.visual-break-inner { max-width: 1200px; margin: 0 auto; }
.visual-break-eyebrow {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mid);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.visual-break-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--mid); display: block; }
.visual-break-text {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2px;
    max-width: 900px;
    color: rgba(255,255,255,0.85);
}
.visual-break-text em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-section {
    padding: 9rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.cta-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(91,110,245,0.08) 0%, rgba(45,212,199,0.05) 100%);
    border: 1px solid rgba(91,110,245,0.2);
    border-radius: 24px;
    padding: 5.5rem 4rem;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    box-shadow: 0 0 80px rgba(91,110,245,0.08) inset;
}
.cta-inner::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, rgba(91,110,245,0.06), transparent 30%);
    animation: spin 14s linear infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes spin { 100%{transform:rotate(360deg);} }
.cta-text { position: relative; z-index: 1; }
.cta-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 1.2rem;
}
.cta-desc {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--mid);
    font-weight: 300;
    max-width: 440px;
    line-height: 1.8;
}
.cta-action { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 5rem 5% 2.5rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand { max-width: 280px; }
.footer-brand p {
    margin-top: 1.5rem;
    font-family: var(--ff-body);
    font-size: 0.88rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.8;
}
.footer-links h4 {
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mid);
    margin-bottom: 1.5rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.8rem; }
.footer-links ul li a {
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    transition: color 0.25s ease;
}
.footer-links ul li a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    color: var(--dim);
    letter-spacing: 0.5px;
}
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    color: var(--mid);
    transition: all 0.3s ease;
}
.social-links a:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════
   INNER PAGE HERO
═══════════════════════════════════════ */
.page-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: flex-end;
    padding: 12rem 5% 5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-hero-bg-orbs { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; width: 100%; }
.page-hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-top: 1.2rem;
}
.page-hero-title em {
    font-style: normal;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
    color: transparent;
}

/* active nav */
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-intro-text p {
    font-family: var(--ff-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.9;
}
.about-intro-text p strong { color: var(--white); font-weight: 500; }

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.vm-card {
    background: linear-gradient(160deg, rgba(91,110,245,0.06) 0%, rgba(45,212,199,0.03) 100%);
    border: 1px solid rgba(91,110,245,0.12);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s var(--ease-out);
}
.vm-card:hover {
    border-color: rgba(91,110,245,0.3);
    transform: translateY(-6px);
    background: linear-gradient(160deg, rgba(91,110,245,0.1) 0%, rgba(45,212,199,0.06) 100%);
    box-shadow: 0 16px 40px rgba(91,110,245,0.12);
}
.vm-icon {
    font-size: 1.6rem;
    color: var(--accent-light);
    margin-bottom: 1.8rem;
}
.vm-title {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.vm-text {
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.85;
}
.vm-text em { color: rgba(255,255,255,0.7); font-style: italic; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
}
.why-item { padding-top: 0.5rem; }
.why-num {
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: var(--dim);
    margin-bottom: 1.2rem;
    display: block;
}
.why-title {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}
.why-text {
    font-family: var(--ff-body);
    font-size: 0.88rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   SERVICES HERO CARDS (listing page)
═══════════════════════════════════════ */
.services-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-hero-card {
    display: block;
    background: linear-gradient(145deg, rgba(91,110,245,0.06) 0%, rgba(15,22,50,0.5) 100%);
    border: 1px solid rgba(91,110,245,0.12);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--ease-out);
    color: var(--white);
}
.service-hero-card:hover {
    border-color: rgba(91,110,245,0.3);
    transform: translateY(-7px);
    background: linear-gradient(145deg, rgba(91,110,245,0.11) 0%, rgba(15,22,50,0.6) 100%);
    box-shadow: 0 28px 56px rgba(91,110,245,0.15), 0 4px 16px rgba(0,0,0,0.4);
}
.shc-number {
    font-family: var(--ff-mono);
    font-size: 4.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 1.5rem; right: 2rem;
    line-height: 1;
}
.shc-content { position: relative; z-index: 1; }
.shc-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--accent-dim);
    border: 1px solid rgba(91,110,245,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 16px var(--accent-glow);
}
.shc-title {
    font-family: var(--ff-display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.9rem;
    line-height: 1.1;
}
.shc-desc {
    font-family: var(--ff-body);
    font-size: 0.88rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.shc-list { list-style: none; }
.shc-list li {
    font-family: var(--ff-body);
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.45rem;
    font-weight: 300;
}
.shc-list li i { font-size: 0.62rem; color: var(--dim); }
.shc-arrow {
    position: absolute;
    bottom: 2.5rem; right: 2.5rem;
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    color: var(--mid);
    transition: all 0.3s ease;
    z-index: 1;
}
.service-hero-card:hover .shc-arrow {
    border-color: var(--accent);
    color: var(--accent-light);
    background: var(--accent-dim);
    box-shadow: 0 0 12px var(--accent-glow);
}

/* Process steps */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.process-step { flex: 1; min-width: 180px; }
.process-arrow { padding-top: 0.8rem; color: var(--dim); font-size: 1rem; flex-shrink: 0; }
.ps-num {
    font-family: var(--ff-mono);
    font-size: 2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    margin-bottom: 1rem;
}
.ps-title {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
}
.ps-text {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   SERVICE DETAIL PAGES
═══════════════════════════════════════ */
.detail-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
.detail-intro-text {
    font-family: var(--ff-body);
    font-size: 0.97rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.9;
}
.detail-features { display: flex; flex-direction: column; gap: 0; }
.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--border);
}
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border: none; }
.feature-item > i {
    font-size: 1.1rem;
    color: var(--dim);
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}
.feature-item h3 {
    font-family: var(--ff-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.2px;
}
.feature-item p {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.75;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pkg-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.35s var(--ease-out);
}
.pkg-card:hover { border-color: rgba(255,255,255,0.17); transform: translateY(-4px); }
.pkg-card--featured {
    background: linear-gradient(145deg, rgba(91,110,245,0.12) 0%, rgba(45,212,199,0.07) 100%);
    border-color: rgba(91,110,245,0.3);
    box-shadow: 0 0 40px rgba(91,110,245,0.1);
}
.pkg-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--accent-glow);
}
.pkg-tier {
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1rem;
}
.pkg-name {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}
.pkg-desc {
    font-family: var(--ff-body);
    font-size: 0.83rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.pkg-list { list-style: none; margin-bottom: 2rem; }
.pkg-list li {
    font-family: var(--ff-body);
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 0.65rem;
    margin-bottom: 0.55rem;
    font-weight: 300;
}
.pkg-list li i { font-size: 0.62rem; color: var(--dim); }
.pkg-btn {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 100px;
    border: 1px solid rgba(91,110,245,0.25);
    color: var(--accent-light);
    transition: all 0.28s ease;
}
.pkg-btn:hover { border-color: var(--accent); background: var(--accent-dim); box-shadow: 0 0 16px var(--accent-glow); }
.pkg-btn--white { background: linear-gradient(135deg, var(--accent), #7c5ff5); color: var(--white); border-color: transparent; box-shadow: 0 4px 20px var(--accent-glow); }
.pkg-btn--white:hover { background: linear-gradient(135deg, #4a5de8, #6a4fe0); box-shadow: 0 6px 28px rgba(91,110,245,0.45); }

/* Local SEO strip */
.local-seo-section {
    background: linear-gradient(135deg, rgba(91,110,245,0.06) 0%, rgba(45,212,199,0.04) 100%);
    border-top: 1px solid rgba(91,110,245,0.12);
    border-bottom: 1px solid rgba(91,110,245,0.12);
    padding: 5rem 5%;
    margin: 5rem 0;
}
.local-seo-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    flex-wrap: wrap;
}
.local-seo-text h2 {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0.5rem 0 1rem;
    line-height: 1.1;
}
.local-seo-text p {
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--mid);
    font-weight: 300;
    max-width: 380px;
    line-height: 1.8;
}
.local-seo-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 440px; }
.seo-tag {
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(91,110,245,0.18);
    color: var(--accent-light);
    background: var(--accent-dim);
    transition: all 0.2s ease;
}
.seo-tag:hover { border-color: var(--accent); background: rgba(91,110,245,0.18); }

/* Other services row */
.other-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.other-svc-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.28s ease;
    background: var(--card-bg);
}
.other-svc-card:hover {
    border-color: rgba(91,110,245,0.3);
    color: var(--white);
    background: linear-gradient(135deg, rgba(91,110,245,0.08) 0%, rgba(45,212,199,0.04) 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(91,110,245,0.1);
}
.other-svc-card > i:first-child { color: var(--accent-light); font-size: 0.95rem; }
.other-svc-card span { flex: 1; }
.other-svc-card > i:last-child { font-size: 0.75rem; }

/* ═══════════════════════════════════════
   FLOATING CONTACTS
═══════════════════════════════════════ */
.floating-contacts {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}
.fc-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.fc-btn:hover {
    transform: scale(1.1);
}
.fc-phone {
    background: linear-gradient(135deg, var(--accent), #7c5ff5);
}
.fc-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* ═══════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════ */
.mobile-menu-btn { display: none; }

@media(max-width: 1024px) {
    .service-item { grid-template-columns: 44px 1fr 40px; }
    .service-desc { display: none; }
}

@media(max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
    .vm-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-hero-grid { grid-template-columns: 1fr; }
    .detail-overview-grid { grid-template-columns: 1fr; gap: 3rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .other-services-grid { grid-template-columns: 1fr; }
    .local-seo-inner { flex-direction: column; }
    .process-steps { flex-direction: column; gap: 2rem; }
    .process-arrow { display: none; }
    .cta-inner { flex-direction: column; }
}

@media(max-width: 768px) {
    html { font-size: 19px; } /* MASSIVE scaling on mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(9,13,24,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 5%;
        border-bottom: 1px solid var(--border);
        gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
    .btn-contact { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { align-items: center; text-align: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-title { letter-spacing: -1.5px; font-size: clamp(3rem, 11vw, 4rem); }
    .hero-cta { flex-direction: column; align-items: center; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .site-logo { height: 100px; }
    .site-logo--footer { height: 80px; }
    .footer-content { flex-direction: column; }
    .floating-contacts { bottom: 1.5rem; right: 1.5rem; gap: 0.8rem; }
    .fc-btn { width: 55px; height: 55px; font-size: 1.3rem; }
    .footer-content { flex-direction: column; }
    .why-grid { grid-template-columns: 1fr; }
    .page-hero { min-height: 55vh; padding-top: 8rem; }
    .page-hero-title { letter-spacing: -1.5px; }
    .visual-break-text { font-size: clamp(2.2rem, 7vw, 3rem); }
    .cta-inner { padding: 3rem 2rem; }
    .service-item { grid-template-columns: 44px 1fr 40px; }
}
