/* TechLeaf Systems — Design System */
:root {
  --green: #1a7a4a;
  --green-light: #22a05e;
  --green-dark: #145e38;
  --blue: #1a3a6e;
  --blue-light: #2451a0;
  --orange: #e8621a;
  --orange-light: #f07a30;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-500: #718096;
  --gray-700: #2d3748;
  --gray-900: #1a202c;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.08), 0 4px 10px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.2s ease;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-700); line-height: 1.6; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* Typography */
h1, h2, h3, h4, h5 { line-height: 1.25; color: var(--gray-900); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--gray-500); line-height: 1.75; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--blue); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-green { background: var(--green); color: var(--white); }
.section-green h2, .section-green h3 { color: var(--white); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 600px; margin: 1rem auto 0; }
.section-tag { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green); background: rgba(26,122,74,.1); padding: .3rem .75rem; border-radius: 50px; margin-bottom: .75rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .95rem 2.25rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem; cursor: pointer; border: 2px solid transparent; transition: var(--transition); text-decoration: none; white-space: nowrap; }
.btn-lg { padding: 1.15rem 2.5rem; font-size: 1.08rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .875rem; }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }
.btn-light { background: var(--white); color: var(--green); border-color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--green); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--green); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--green); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); color: var(--green-dark); }
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: #d05515; border-color: #d05515; color: var(--white); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--green); }
.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; color: var(--white); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.header-top { background: var(--green); color: var(--white); padding: .35rem 0; font-size: .82rem; }
.header-top .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.header-top a { color: var(--white); opacity: .9; }
.header-top a:hover { opacity: 1; }
.header-top-contact { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.header-top-contact span { display: flex; align-items: center; gap: .35rem; }
.header-main { padding: 0; }
.header-main .container { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.5rem; }
.logo { display: grid; grid-auto-flow: column; align-items: center; gap: .5rem; flex-shrink: 0; }
.logo-mark { width: 72px; height: 72px; background: transparent; border-radius: 0; display: flex; align-items: center; justify-content: center; padding: 0; min-width: 72px; }
.logo-mark svg { display: none; }
.logo-mark::before { content: ''; width: 100%; height: 100%; background-image: url('../../pic/Real%20tech.png'); background-position: center; background-size: contain; background-repeat: no-repeat; display: block; }
.logo-text { line-height: 1.1; }
.logo-name { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); letter-spacing: -.02em; }
.logo-tag { font-size: .68rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; }

/* Navigation */
.nav { display: flex; align-items: center; gap: .25rem; justify-content: flex-end; }
.nav a { color: var(--gray-700); font-weight: 500; font-size: .9rem; padding: .5rem .8rem; border-radius: var(--radius); transition: var(--transition); }
.nav a:hover, .nav a.active { color: var(--green); background: rgba(26,122,74,.08); }
.nav-cta { margin-left: .75rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: var(--transition); }

/* Services hero */
.services-hero { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 3.5rem; position: relative; aspect-ratio: 3/2; background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.08), transparent 40%), #0f2952; }
.services-hero::before {
  content: '';
  position: absolute;
  inset: -6% -8%;
  background: url('../img/fisrt%20it%20company.png') center / cover no-repeat;
  animation: heroDrift 6s ease-in-out infinite alternate;
  transform-origin: center;
  filter: brightness(1) saturate(1.05);
}
.services-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(255,166,0,.18), transparent 35%),
    radial-gradient(circle at 30% 70%, rgba(94,234,212,.16), transparent 40%);
  mix-blend-mode: screen;
  animation: glowPulse 9s ease-in-out infinite alternate;
}
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,41,82,.42) 0%, rgba(15,41,82,.16) 55%, rgba(15,41,82,.04) 100%);
  display: flex;
  align-items: center;
  padding: 2.5rem 3rem;
  z-index: 1;
  backdrop-filter: blur(1px);
}
.services-hero .sheen {
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.02) 40%, rgba(255,255,255,.16) 80%);
  mix-blend-mode: screen;
  animation: sheenSweep 9s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroDrift {
  0% { transform: scale(1.07) translate(-14px, 10px); }
  50% { transform: scale(1.15) translate(10px, -14px); }
  100% { transform: scale(1.18) translate(-8px, 8px); }
}
@keyframes glowPulse {
  0% { opacity: 0.45; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.08); }
}
@keyframes sheenSweep {
  0% { transform: translateX(-40%) translateY(-20%); opacity: .18; }
  50% { opacity: .32; }
  100% { transform: translateX(40%) translateY(20%); opacity: .18; }
}

