/* ============================================================
   DIGITAMA GLOBAL SINERGI — Company Profile Website
   Design: kombinasi GSV (navy+orange, clean) & DIGITAMA (dark, bold)
   Fonts: Space Grotesk (headings) + Plus Jakarta Sans (body)
   ============================================================ */

/* --- Custom Properties --- */
:root {
    /* Brand — GSV navy + DIGITAMA dark + GSV orange */
    --navy-950:      #020d1f;
    --primary:       #001d40;
    --secondary:     #07256d;
    --accent:        #ee7614;
    --accent-hover:  #d4650f;
    --accent-light:  #ff9540;
    --accent-soft:   rgba(238,118,20,.12);
    --gray-blue:     #7d8c9e;
    --dark-panel:    #2a3245;

    /* Neutrals */
    --white:         #ffffff;
    --light-bg:      #f4f6fa;
    --light-gray:    #e9ecef;
    --line:          #e3e9f2;
    --mid-gray:      #6c757d;
    --text:          #101c2e;
    --text-light:    #adb5bd;

    /* Shadows */
    --shadow-sm:     0 1px 3px rgba(0,0,0,.06);
    --shadow-md:     0 4px 20px rgba(0,0,0,.08);
    --shadow-lg:     0 12px 40px rgba(0,0,0,.12);
    --shadow-xl:     0 24px 60px rgba(0,0,0,.18);

    /* Radius */
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     18px;
    --radius-xl:     28px;

    /* Transitions */
    --ease-out:      cubic-bezier(.22,.61,.36,1);
    --ease-spring:   cubic-bezier(.34,1.56,.64,1);

    /* Spacing */
    --section-gap:   clamp(4rem, 8vw, 7rem);
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 3px;
}

/* --- Container --- */
.container {
    width: min(100% - 2rem, 1160px);
    margin-inline: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    border-radius: var(--radius-md);
    transition: all .3s var(--ease-out);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: .01em;
}
.btn svg { transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn--accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(238,118,20,.35);
}
.btn--accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(238,118,20,.5);
}

.btn--outline {
    border-color: rgba(255,255,255,.5);
    color: var(--white);
    backdrop-filter: blur(4px);
}
.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-white {
    border-color: rgba(255,255,255,.7);
    color: var(--white);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

/* --- Section Tags & Titles --- */
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent);
    margin-bottom: .75rem;
    padding-left: 2.4rem;
    position: relative;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 2px;
    background: var(--accent);
}
.section-tag--light { color: var(--accent-light); }
.section-tag--light::before { background: var(--accent-light); }

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }
.text-accent { color: var(--accent); }

.section-desc {
    font-size: 1.05rem;
    color: var(--mid-gray);
    max-width: 580px;
    line-height: 1.75;
}
.section-desc--light { color: var(--text-light); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .section-desc { margin-inline: auto; }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 9999;
    width: 0%;
    transition: width .1s linear;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all .4s var(--ease-out);
}
.navbar.scrolled {
    background: rgba(0,29,64,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: .65rem 0;
    box-shadow: 0 4px 32px rgba(0,0,0,.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar__logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: .55rem;
    z-index: 1001;
}
.navbar__logo-mark { flex-shrink: 0; }
.navbar__logo-accent { color: var(--accent); }

/* Nav */
.navbar__nav { display: flex; gap: .15rem; }
.navbar__link {
    padding: .5rem .9rem;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255,255,255,.72);
    border-radius: var(--radius-sm);
    transition: all .25s;
    position: relative;
}
.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: .9rem;
    right: .9rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .3s var(--ease-out);
    transform-origin: left;
}
.navbar__link:hover,
.navbar__link.active {
    color: var(--white);
}
.navbar__link:hover::after,
.navbar__link.active::after {
    transform: scaleX(1);
}

/* Hamburger */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}
.navbar__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s var(--ease-spring);
}
.navbar__toggle.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.navbar__toggle.open span:nth-child(2) { opacity:0; }
.navbar__toggle.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(155deg, var(--navy-950) 0%, var(--primary) 40%, var(--secondary) 100%);
    overflow: hidden;
    padding: 7rem 0 5rem;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

/* Hero grid overlay */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black 25%, transparent 70%);
}

/* Hero glow orbs */
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .15;
}
.hero__glow--1 {
    width: 500px; height: 500px;
    background: var(--accent);
    top: -150px; right: -120px;
    animation: floatHero1 18s ease-in-out infinite;
}
.hero__glow--2 {
    width: 350px; height: 350px;
    background: var(--secondary);
    bottom: -80px; left: -80px;
    animation: floatHero2 22s ease-in-out infinite;
}

@keyframes floatHero1 {
    0%,100% { transform:translate(0,0) scale(1); }
    33% { transform:translate(-30px,20px) scale(1.1); }
    66% { transform:translate(15px,-15px) scale(.9); }
}
@keyframes floatHero2 {
    0%,100% { transform:translate(0,0); }
    50% { transform:translate(25px,-30px) scale(1.12); }
}

/* ===== Hero Network Mesh ===== */
.hero__network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .55;
}

/* Network lines — animate stroke-dashoffset */
.net-line {
    stroke-dasharray: 500 1500;
    animation: dashFlow 6s linear infinite;
}
.net-line--1 { stroke-dasharray: 400 1200; animation-duration: 5s; }
.net-line--2 { stroke-dasharray: 350 1100; animation-duration: 7s; animation-delay: -2s; }
.net-line--3 { stroke-dasharray: 450 1300; animation-duration: 6.5s; animation-delay: -4s; }
.net-line--4 { stroke-dasharray: 200 800; animation-duration: 4.5s; animation-delay: -1s; }
.net-line--5 { stroke-dasharray: 250 900; animation-duration: 5.5s; animation-delay: -3s; }
.net-line--6 { stroke-dasharray: 180 700; animation-duration: 4s; animation-delay: -1.5s; }
.net-line--7 { stroke-dasharray: 220 850; animation-duration: 5.2s; animation-delay: -2.8s; }

@keyframes dashFlow {
    0% { stroke-dashoffset: 600; opacity: .3; }
    50% { opacity: .8; }
    100% { stroke-dashoffset: -400; opacity: .3; }
}

/* Network nodes — pulse */
.net-node {
    animation: nodePulse 3s ease-in-out infinite;
}
.net-node--1 { animation-delay: 0s; }
.net-node--2 { animation-delay: .4s; }
.net-node--3 { animation-delay: .8s; }
.net-node--4 { animation-delay: 1.2s; }
.net-node--5 { animation-delay: 1.6s; }
.net-node--6 { animation-delay: .2s; }
.net-node--7 { animation-delay: .6s; }
.net-node--8 { animation-delay: 1s; }
.net-node--9 { animation-delay: 1.4s; }
.net-node--10 { animation-delay: .3s; }
.net-node--11 { animation-delay: .9s; }
.net-node--12 { animation-delay: 1.5s; }

@keyframes nodePulse {
    0%, 100% { r: attr(r); opacity: .4; }
    50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(238,118,20,.8)); }
}

/* Data pulses */
.data-pulse {
    filter: drop-shadow(0 0 8px rgba(255,255,255,.9)) drop-shadow(0 0 16px rgba(238,118,20,.6));
    animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { opacity: .3; }
    50% { opacity: 1; }
}

/* ===== Circuit Board ===== */
.hero__circuit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: .6;
}
.circuit-line {
    stroke-dasharray: 300 900;
    animation: circuitFlow 8s linear infinite;
}
.circuit-line:nth-child(1) { animation-delay: 0s; }
.circuit-line:nth-child(2) { animation-delay: -2s; }
.circuit-line:nth-child(3) { animation-delay: -4s; }
.circuit-line:nth-child(4) { animation-delay: -1s; }
.circuit-line:nth-child(5) { animation-delay: -3s; }
.circuit-line:nth-child(6) { animation-delay: -5s; }

@keyframes circuitFlow {
    0% { stroke-dashoffset: 600; }
    100% { stroke-dashoffset: -200; }
}