/* Mobile Nav */
.mobile-nav { display: none; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--gray-200); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .75rem 0; color: var(--gray-700); font-weight: 500; border-bottom: 1px solid var(--gray-100); }
.mobile-nav a:last-child { border-bottom: none; }

/* Video Strip */
.video-strip input[name="slider"] { display: none; }
.video-strip { background: #0b1a36; padding: 0; color: var(--white); }
.video-strip .container { max-width: none; padding: 0; position: relative; }
.video-strip-frame { position: relative; overflow: hidden; border-radius: 0; border: none; background: #0b1a36; box-shadow: none; height: 80vh; min-height: 450px; }
.video-strip-track { display: flex; transition: transform .6s ease; }
.video-strip-slide { flex: 0 0 100%; min-width: 100%; position: relative; height: 100%; }
.video-strip-slide video { width: 100%; height: 100%; object-fit: cover; display: block; background: #0b1a36; border-radius: 0; }
.video-strip-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,32,80,.32), rgba(6,22,54,.26)),
    radial-gradient(ellipse at 30% 25%, rgba(80,170,255,.24), transparent 55%),
    linear-gradient(135deg, rgba(70,140,220,.18), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.video-strip-slide.rentals-slide::before {
  background:
    linear-gradient(180deg, rgba(6,24,60,.78), rgba(3,15,36,.74)),
    radial-gradient(ellipse at 35% 30%, rgba(80,160,235,.48), transparent 55%),
    linear-gradient(135deg, rgba(40,110,190,.45), transparent 60%);
  mix-blend-mode: multiply;
}
.video-strip-overlay { position: absolute; z-index: 6; top: 2%; left: 4%; max-width: 520px; padding: 0; background: none; backdrop-filter: none; border: none; box-shadow: none; pointer-events: none; }
.video-strip-overlay h2 { font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1.05; margin-bottom: .85rem; color: var(--white); letter-spacing: -.01em; }
.video-strip-eyebrow { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .82rem; margin-bottom: .5rem; color: rgba(255,255,255,.75); }
.video-strip-sub { font-size: 1.05rem; color: rgba(255,255,255,.85); margin: 0 0 1rem; max-width: 520px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.video-strip-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.video-strip-list li { position: relative; padding-left: 52px; font-weight: 700; letter-spacing: .005em; color: rgba(255,255,255,.9); font-size: 1rem; }
.video-strip-list .pill { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 42px; height: 14px; border-radius: 999px; background: linear-gradient(90deg, #5ee0ff, #1bb3ff); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); overflow: hidden; }
.video-strip-list .pill::after { content: ''; position: absolute; inset: 2px; border-radius: 999px; background: rgba(255,255,255,.85); width: 10px; animation: pillSweep 1.8s ease-in-out infinite; }

.video-strip-overlay.db { top: 3%; left: 5%; max-width: 540px; }
.video-strip-overlay.db h2 { font-size: clamp(2.4rem, 4.5vw, 3.3rem); }
.video-strip-overlay.db .video-strip-list { gap: .75rem; }
.video-strip-overlay.server { top: 8%; left: 5%; max-width: 620px; }
.video-strip-overlay.server h2 { font-size: clamp(2.4rem, 4.6vw, 3.4rem); }
.video-strip-overlay.rentals { top: 4%; left: 5%; max-width: 680px; }
.video-strip-overlay.rentals h2 { font-size: clamp(2.4rem, 4.8vw, 3.5rem); }
.video-strip-overlay.rentals .video-strip-list { gap: .9rem; }
.video-strip-overlay.holo { top: 5%; left: 5%; max-width: 780px; }
.video-strip-overlay.holo h2 { font-size: clamp(2.6rem, 5vw, 3.8rem); }
.video-strip-overlay.holo .video-strip-list { gap: 1.2rem; }
.video-strip-overlay.holo .video-strip-list li { line-height: 1.55; }

@keyframes pillSweep {
  0% { transform: translateX(-10px); opacity: .0; }
  25% { opacity: .9; }
  50% { transform: translateX(32px); opacity: .9; }
  100% { transform: translateX(42px); opacity: 0; }
}
.video-strip-caption { display: none; }
.video-strip-nav { position: absolute; top: 50%; bottom: auto; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.65); color: var(--white); display: none; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); z-index: 5; opacity: .9; }
.video-strip-nav:hover { background: rgba(255,255,255,.15); }
.video-strip-nav.prev { left: 6px; }
.video-strip-nav.next { right: 12px; }

.video-strip-frame:hover .video-strip-nav { opacity: 1; }

#slide1:checked ~ .container .video-strip-track { transform: translateX(0); }
#slide2:checked ~ .container .video-strip-track { transform: translateX(-100%); }
#slide3:checked ~ .container .video-strip-track { transform: translateX(-200%); }
#slide4:checked ~ .container .video-strip-track { transform: translateX(-300%); }
#slide5:checked ~ .container .video-strip-track { transform: translateX(-400%); }

#slide1:checked ~ .container .dot1,
#slide2:checked ~ .container .dot2,
#slide3:checked ~ .container .dot3,
#slide4:checked ~ .container .dot4,
#slide5:checked ~ .container .dot5 { background: #6ee7a0; transform: scale(1.1); box-shadow: 0 0 0 4px rgba(110,231,160,.2); }

#slide1:checked ~ .container .prev1,
#slide2:checked ~ .container .prev2,
#slide3:checked ~ .container .prev3,
#slide4:checked ~ .container .prev4,
#slide5:checked ~ .container .prev5,
#slide1:checked ~ .container .next1,
#slide2:checked ~ .container .next2,
#slide3:checked ~ .container .next3,
#slide4:checked ~ .container .next4,
#slide5:checked ~ .container .next5 { display: inline-flex; }
.video-strip-dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: .55rem; padding: 0; pointer-events: none; }
.video-strip-dots label { pointer-events: auto; }
.video-strip-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); border: none; cursor: pointer; transition: var(--transition); }
.video-strip-dot:hover { background: rgba(255,255,255,.75); transform: scale(1.05); }