/* ===== Scan Line ===== */
.hero__scanline {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(238,118,20,.15) 15%,
        rgba(238,118,20,.4) 50%,
        rgba(238,118,20,.15) 85%,
        transparent
    );
    z-index: 3;
    animation: scanDown 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes scanDown {
    0% { top: -2px; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ===== Floating Particles ===== */
.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(238,118,20,.5);
}
.particle--1 {
    width: 4px; height: 4px;
    top: 20%; left: 15%;
    animation: particleFloat 6s ease-in-out infinite;
}
.particle--2 {
    width: 3px; height: 3px;
    top: 60%; left: 25%;
    animation: particleFloat 7s ease-in-out 1s infinite;
}
.particle--3 {
    width: 5px; height: 5px;
    top: 35%; left: 70%;
    animation: particleFloat 5.5s ease-in-out .5s infinite;
}
.particle--4 {
    width: 3px; height: 3px;
    top: 75%; left: 80%;
    animation: particleFloat 6.5s ease-in-out 2s infinite;
}
.particle--5 {
    width: 4px; height: 4px;
    top: 15%; left: 50%;
    animation: particleFloat 5s ease-in-out 1.5s infinite;
}
.particle--6 {
    width: 2px; height: 2px;
    top: 50%; left: 85%;
    animation: particleFloat 7.5s ease-in-out .8s infinite;
}
.particle--7 {
    width: 3px; height: 3px;
    top: 80%; left: 40%;
    animation: particleFloat 6s ease-in-out 2.5s infinite;
}
.particle--8 {
    width: 4px; height: 4px;
    top: 45%; left: 5%;
    animation: particleFloat 5.8s ease-in-out 3s infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .2; }
    25% { transform: translate(20px, -30px) scale(1.8); opacity: .8; }
    50% { transform: translate(-15px, -60px) scale(1); opacity: .3; }
    75% { transform: translate(10px, -20px) scale(1.5); opacity: .6; }
}

/* Hero content */
.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1.1rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(255,255,255,.85);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.06);
}
.hero__badge-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.5; transform:scale(1.3); }
}

.hero__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
}
.hero__title-accent {
    background: linear-gradient(135deg, var(--accent) 20%, var(--accent-light) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.08rem;
    color: rgba(255,255,255,.68);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero tags */
.hero__tags {
    display: flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__tag {
    padding: .35rem 1rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,.04);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
    0%,100% { transform:translateX(-50%) translateY(0); }
    50% { transform:translateX(-50%) translateY(8px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    background: var(--dark-panel);
    padding: .9rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee__inner {
    display: inline-flex;
    gap: 2rem;
    animation: marquee 28s linear infinite;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: .04em;
}
.marquee__dot { color: var(--accent); }
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce) { .marquee__inner { animation:none; } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
    padding: 3rem 0;
    background: var(--light-bg);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stats__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: .4rem;
    font-variant-numeric: tabular-nums;
}
.stats__label {
    font-size: .88rem;
    color: var(--mid-gray);
    font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: var(--section-gap) 0; background: var(--white); }

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.about__highlights {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.about__highlight {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 500;
    font-size: .95rem;
    color: var(--primary);
}

/* Legalitas badges */
.about__legal {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.legal-badge {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .75rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-size: .78rem;
    background: var(--light-bg);
}
.legal-badge__icon { font-size: 1.1rem; }
.legal-badge__num { font-weight: 700; color: var(--primary); display: block; }
.legal-badge__src { color: var(--mid-gray); font-size: .7rem; }

/* About illustration */
.about__visual { display: flex; justify-content: center; }
.about__illustration-svg { width: 100%; max-width: 320px; height: auto; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: var(--section-gap) 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Background decorations */
.services__bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.services__bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .04;
}
.services__bg-circle--1 {
    width: 500px; height: 500px;
    background: var(--primary);
    top: -180px; right: -120px;
}
.services__bg-circle--2 {
    width: 350px; height: 350px;
    background: var(--accent);
    bottom: -100px; left: -80px;
}

/* Grid */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

/* Single card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.25rem 2rem;
    position: relative;
    transition: all .4s var(--ease-out);
    border: 1px solid transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04);
}

/* Subtle gradient overlay */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(238,118,20,.02) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity .4s;
    opacity: 0;
}
.service-card:hover::after { opacity: 1; }

/* Top accent line — only visible on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 1.5rem; right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform .5s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }

/* Hover lift */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 8px rgba(0,0,0,.04), 0 16px 40px rgba(0,29,64,.1);
    border-color: rgba(0,29,64,.08);
}

/* Featured card — subtle highlight */
.service-card--featured {
    border-color: rgba(238,118,20,.15);
    box-shadow: 0 1px 3px rgba(0,0,0,.03), 0 8px 28px rgba(238,118,20,.06);
}

/* Number badge */
.service-card__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: .06;
    position: absolute;
    top: .75rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
    transition: all .4s var(--ease-out);
}
.service-card:hover .service-card__number {
    opacity: .1;
    color: var(--accent);
}

/* Icon wrap */
.service-card__icon-wrap {
    width: 60px; height: 60px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0,29,64,.06), rgba(238,118,20,.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: all .4s var(--ease-out);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-card__icon-wrap {
    background: linear-gradient(135deg, rgba(238,118,20,.12), rgba(0,29,64,.08));
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(238,118,20,.1);
}

/* Title */
.service-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .55rem;
    position: relative;
    z-index: 1;
    letter-spacing: -.01em;
}

/* Description */
.service-card__desc {
    font-size: .9rem;
    color: var(--mid-gray);
    line-height: 1.68;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Chips */
.service-card__chips {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.service-card__chips span {
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .7rem;
    border-radius: 50px;
    background: rgba(0,29,64,.06);
    color: var(--primary);
    transition: all .3s;
    letter-spacing: .01em;
}
.service-card:hover .service-card__chips span {
    background: var(--accent-soft);
    color: var(--accent);
}

/* Tag ribbon */
.service-card__tag {
    position: absolute;
    top: 1.15rem;
    right: -2rem;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .3rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(238,118,20,.25);
}
.services__cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
}
.services__cta-text {
    font-size: 1rem;
    color: var(--mid-gray);
    margin-bottom: 1rem;
}

.service-card__tag--new {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(7,37,109,.25);
}

/* Service Detail Rows */
.svc-detail {
    padding: 2rem 0 1rem;
    scroll-margin-top: 90px;
}
.svc-detail + .svc-detail { border-top: 1px solid var(--line); }

.svc-detail__row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: 2.5rem 0;
}
.svc-detail__row--reverse { grid-template-columns: 1.2fr 1fr; }
.svc-detail__row--reverse .svc-detail__visual { order: 2; }
.svc-detail__row--reverse .svc-detail__content { order: 1; }

.svc-detail__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}
.svc-detail__icon-lg {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,29,64,.04), rgba(238,118,20,.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all .4s var(--ease-out);
}
.svc-detail__row:hover .svc-detail__icon-lg {
    transform: scale(1.06);
    box-shadow: 0 8px 32px rgba(238,118,20,.12);
}

.svc-detail__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    opacity: .05;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.svc-detail__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}
.svc-detail__lead {
    font-size: 1rem;
    color: var(--mid-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.svc-detail__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.svc-detail__feature h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .3rem;
    position: relative;
    padding-left: 1.2rem;
}
.svc-detail__feature h4::before {
    content: '';
    position: absolute;
    left: 0; top: .4rem;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.svc-detail__feature p {
    font-size: .85rem;
    color: var(--mid-gray);
    line-height: 1.6;
    padding-left: 1.2rem;
}

/* Package tags */
.svc-detail__packages {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}
.svc-package {
    padding: .5rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    transition: all .3s;
}
.svc-package:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}
.svc-package small {
    display: block;
    font-weight: 400;
    color: var(--mid-gray);
    font-size: .75rem;
    margin-top: .1rem;
}

/* ===== Products expansion ===== */
.product-card__laptop {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}
.product-card__laptop-svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
    transition: transform .4s var(--ease-out);
}
.product-card:hover .product-card__laptop-svg {
    transform: translateY(-4px) scale(1.03);
}

.product-card__header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.product-card__series {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .2rem .6rem;
    border-radius: 50px;
    background: rgba(238,118,20,.15);
    color: var(--accent-light);
}

.product-card__specs {
    display: grid;
    gap: .55rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.product-spec {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
}
.product-spec__label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.4);
}
.product-spec__value {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    text-align: right;
}

/* Equipment catalog */
.products__equipment {
    margin-top: 4rem;
    text-align: center;
}
.products__equipment-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.equipment-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    font-weight: 600;
    transition: all .35s var(--ease-out);
}
.equipment-item:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(238,118,20,.3);
    color: var(--white);
    transform: translateY(-4px);
}
.equipment-item svg { transition: all .35s; }
.equipment-item:hover svg { filter: drop-shadow(0 0 8px rgba(238,118,20,.4)); }

.products__cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
}
.products__cta p {
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
}

/* ============================================================
   PRODUCTS (Dark Section — DIGITAMA style)
   ============================================================ */