.trial-gallery { position: absolute; inset: 0; pointer-events: none; }
.trial-gallery img { position: absolute; left: 50%; top: 50%; width: 32%; max-width: 320px; min-width: 140px; height: auto; aspect-ratio: 4/3; object-fit: cover; opacity: 0; filter: brightness(.92) drop-shadow(0 10px 22px rgba(0,0,0,.28)); border-radius: var(--radius); transform: translate(-50%, -50%); transform-origin: center; animation: trialCycleTL 16s infinite; animation-timing-function: ease-in-out; animation-fill-mode: both; will-change: transform, opacity; }
.trial-gallery img:nth-child(2) { animation-name: trialCycleTR; animation-delay: 4s; }
.trial-gallery img:nth-child(3) { animation-name: trialCycleBR; animation-delay: 8s; }
.trial-gallery img:nth-child(4) { animation-name: trialCycleBL; animation-delay: 12s; }

@keyframes trialCycleTL {
  0% { opacity: 0; transform: translate(-220%, -220%) scale(.9); }
  10% { opacity: 1; transform: translate(-120%, -120%) scale(1); }
  50% { opacity: .9; transform: translate(-50%, -55%); }
  70% { opacity: .6; transform: translate(-10%, -160%); }
  100% { opacity: 0; transform: translate(60%, -260%); }  /* exits upper-right */
}
@keyframes trialCycleTR {
  0% { opacity: 0; transform: translate(220%, -220%) scale(.9); }
  10% { opacity: 1; transform: translate(120%, -120%) scale(1); }
  50% { opacity: .9; transform: translate(-45%, -50%); }
  70% { opacity: .6; transform: translate(160%, 10%); }
  100% { opacity: 0; transform: translate(280%, 140%); } /* exits lower-right */
}
@keyframes trialCycleBR {
  0% { opacity: 0; transform: translate(220%, 220%) scale(.9); }
  10% { opacity: 1; transform: translate(120%, 120%) scale(1); }
  50% { opacity: .9; transform: translate(-50%, -45%); }
  70% { opacity: .6; transform: translate(-150%, 80%); }
  100% { opacity: 0; transform: translate(-260%, 220%); } /* exits lower-left */
}
@keyframes trialCycleBL {
  0% { opacity: 0; transform: translate(-220%, 220%) scale(.9); }
  10% { opacity: 1; transform: translate(-120%, 120%) scale(1); }
  50% { opacity: .9; transform: translate(-55%, -50%); }
  70% { opacity: .6; transform: translate(-180%, -40%); }
  100% { opacity: 0; transform: translate(-240%, -220%); } /* exits upper-left */
}

/* Hero */
.hero { background: linear-gradient(135deg, var(--blue) 0%, #1a4a8e 50%, #0f2952 100%); color: var(--white); padding: 5.5rem 0 4.5rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: rgba(26,122,74,.15); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 300px; height: 300px; background: rgba(255,255,255,.03); border-radius: 50%; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); padding: .35rem .85rem; border-radius: 50px; margin-bottom: 1.25rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: #6ee7a0; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.hero-trust-item { display: flex; align-items: center; gap: .4rem; font-size: .875rem; color: rgba(255,255,255,.75); }
.hero-trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-card { background: rgba(255,255,255,.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl); padding: 2rem; }
.hero-card h3 { color: var(--white); margin-bottom: 1.25rem; font-size: 1.15rem; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: #6ee7a0; line-height: 1; }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .25rem; }
.hero-services { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.hero-service-tag { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); border-radius: var(--radius); padding: .5rem .85rem; }
.hero-service-tag svg { width: 14px; height: 14px; color: #6ee7a0; }

/* Trust Bar */
.trust-bar { background: var(--green); padding: 1.5rem 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: var(--white); font-size: .9rem; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,.25); }

/* Why TechLeaf */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { width: 56px; height: 56px; background: rgba(26,122,74,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.why-icon svg { width: 28px; height: 28px; color: var(--green); }
.why-card h4 { margin-bottom: .5rem; color: var(--gray-900); }
.why-card p { font-size: .9rem; color: var(--gray-500); margin: 0; }

/* Services */
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.4rem; transition: var(--transition); display: flex; flex-direction: column; height: 100%; text-align: center; align-items: center; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.service-icon { width: 52px; height: 52px; background: rgba(26,122,74,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; flex-shrink: 0; }
.service-icon svg { width: 26px; height: 26px; color: var(--green); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.service-card > p { font-size: .9rem; color: var(--gray-500); margin-bottom: 1rem; flex: 1; }
.service-price { font-size: .82rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: .5rem .85rem; color: var(--gray-700); margin-bottom: 1rem; font-style: italic; }
.service-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.consumables-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; justify-items: center; }
.consumables-cards .service-card { border-top: 4px solid var(--green); box-shadow: var(--shadow-lg); padding: 1.6rem 1.5rem 1.4rem; max-width: 320px; }
.consumables-cards .service-card h3 { margin-bottom: .8rem; }

/* Stats */
.stats-bar { background: var(--blue); padding: 3.5rem 0; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .num { font-size: 2.75rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-item .num span { color: #6ee7a0; }
.stat-item .lbl { font-size: .9rem; color: rgba(255,255,255,.65); margin-top: .4rem; }

/* Partners */
.partners-strip { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; }
.partner-badge { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: .85rem 1.75rem; font-size: .85rem; font-weight: 700; color: var(--gray-700); letter-spacing: .02em; text-transform: uppercase; transition: var(--transition); }
.partner-badge:hover { border-color: var(--green); color: var(--green); box-shadow: var(--shadow); }

.stars { color: #f59e0b; font-size: .9rem; margin-bottom: .6rem; }

/* Case Studies */
.case-study-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.case-study-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.case-study-header { background: var(--green); padding: 1.5rem 1.75rem; }
.case-study-header h4 { color: var(--white); margin-bottom: .25rem; }
.case-study-tag { display: inline-block; background: rgba(255,255,255,.2); color: var(--white); font-size: .75rem; font-weight: 600; padding: .2rem .6rem; border-radius: 50px; }
.case-study-body { padding: 1.75rem; }
.case-study-body p { font-size: .9rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.case-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; background: var(--gray-50); border-radius: var(--radius); padding: 1.1rem; margin-bottom: 1.25rem; }
.case-result { text-align: center; }
.case-result .val { font-size: 1.4rem; font-weight: 800; color: var(--green); }
.case-result .key { font-size: .75rem; color: var(--gray-500); margin-top: .1rem; }

/* Contact / Form */
.contact-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--gray-500); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(26,122,74,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--green); }
.contact-detail-text .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-500); font-weight: 600; margin-bottom: .15rem; }
.contact-detail-text a, .contact-detail-text p { font-weight: 600; color: var(--gray-900); margin: 0; font-size: .95rem; }
.contact-detail-text a:hover { color: var(--green); }

/* Multi-step Form */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2.25rem; box-shadow: var(--shadow-lg); }
.form-steps { display: flex; align-items: center; gap: 0; margin-bottom: 2rem; }
.form-step-item { flex: 1; display: flex; align-items: center; }
.form-step-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--gray-200); color: var(--gray-500); font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.form-step-dot.active { background: var(--green); color: var(--white); }
.form-step-dot.done { background: var(--green-dark); color: var(--white); }
.form-step-line { flex: 1; height: 2px; background: var(--gray-200); }
.form-step-line.done { background: var(--green); }
.form-step-label { font-size: .75rem; color: var(--gray-500); margin-top: .3rem; }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-panel h4 { margin-bottom: .35rem; }
.form-panel p { font-size: .9rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.service-selector { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.service-option { border: 2px solid var(--gray-200); border-radius: var(--radius); padding: .85rem 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: .65rem; font-size: .875rem; font-weight: 500; background: var(--white); }
.service-option:hover { border-color: var(--green); background: rgba(26,122,74,.04); }
.service-option.selected { border-color: var(--green); background: rgba(26,122,74,.07); color: var(--green); }
.service-option svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: .7rem 1rem; font-size: .9rem; transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,74,.12); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-nav { display: flex; gap: 1rem; margin-top: 1.5rem; }
.form-sla { font-size: .82rem; color: var(--gray-500); text-align: center; margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: .4rem; }
.whatsapp-alt { text-align: center; margin-top: 1rem; font-size: .85rem; color: var(--gray-500); }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); padding: 4.5rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-banner .btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Footer */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255,255,255,.4); }
.footer-brand .logo { gap: 10px; align-items: center; }
.footer-brand .logo-mark { width: 72px; height: 72px; min-width: 72px; margin-right: 0; }
.footer-brand .logo-text { margin-left: 0; }
.footer-brand p { font-size: .875rem; margin-top: 1rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-rating { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border-radius: var(--radius); padding: .5rem 1rem; margin-top: 1rem; font-size: .82rem; color: rgba(255,255,255,.8); }
.footer-rating .stars { color: #f59e0b; font-size: .8rem; margin: 0; }
.footer-col h5 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .9rem; font-size: .875rem; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--green-light); }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }
.footer-bottom p { margin: 0; }
.footer-badges { display: flex; gap: .5rem; }
.footer-badge { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 50px; padding: .2rem .65rem; font-size: .72rem; color: rgba(255,255,255,.55); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
.hide-whatsapp .whatsapp-float { display: none; }
.whatsapp-float-btn { width: 58px; height: 58px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--transition); cursor: pointer; }
.whatsapp-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,.5); }
.whatsapp-float-btn svg { width: 30px; height: 30px; fill: var(--white); }
.whatsapp-float-label { background: var(--gray-900); color: var(--white); font-size: .78rem; padding: .35rem .75rem; border-radius: 50px; white-space: nowrap; box-shadow: var(--shadow); }