/* ============================================================
   PRODUCTS (Dark Section — DIGITAMA style)
   ============================================================ */
.products {
    padding: var(--section-gap) 0;
    background: linear-gradient(160deg, var(--primary) 0%, var(--dark-panel) 100%);
    position: relative;
    overflow: hidden;
}
.products::before {
    content: '';
    position: absolute;
    width: 450px; height: 450px;
    border-radius: 50%;
    background: rgba(238,118,20,.05);
    top: -120px; right: -80px;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(4px);
    transition: all .35s var(--ease-out);
}
.product-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-4px);
}

.product-card__brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.product-card__features {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.product-card__feature {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: rgba(255,255,255,.72);
}
.product-card__feature svg { flex-shrink: 0; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
    padding: var(--section-gap) 0;
    background: linear-gradient(160deg, var(--navy-950) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(238,118,20,.05);
    top: -150px; right: -80px;
    pointer-events: none;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(4px);
    transition: all .35s var(--ease-out);
}
.why-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
    transform: translateY(-4px);
}
.why-card__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .12em;
    margin-bottom: .75rem;
}
.why-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}
.why-card__desc {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process {
    padding: var(--section-gap) 0;
    background: var(--white);
}
.process__timeline {
    position: relative;
    padding: 1rem 0;
}
.process__line {
    display: none; /* hidden on mobile */
}
.process__steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}
.process-step {
    text-align: center;
    padding: 1.5rem .75rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all .35s var(--ease-out);
    border: 1px solid transparent;
}
.process-step:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.process-step__circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .85rem;
    transition: all .35s var(--ease-out);
}
.process-step:hover .process-step__circle {
    background: var(--accent);
    box-shadow: 0 8px 24px rgba(238,118,20,.35);
}
.process-step__circle span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
}
.process-step__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .35rem;
}
.process-step__desc {
    font-size: .8rem;
    color: var(--mid-gray);
    line-height: 1.5;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
    padding: 4rem 0;
    background: var(--white);
}
.cta__box {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    box-shadow: 0 24px 60px rgba(238,118,20,.3);
    position: relative;
    overflow: hidden;
}
.cta__box::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    bottom: -100px; right: -60px;
    pointer-events: none;
}
.cta__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem;
    position: relative;
    z-index: 1;
}
.cta__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy-950);
    color: var(--white);
    padding: 4.5rem 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
}
.footer__logo-accent { color: var(--accent); }
.footer__about {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 340px;
}
.footer__heading {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.45);
    margin-bottom: 1.25rem;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.footer__links a {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    transition: color .2s;
}
.footer__links a:hover { color: var(--accent); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.footer__contact li {
    display: flex;
    gap: .7rem;
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    align-items: flex-start;
    line-height: 1.5;
}
.footer__contact svg { flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
}
.footer__legal { margin-top: .3rem; font-size: .75rem; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    z-index: 900;
    transition: all .3s var(--ease-spring);
    animation: waPulseRing 2.5s ease-out infinite;
}
.whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #25d366;
    opacity: 0;
    animation: waRing 2.5s ease-out infinite;
}
@keyframes waRing {
    0% { transform:scale(1); opacity:.5; }
    100% { transform:scale(1.3); opacity:0; }
}
@keyframes waPulseRing {
    0%,100% { box-shadow:0 6px 24px rgba(37,211,102,.4); }
    50% { box-shadow:0 6px 32px rgba(37,211,102,.6); }
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px; height: 44px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    z-index: 900;
    transition: all .3s var(--ease-out);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
    transition-delay: calc(var(--d, 0) * 80ms);
}
[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   PAGE HERO (Sub-pages)
   ============================================================ */
.page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(155deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}
.page-hero--dark {
    background: linear-gradient(155deg, var(--navy-950) 0%, var(--primary) 60%);
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
}
.page-hero__content { position: relative; z-index: 1; text-align: center; }
.page-hero__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.03em;
    margin-bottom: .75rem;
}
.page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================================
   SERVICE PAGE SECTIONS
   ============================================================ */
.svc-page-section {
    padding: var(--section-gap) 0;
    background: var(--white);
}
.svc-page-section--alt { background: var(--light-bg); }

.svc-page__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.svc-page__grid--reverse { grid-template-columns: 1.1fr .9fr; }
.svc-page__grid--reverse .svc-page__visual { order: 2; }
.svc-page__grid--reverse .svc-page__content { order: 1; }