/* Sticky Call Mobile */
.sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--green); color: var(--white); text-align: center; padding: .9rem 1rem; font-weight: 600; font-size: 1rem; gap: .5rem; align-items: center; justify-content: center; text-decoration: none; }
.sticky-call svg { width: 20px; height: 20px; }

/* Badges */
.badge { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600; padding: .3rem .7rem; border-radius: 50px; }
.badge-green { background: rgba(26,122,74,.12); color: var(--green); }
.badge-blue { background: rgba(26,58,110,.1); color: var(--blue); }
.timeline { display: grid; gap: 1.5rem; }
.timeline-step { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; border: 1px solid var(--gray-200); border-radius: var(--radius); background: var(--white); box-shadow: 0 6px 16px rgba(15,23,42,.08); }
.timeline-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: var(--white); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Alert / Rating Band */
.rating-band { background: #fffbeb; border: 1px solid #f59e0b; border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.rating-band .stars { color: #f59e0b; font-size: 1rem; margin: 0; letter-spacing: .05em; }
.rating-band p { margin: 0; font-size: .875rem; color: var(--gray-700); }
.rating-band strong { color: var(--gray-900); }

/* Page Header */
.page-hero { background: linear-gradient(135deg, var(--blue) 0%, #1a4a8e 100%); padding: 2.5rem 0 2.6rem; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; font-size: 1.05rem; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.2rem; align-items: center; }
.page-hero-text { display: flex; flex-direction: column; gap: .6rem; }
.page-hero-image-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 200px; height: clamp(200px, 26vw, 260px); box-shadow: var(--shadow-xl); background: #0b1a36; }
.page-hero-image-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.9) contrast(1.05) saturate(1.05); }
.page-hero-image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,18,38,.42), rgba(6,18,38,.35)), radial-gradient(circle at 25% 20%, rgba(255,255,255,.08), transparent 50%); }
.page-hero-image-copy { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: .5rem; padding: 1.5rem; color: #f7f9fc; text-shadow: 0 6px 14px rgba(0,0,0,.35); pointer-events: none; }
.page-hero-image-copy .eyebrow { letter-spacing: .08em; text-transform: uppercase; font-weight: 800; font-size: .9rem; color: #e8f7ff; }
.page-hero-image-copy .caption { margin: 0; max-width: 360px; font-weight: 700; font-size: 1.05rem; color: #fdfdfd; }
.page-hero-image-copy .sub-caption { color: rgba(247,249,252,.8); font-size: .85rem; }
@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-image-card { order: -1; }
}
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .4; }

/* Network hero */
.network-hero { position: relative; color: var(--white); padding: 4.5rem 0 5rem; overflow: hidden; min-height: 70vh; display: flex; align-items: center; }
.network-hero__bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,20,50,.55), rgba(5,20,50,.75)), url('../assets/img/high_performance_laptops_team.png') center/cover no-repeat; filter: saturate(1.05); }
.network-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 25%, rgba(90,173,255,.32), transparent 60%); mix-blend-mode: screen; }
.network-hero .container { position: relative; z-index: 2; }
.network-hero__content { max-width: 960px; }
.network-hero__eyebrow { font-size: 1.15rem; font-weight: 700; letter-spacing: .02em; margin-bottom: 1rem; color: rgba(255,255,255,.85); }
.network-hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.05; margin-bottom: 1.5rem; }
.network-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 1.5rem; max-width: 720px; }
.network-hero__list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1rem; }
.network-hero__list li { display: flex; align-items: center; gap: .75rem; font-size: 1.05rem; font-weight: 700; letter-spacing: .01em; color: rgba(255,255,255,.92); }
.network-hero__list .dot { width: 16px; height: 16px; border-radius: 50%; display: inline-block; background: linear-gradient(135deg, #6ee7a0, #3bb0ff); box-shadow: 0 0 0 6px rgba(110,231,160,.16); }
.network-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.network-hero__arrows { position: absolute; inset: 0; pointer-events: none; }
.network-hero__nav { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.4); color: var(--white); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: auto; }
.network-hero__nav:hover { background: rgba(255,255,255,.15); }

/* Pricing Anchors */
.pricing-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; }
.pricing-card h4 { margin-bottom: .5rem; }
.pricing-from { font-size: 1.75rem; font-weight: 800; color: var(--green); margin: .5rem 0; }
.pricing-from small { font-size: .85rem; color: var(--gray-500); font-weight: 400; }
.pricing-note { font-size: .8rem; color: var(--gray-500); font-style: italic; margin-bottom: 1rem; }
.pricing-list { margin-bottom: 1.5rem; }
.pricing-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--gray-700); padding: .3rem 0; }
.pricing-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Utility */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.fw-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-3 { gap: 1.5rem; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .grid-2, .grid-3, .services-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .video-strip-slide { height: 260px; }
  .video-strip-nav { width: 34px; height: 34px; }
  .video-strip-overlay { position: static; margin: 0 0 1rem; background: none; pointer-events: auto; }
  .video-strip .container { padding: 0 1rem; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: 1fr; }
  .sticky-call { display: flex; }
  .trust-divider { display: none; }
  .trust-bar .container { gap: 1rem; }
  .whatsapp-float { bottom: 5rem; }
  .network-hero { padding: 3.5rem 0 4rem; }
  .network-hero h1 { font-size: 2.6rem; }
  .network-hero__list { gap: .85rem; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .partners-strip { gap: 1rem; }
  .partner-badge { padding: .65rem 1.25rem; font-size: .78rem; }
  .video-strip-slide { height: 220px; }
  .video-strip-caption { font-size: .82rem; padding: .45rem .8rem; }
  .video-strip-overlay h2 { font-size: 2rem; }
}

/* Image helpers */
.img-full { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }

/* Team in action section */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.team-img-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.team-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.team-img-card:hover img { transform: scale(1.04); }
.team-img-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); padding: 2rem 1.25rem 1.1rem; }
.team-img-label span { color: var(--white); font-weight: 600; font-size: .9rem; }
.team-img-label small { display: block; color: rgba(255,255,255,.7); font-size: .78rem; margin-top: .15rem; }

/* Hero image panel */
.hero-img-panel { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-img-panel img { width: 100%; height: auto; object-fit: contain; display: block; }
.hero-img-badge { background: rgba(255,255,255,.95); border-radius: var(--radius); padding: .85rem 1.1rem; display: flex; align-items: center; gap: .75rem; }
.hero-img-badge .rating { font-size: 1.1rem; color: #f59e0b; letter-spacing: .05em; }
.hero-img-badge p { font-size: .82rem; color: var(--gray-700); margin: 0; line-height: 1.4; }
.hero-img-badge strong { color: var(--gray-900); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .4s ease forwards; }