.svc-page__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.svc-page__laptop-illus {
    display: flex;
    justify-content: center;
}
.svc-page__laptop-illus svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.2));
}
.svc-page__icon {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,29,64,.03), rgba(238,118,20,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid rgba(238,118,20,.1);
}
.svc-page__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary);
    opacity: .04;
    position: absolute;
    bottom: -1rem;
    pointer-events: none;
}

/* Service features */
.svc-page__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}
.svc-page__feature {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}
.svc-page__feature svg { flex-shrink: 0; margin-top: 2px; }
.svc-page__feature strong { display: block; font-size: .95rem; color: var(--primary); margin-bottom: .15rem; }
.svc-page__feature p { font-size: .88rem; color: var(--mid-gray); line-height: 1.6; }

/* Package cards */
.svc-page__packages { margin-top: 2rem; }
.svc-page__packages h3,
.svc-page__process h3,
.svc-page__catalog h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
.package-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: all .3s var(--ease-out);
}
.package-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.package-card--featured { border-color: var(--accent); background: rgba(238,118,20,.03); }
.package-card__period {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .35rem;
}
.package-card__price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: .15rem;
}
.package-card__unit { display: block; font-size: .72rem; color: var(--mid-gray); margin-bottom: .5rem; }
.package-card__desc { font-size: .78rem; color: var(--mid-gray); line-height: 1.45; }

/* Mini steps */
.svc-page__process { margin-top: 2rem; }
.mini-steps {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}
.mini-step {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: .55rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--primary);
}
.mini-step__num {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.mini-step__arrow { color: var(--accent); font-weight: 700; font-size: 1.1rem; }

/* Catalog grid */
.svc-page__catalog { margin-top: 2rem; }
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
}
.catalog-item {
    padding: .55rem .85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 500;
    color: var(--primary);
    background: var(--white);
    text-align: center;
    transition: all .25s;
}
.catalog-item:hover { border-color: var(--accent); background: var(--accent-soft); }

/* ============================================================
   PRODUCT PAGE SECTIONS
   ============================================================ */
.prod-section { padding: var(--section-gap) 0; background: var(--white); }

/* Product detail row */
.prod-detail { padding: 2rem 0 0; }
.prod-detail--alt { background: var(--light-bg); margin: 0 calc(-50vw + 50%); padding: 3rem calc(50vw - 50%); }
.prod-detail + .prod-detail { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 3rem; }

.prod-detail__row {
    display: grid;
    grid-template-columns: 280px 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.prod-detail__badge { text-align: center; }
.prod-detail__laptop {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.prod-detail__laptop svg {
    width: 100%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,.15));
}
.prod-detail__brand-icon {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,29,64,.04), rgba(238,118,20,.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem;
    color: var(--accent);
}
.prod-detail__series {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
}
.prod-detail__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -.02em;
}

.prod-detail__specs h4,
.prod-detail__features h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--mid-gray);
    margin-bottom: .75rem;
}

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td {
    padding: .5rem 0;
    font-size: .85rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.spec-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    width: 90px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding-right: .75rem;
}
.spec-table td:last-child { color: var(--mid-gray); }

/* Feature list */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.feature-list li {
    font-size: .85rem;
    color: var(--mid-gray);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}
.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: .7rem;
    top: .2rem;
}

/* Comparison table */
.compare-section { padding: var(--section-gap) 0; background: var(--light-bg); }
.compare-table-wrap { overflow-x: auto; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.compare-table th, .compare-table td {
    padding: .85rem 1.25rem;
    text-align: center;
    font-size: .88rem;
}
.compare-table thead th {
    background: var(--primary);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: .95rem;
}
.compare-table thead th:first-child { text-align: left; background: var(--navy-950); }
.compare-table tbody td { border-bottom: 1px solid var(--line); }
.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary);
}
.score-high { color: var(--accent); font-weight: 700; letter-spacing: .1em; }
.score-mid { color: var(--gray-blue); font-weight: 700; letter-spacing: .1em; }

/* Equipment section */
.equip-section { padding: var(--section-gap) 0; background: var(--white); }
.equip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.equip-card {
    background: var(--light-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: all .35s var(--ease-out);
}
.equip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(238,118,20,.2);
}
.equip-card__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent);
}
.equip-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .35rem;
}
.equip-card p { font-size: .82rem; color: var(--mid-gray); line-height: 1.55; }

/* ============================================================
   RESPONSIVE — SUB-PAGES
   ============================================================ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .svc-detail__row { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .svc-detail__features { grid-template-columns: repeat(2, 1fr); }
    .svc-page__grid { grid-template-columns: 1fr; gap: 2rem; }
    .svc-page__grid--reverse .svc-page__visual { order: -1; }
    .svc-page__icon { width: 120px; height: 120px; }
    .svc-page__num { font-size: 4rem; }
    .package-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-grid { grid-template-columns: repeat(3, 1fr); }
    .prod-detail__row { grid-template-columns: 1fr 1fr; }
    .prod-detail__badge { grid-column: span 2; }
    .equip-grid { grid-template-columns: repeat(3, 1fr); }
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .equipment-grid { grid-template-columns: repeat(3, 1fr); }
    .process__steps { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__col--main { grid-column: span 2; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Nav */
    .navbar__toggle { display: flex; }
    .navbar__nav {
        position: fixed;
        inset: 0;
        background: rgba(0,29,64,.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s;
    }
    .navbar__nav.open { opacity: 1; pointer-events: auto; }
    .navbar__link { font-size: 1.2rem; padding: .8rem 2rem; }

    /* About */
    .about__grid { grid-template-columns: 1fr; }
    .about__visual { order: -1; }

    /* Sections */
    .services__grid { grid-template-columns: 1fr; }
    .svc-detail__row { grid-template-columns: 1fr; gap: 2rem; }
    .svc-detail__row--reverse .svc-detail__visual { order: -1; }
    .svc-detail__features { grid-template-columns: 1fr; }
    .svc-page__grid { grid-template-columns: 1fr; }
    .svc-page__grid--reverse .svc-page__visual { order: -1; }
    .package-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-detail__row { grid-template-columns: 1fr; }
    .prod-detail__badge { grid-column: span 1; }
    .equip-grid { grid-template-columns: repeat(2, 1fr); }
    .products__grid { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__grid { grid-template-columns: 1fr; }
    .process__steps { grid-template-columns: repeat(2, 1fr); }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer__col--main { grid-column: span 2; }

    .about__legal { gap: .5rem; }
    .page-hero { padding: 7rem 0 3rem; }
    .prod-detail__laptop svg { max-width: 160px; }
    .compare-table th, .compare-table td { padding: .6rem .8rem; font-size: .8rem; }
    .svc-page__laptop-illus svg { max-width: 200px; }
    .mini-steps { gap: .35rem; }
    .mini-step { padding: .45rem .75rem; font-size: .78rem; }

    .whatsapp-fab { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; }
    .back-to-top { bottom: 1.5rem; left: 1.5rem; }
    .products__cta { padding: 1rem; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__tags { flex-wrap: wrap; justify-content: center; }
    .hero__stats { flex-direction: column; align-items: center; gap: 1.5rem; }
    .hero__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .cta__actions { flex-direction: column; align-items: center; }
    .about__legal { flex-direction: column; }
    .about__visual { flex-direction: column; align-items: center; }
    .about__card--offset { margin-top: 0; }
    .services__cta { padding: 1rem; }
    .svc-detail__packages { flex-direction: column; align-items: stretch; }
    .svc-page__laptop-illus svg { max-width: 200px; }
    .package-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .mini-steps { flex-direction: column; align-items: stretch; }
    .mini-step__arrow { display: none; }
    .products__cta { padding: 1rem; }
    .product-card__laptop-svg { max-width: 140px; }
    .prod-detail__laptop svg { max-width: 160px; }
    .equip-grid { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .stats__num { font-size: 1.6rem; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__col--main { grid-column: span 1; }
    .footer__bottom { text-align: center; }
    .page-hero { padding: 6rem 0 3rem; }
    .page-hero__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .service-card__tag { font-size: .6rem; padding: .2rem 1.8rem; right: -1.5rem; }
    .service-card { padding: 1.5rem 1.25rem; }
    .service-card__number { font-size: 2.2rem; top: .5rem; right: 1rem; }
    .navbar__logo { font-size: 1rem; }
    .navbar__logo-mark { width: 30px; height: 30px; }
    .spec-table td:first-child { width: 70px; font-size: .7rem; }
    .spec-table td { font-size: .78rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}
