:root{
  /* Cool navy base — clearer contrast, matches Smart IT logo */
  --bg:#0B1220;
  --bg-1:#111A2E;
  --panel:#162033;
  --panel-2:#1A2740;
  --line:#2A3A55;
  --line-soft:#1E2C44;
  --text:#F4F7FC;
  --muted:#A8B4C8;
  --muted-2:#7A879C;
  /* Logo blue primary */
  --accent:#1B6EF3;
  --accent-soft:#1A3F7A;
  --accent-rgb:27,110,243;
  /* Bright highlight for headings / CTAs */
  --teal:#3B9BFF;
  --teal-soft:#1A4A7A;
  --teal-rgb:59,155,255;
  --radius:16px;
  --maxw:1220px;
  --blue:var(--accent);
  --blue-soft:var(--accent-soft);
  --gold:var(--teal);
  --gold-soft:var(--teal-soft);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg); color:var(--text);
  font-family:'Work Sans', sans-serif; font-size:16px; line-height:1.65;
  overflow-x:hidden;
}
h1,h2,h3,h4{ font-family:'Poppins', sans-serif; font-weight:600; line-height:1.16; letter-spacing:-0.015em;}
.mono{ font-family:'Space Mono', monospace; }
a{ color:inherit; text-decoration:none; }
img{max-width:100%; display:block;}
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
section{ position:relative; }
.eyebrow{
  font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--teal); display:inline-flex; align-items:center; gap:9px; margin-bottom:16px;
}
.eyebrow::before{ content:""; width:18px; height:1.5px; background:var(--teal); }
.btn{
  display:inline-flex; align-items:center; gap:10px; padding:14px 28px; border-radius:9px;
  font-weight:600; font-size:14.5px; cursor:pointer; border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(var(--accent-rgb),0.55); }
.btn-gold{ background:var(--teal); color:#061018; font-weight:700; }
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(var(--teal-rgb),0.45); }
.btn-ghost{ background:transparent; border-color:var(--line); color:var(--text); }
.btn-ghost:hover{ border-color:var(--accent); color:#9DC4FF; }
.btn-arrow{ transition:transform .18s ease; }
.btn:hover .btn-arrow{ transform:translateX(3px); }
.btn-sm{ padding:10px 18px; font-size:13px; }

/* TOP BAR */
.topbar{ background:var(--bg-1); border-bottom:1px solid var(--line-soft); font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:12.5px; color:var(--muted-2); padding:9px 0; }
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.topbar-left{ display:flex; gap:22px; flex-wrap:wrap; }
.topbar a{ color:var(--muted); transition:color .18s; }
.topbar a:hover{ color:var(--teal); }
.topbar-right{ display:flex; gap:18px; align-items:center; }

/* NAV */
header{ position:sticky; top:0; z-index:100; background:rgba(11,18,32,0.92); backdrop-filter:blur(14px); border-bottom:1px solid var(--line-soft); padding:16px 0; }
nav.wrap{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.logo{ display:flex; align-items:center; gap:10px; font-family:'Poppins', sans-serif; font-weight:800; font-size:20px; }
.logo-mark{ width:34px; height:34px; border-radius:9px; background:linear-gradient(135deg, var(--accent), #0A4DB8); display:flex; align-items:center; justify-content:center; color:#fff; font-size:15px; font-weight:800; }
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{ font-size:14.5px; color:var(--muted); font-weight:500; transition:color .18s; }
.nav-links a:hover, .nav-links a.active{ color:var(--text); }
.nav-links a.active{ color:var(--teal); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.menu-toggle{ display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:6px; z-index:101;}
.menu-toggle span{ width:22px; height:2px; background:var(--text); transition:transform .2s, opacity .2s; }
.menu-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile nav open state */
.nav-links.open{
  display:flex !important;
  position:fixed;
  top:64px; left:0; right:0;
  background:var(--bg-1);
  flex-direction:column;
  padding:24px 28px;
  border-bottom:1px solid var(--line);
  gap:18px;
  z-index:99;
  box-shadow:0 20px 40px -20px rgba(0,0,0,0.5);
}

/* PAGE HERO (inner pages) */
.page-hero{ padding:64px 0 56px; border-bottom:1px solid var(--line-soft); background:radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb),0.10), transparent 45%), radial-gradient(circle at 90% 10%, rgba(var(--teal-rgb),0.08), transparent 40%); }
.breadcrumb{ font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:12.5px; color:var(--muted-2); margin-bottom:16px; }
.breadcrumb a{ color:var(--muted); } .breadcrumb a:hover{ color:var(--teal); }
.page-hero h1{ font-size:clamp(30px,4vw,46px); max-width:760px; }
.page-hero p.lead{ color:var(--muted); font-size:16.5px; max-width:600px; margin-top:16px; }

/* HERO (home) */
.hero{ position:relative; padding:110px 0 0; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; }
.hero-bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.86) 60%, var(--bg) 100%), linear-gradient(90deg, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.55) 45%, rgba(11,18,32,0.35) 100%); }
.hero-content{ position:relative; z-index:1; padding:70px 0 130px; max-width:680px; }
.hero h1{ font-size:clamp(36px, 5vw, 62px); margin-bottom:22px; letter-spacing:-0.025em; }
.hero h1 .hl{ color:var(--teal); }
.hero p.lead{ font-size:17.5px; color:#C8C4D0; max-width:540px; margin-bottom:34px; line-height:1.7; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.stat-strip{ position:relative; z-index:1; margin-top:-64px; }
.stat-card{ background:var(--panel); border:1px solid var(--line); border-radius:18px; display:grid; grid-template-columns:repeat(4,1fr); box-shadow:0 30px 60px -30px rgba(0,0,0,0.6); }
.stat-cell{ padding:28px 26px; border-right:1px solid var(--line-soft); }
.stat-cell:last-child{ border-right:none; }
.stat-cell b{ font-family:'Poppins', sans-serif; font-size:30px; display:block; color:var(--text); margin-bottom:4px; }
.stat-cell span{ font-size:12.5px; color:var(--muted); }

/* SECTION HEAD */
.section-head{ max-width:660px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(27px,3.1vw,40px); margin-bottom:14px; }
.section-head p{ color:var(--muted); font-size:16px; }
section.pad{ padding:100px 0; }
section.pad.tight{ padding:70px 0; }
.divider{ border-top:1px solid var(--line-soft); }

/* MARQUEE */
.marquee-band{ border-bottom:1px solid var(--line-soft); padding:24px 0; overflow:hidden; background:var(--bg-1); }
.marquee-track{ display:flex; gap:56px; width:max-content; animation:scroll 28s linear infinite; align-items:center; }
.marquee-track span{ font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:13.5px; color:var(--muted-2); letter-spacing:.05em; white-space:nowrap; }
@keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ABOUT BLOCK */
.about-grid{ display:grid; grid-template-columns:0.95fr 1.05fr; gap:56px; align-items:center; }
.about-photo{ position:relative; border-radius:20px; overflow:hidden; border:1px solid var(--line); }
.about-photo img{ width:100%; height:520px; object-fit:cover; filter:saturate(0.9) contrast(1.03); }
.about-photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(var(--accent-rgb),0.14), rgba(11,18,32,0.35)); mix-blend-mode:multiply; }
.badge-float{ position:absolute; bottom:22px; left:22px; z-index:2; background:rgba(11,18,32,0.85); backdrop-filter:blur(8px); border:1px solid var(--line); border-radius:12px; padding:14px 18px; display:flex; gap:14px; align-items:center; }
.badge-float b{ font-family:'Poppins', sans-serif; font-size:22px; display:block; }
.badge-float span{ font-size:11.5px; color:var(--muted); }
.about-list{ display:flex; flex-direction:column; gap:24px; margin-top:30px; }
.about-item{ display:flex; gap:16px; }
.about-ic{ width:38px; height:38px; border-radius:9px; background:rgba(var(--accent-rgb),0.12); border:1px solid var(--accent-soft); display:flex; align-items:center; justify-content:center; color:var(--accent); flex-shrink:0; font-size:16px;}
.about-item h4{ font-size:16px; margin-bottom:5px; }
.about-item p{ font-size:14px; color:var(--muted); }

/* TIMELINE (about page) */
.timeline{ display:flex; flex-direction:column; gap:0; border-left:1px solid var(--line-soft); margin-left:8px; }
.timeline-item{ position:relative; padding:0 0 40px 32px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-dot{ position:absolute; left:-6.5px; top:2px; width:12px; height:12px; border-radius:50%; background:var(--teal); border:3px solid var(--bg); }
.timeline-item .yr{ font-family:'JetBrains Mono', 'Space Mono', monospace; color:var(--accent); font-size:13px; margin-bottom:6px; display:block;}
.timeline-item h4{ font-size:17px; margin-bottom:6px; }
.timeline-item p{ font-size:14px; color:var(--muted); max-width:520px;}

/* SERVICES */
.service-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; }
.service-grid.cols-3{ grid-template-columns:repeat(3,1fr); }
a.service-card{ color:inherit; display:block; }
a.service-card:hover h3{ color:var(--teal); }
.service-card{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:28px 24px; transition:border-color .2s ease, transform .2s ease, background .2s ease; }
.service-card:hover{ border-color:var(--accent-soft); transform:translateY(-4px); background:var(--panel-2); }
.service-card .tag{ font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:10.5px; color:var(--muted-2); text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; display:block; }
.service-icon{ width:42px; height:42px; border-radius:11px; background:rgba(var(--teal-rgb),0.1); border:1px solid var(--teal-soft); display:flex; align-items:center; justify-content:center; margin-bottom:18px; color:var(--teal); font-size:19px; }
.service-card h3{ font-size:17px; margin-bottom:9px; }
.service-card p{ font-size:13.8px; color:var(--muted); margin-bottom:14px;}
.service-card .more{ font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:12px; color:var(--accent); }

/* CHECKLIST (services page full list) */
.check-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.check-item{ display:flex; gap:12px; align-items:flex-start; background:var(--panel); border:1px solid var(--line); border-radius:12px; padding:16px 18px; font-size:14px; }
.check-item::before{ content:"✓"; color:var(--teal); font-weight:700; }

/* WHY */
.why-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; align-items:center; }
.why-visual{ background:var(--panel); border:1px solid var(--line); border-radius:18px; padding:8px; }
.why-visual-head{ display:flex; justify-content:space-between; align-items:center; font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:11px; color:var(--muted-2); padding:14px 18px; letter-spacing:.05em; text-transform:uppercase; border-bottom:1px solid var(--line-soft);}
.dot-row{ display:flex; gap:6px; }
.dot-row span{ width:8px; height:8px; border-radius:50%; background:var(--line); }
.why-visual .metric-row{ display:flex; justify-content:space-between; padding:15px 18px; border-bottom:1px dashed var(--line-soft); font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:13px; }
.why-visual .metric-row:last-child{ border-bottom:none; }
.why-visual .metric-row span:first-child{ color:var(--muted); }
.why-visual .metric-row span:last-child{ color:var(--teal); font-weight:600; }
.why-list{ display:flex; flex-direction:column; gap:26px; }
.why-item{ display:flex; gap:16px; }
.why-num{ font-family:'JetBrains Mono', 'Space Mono', monospace; color:var(--accent); font-size:13px; padding-top:3px; }
.why-item h4{ font-size:16.5px; margin-bottom:6px; }
.why-item p{ font-size:14.5px; color:var(--muted); }

/* PROCESS */
.process-track{ display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; }
.process-track::before{ content:""; position:absolute; top:22px; left:5%; right:5%; height:1px; background:var(--line); }
.process-step{ position:relative; padding:0 14px; }
.process-num{ width:44px; height:44px; border-radius:50%; background:var(--bg-1); border:1px solid var(--accent-soft); display:flex; align-items:center; justify-content:center; font-family:'JetBrains Mono', 'Space Mono', monospace; color:var(--accent); margin-bottom:20px; position:relative; z-index:2; font-size:13.5px; }
.process-step h4{ font-size:15.5px; margin-bottom:8px; }
.process-step p{ font-size:13.5px; color:var(--muted); }

/* WORK */
.work-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.work-card{ border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--panel); }
.work-thumb{ height:190px; position:relative; overflow:hidden; }
.work-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.work-card:hover .work-thumb img{ transform:scale(1.06); }
.work-thumb .tagchip{ position:absolute; bottom:12px; left:14px; font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:10.5px; color:#fff; background:rgba(11,18,32,0.7); padding:5px 10px; border-radius:100px; text-transform:uppercase; letter-spacing:.06em; }
.work-body{ padding:20px; }
.work-body h4{ font-size:16px; margin-bottom:8px; }
.work-body p{ font-size:13.5px; color:var(--muted); margin-bottom:14px; }
.work-metrics{ display:flex; gap:18px; }
.work-metrics div{ font-family:'JetBrains Mono', 'Space Mono', monospace; }
.work-metrics b{ display:block; color:var(--teal); font-size:17px; }
.work-metrics span{ font-size:10.5px; color:var(--muted-2); text-transform:uppercase; }

/* GLOBAL */
.global-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.global-card{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:32px; }
.global-card h3{ font-size:19px; margin-bottom:8px; }
.global-card > p{ font-size:14px; color:var(--muted); margin-bottom:24px; }
.country-list{ display:flex; flex-direction:column; gap:14px; }
.country-row{ display:flex; justify-content:space-between; align-items:center; padding-bottom:14px; border-bottom:1px solid var(--line-soft); font-size:14.5px; }
.country-row:last-child{ border-bottom:none; padding-bottom:0; }
.country-row .flag{ margin-right:10px; }
.country-row span.count{ font-family:'JetBrains Mono', 'Space Mono', monospace; color:var(--teal); font-size:13px; }

/* TESTIMONIALS */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:26px; display:flex; flex-direction:column; gap:18px; }
.testi-stars{ color:var(--teal); font-size:14px; letter-spacing:2px; }
.testi-card p{ font-size:14.5px; color:var(--text); line-height:1.7; }
.testi-who{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.testi-avatar{ width:42px; height:42px; border-radius:50%; object-fit:cover; border:1px solid var(--line); }
.testi-who b{ display:block; font-size:13.5px; }
.testi-who span{ font-size:12px; color:var(--muted-2); }

/* PRICING */
.plan-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.plan-grid.cols-5{ grid-template-columns:repeat(5,1fr); }
.plan-card{ border:1px solid var(--line); border-radius:var(--radius); padding:32px 26px; background:var(--panel); display:flex; flex-direction:column; }
.plan-card.featured{ border-color:var(--accent); background:linear-gradient(180deg, rgba(var(--accent-rgb),0.08), var(--panel) 40%); position:relative; }
.plan-badge{ position:absolute; top:-13px; right:26px; background:var(--teal); color:#061018; font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:11px; padding:4px 12px; border-radius:100px; font-weight:600; }
.plan-name{ font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:12.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:10px; }
.plan-price{ font-family:'Poppins', sans-serif; font-size:28px; margin-bottom:6px; }
.plan-price span{ font-size:12.5px; color:var(--muted-2); font-family:'Work Sans', sans-serif; }
.plan-desc{ font-size:13px; color:var(--muted); margin-bottom:20px; }
.plan-feats{ list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:26px; flex:1; }
.plan-feats li{ font-size:13px; color:var(--text); display:flex; gap:9px; align-items:flex-start; }
.plan-feats li::before{ content:"✓"; color:var(--accent); font-weight:700; }
.plan-currency-note{ font-size:12px; color:var(--muted-2); text-align:center; margin-top:22px; }

/* CTA BAND */
.cta-band{ border:1px solid var(--line); border-radius:22px; padding:58px 52px; background:linear-gradient(120deg, rgba(var(--accent-rgb),0.14), rgba(var(--teal-rgb),0.08) 60%, transparent), var(--panel); display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-band h3{ font-size:clamp(22px,2.6vw,30px); max-width:520px; }
.cta-band p{ color:var(--muted); margin-top:10px; max-width:480px; font-size:14.5px; }

/* CONTACT */
.contact-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:50px; }
.contact-info h2{ font-size:clamp(26px,3vw,36px); margin-bottom:16px; }
.contact-info > p{ color:var(--muted); margin-bottom:30px; max-width:440px; }
.contact-item{ display:flex; gap:14px; margin-bottom:20px; align-items:flex-start; }
.contact-item .ic{ width:38px; height:38px; border-radius:10px; background:var(--panel); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--teal); flex-shrink:0; font-size:16px; }
.contact-item b{ display:block; font-size:14px; margin-bottom:2px; }
.contact-item span, .contact-item a{ font-size:13.5px; color:var(--muted); display:block; }
.form-panel{ background:var(--panel); border:1px solid var(--line); border-radius:18px; padding:34px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:12.5px; color:var(--muted); font-family:'JetBrains Mono', 'Space Mono', monospace; text-transform:uppercase; letter-spacing:.05em; }
.field input, .field select, .field textarea{ background:var(--bg-1); border:1px solid var(--line); border-radius:9px; padding:12px 14px; color:var(--text); font-family:'Work Sans', sans-serif; font-size:14px; outline:none; transition:border-color .18s; width:100%; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--accent); }
.field textarea{ resize:vertical; min-height:90px; }
.form-note{ font-size:12px; color:var(--muted-2); margin-top:14px; }
.map-frame{ border-radius:16px; overflow:hidden; border:1px solid var(--line); margin-top:26px; }
.map-frame iframe{ width:100%; height:280px; border:0; filter:grayscale(0.3) invert(0.9) contrast(0.9); }
.office-tabs{ display:flex; gap:10px; margin-bottom:22px; flex-wrap:wrap; }
.office-tab{ padding:9px 16px; border-radius:100px; border:1px solid var(--line); font-size:13px; cursor:pointer; color:var(--muted); font-family:'JetBrains Mono', 'Space Mono', monospace; transition:background .18s, border-color .18s, color .18s; }
.office-tab.active{ background:var(--accent); border-color:var(--accent); color:#fff; }

/* PRODUCT DETAIL (alternating image/text rows) */
.product-row{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; padding:70px 0; border-bottom:1px solid var(--line-soft); }
.product-row:last-child{ border-bottom:none; }
.product-row.reverse .product-media{ order:2; }
.product-row.reverse .product-copy{ order:1; }
.product-media{ position:relative; border-radius:20px; overflow:hidden; border:1px solid var(--line); }
.product-media img{ width:100%; height:360px; object-fit:cover; }
.product-media .num-chip{ position:absolute; top:16px; left:16px; background:rgba(11,18,32,0.75); backdrop-filter:blur(6px); border:1px solid var(--line); color:var(--teal); font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:12px; padding:6px 12px; border-radius:100px; }
.product-copy h3{ font-size:24px; margin-bottom:14px; }
.product-copy > p{ color:var(--muted); font-size:14.5px; margin-bottom:22px; max-width:480px; }
.product-feats{ list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.product-feats li{ font-size:14px; display:flex; gap:10px; align-items:flex-start; }
.product-feats li::before{ content:"✓"; color:var(--accent); font-weight:700; flex-shrink:0; }

/* INDUSTRY GRID */
.industry-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.industry-card{ position:relative; border-radius:14px; overflow:hidden; height:190px; border:1px solid var(--line); }
.industry-card img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.industry-card:hover img{ transform:scale(1.08); }
.industry-card::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,18,32,0.05) 30%, rgba(11,18,32,0.9) 100%); }
.industry-card span{ position:absolute; bottom:14px; left:16px; z-index:2; font-family:'Poppins', sans-serif; font-weight:700; font-size:15px; }

/* FAQ (pricing page) */
.faq-item{ border-bottom:1px solid var(--line-soft); padding:20px 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:'Poppins', sans-serif; font-weight:600; font-size:15.5px; }
.faq-q .ico{ color:var(--teal); font-size:18px; transition:transform .2s; }
.faq-item.open .faq-q .ico{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; font-size:14px; color:var(--muted); }
.faq-item.open .faq-a{ max-height:200px; padding-top:12px; }

/* FOOTER */
footer{ border-top:1px solid var(--line-soft); padding:60px 0 30px; background:var(--bg-1); }
.footer-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1fr; gap:36px; margin-bottom:50px; }
.footer-brand p{ color:var(--muted); font-size:13.5px; margin-top:14px; max-width:280px; }
.footer-col h5{ font-family:'JetBrains Mono', 'Space Mono', monospace; font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted-2); margin-bottom:16px; }
.footer-col a{ display:block; font-size:13.5px; color:var(--muted); margin-bottom:11px; transition:color .18s; }
.footer-col a:hover{ color:var(--teal); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; border-top:1px solid var(--line-soft); font-size:12.5px; color:var(--muted-2); flex-wrap:wrap; gap:12px; }
.social-row{ display:flex; gap:10px; }
.social-row a{ width:34px; height:34px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--muted); transition:.18s; font-size:13px; }
.social-row a:hover{ border-color:var(--teal); color:var(--teal); }

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float{
  position:fixed; bottom:24px; right:24px; z-index:200;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px -6px rgba(37,211,102,0.6);
  animation:wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg{ width:30px; height:30px; }
.whatsapp-float:hover{ transform:scale(1.06); }
@keyframes wa-pulse{
  0%,100%{ box-shadow:0 10px 30px -6px rgba(37,211,102,0.6); }
  50%{ box-shadow:0 10px 30px -6px rgba(37,211,102,0.95), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* INTERACTIVE VIDEO SECTION */
.video-showcase{ position:relative; border-radius:22px; overflow:hidden; border:1px solid var(--line); background:#000; }
.video-showcase video{ width:100%; display:block; max-height:560px; object-fit:cover; }
.video-controls{
  position:absolute; left:0; right:0; bottom:0;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  padding:20px 22px 18px; display:flex; align-items:center; gap:14px;
}
.video-playbtn{
  width:44px; height:44px; border-radius:50%; background:var(--accent); border:none; color:#fff;
  display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; font-size:16px;
}
.video-progress{ flex:1; height:5px; background:rgba(255,255,255,0.25); border-radius:100px; overflow:hidden; cursor:pointer; }
.video-progress-bar{ height:100%; width:0%; background:var(--accent); border-radius:100px; }
.video-time{ font-family:'Space Mono', monospace; font-size:12px; color:#fff; min-width:78px; text-align:right; }
.video-mutebtn{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.2); color:#fff; cursor:pointer; flex-shrink:0; }
.video-badge{ position:absolute; top:18px; left:18px; background:rgba(0,0,0,0.55); backdrop-filter:blur(6px); color:#fff; font-family:'Space Mono', monospace; font-size:11.5px; padding:6px 12px; border-radius:100px; letter-spacing:.05em; text-transform:uppercase; }

.video-testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.video-testi-card{ position:relative; border-radius:16px; overflow:hidden; border:1px solid var(--line); background:#000; aspect-ratio:9/11; cursor:pointer; }
.video-testi-card video{ width:100%; height:100%; object-fit:cover; }
.video-testi-overlay{ position:absolute; inset:0; display:flex; flex-direction:column; justify-content:space-between; padding:16px; background:linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.75)); pointer-events:none; }
.video-testi-play{ align-self:center; margin:auto; width:56px; height:56px; border-radius:50%; background:rgba(255,255,255,0.16); backdrop-filter:blur(6px); border:1.5px solid rgba(255,255,255,0.6); display:flex; align-items:center; justify-content:center; color:#fff; font-size:20px; transition:transform .2s, background .2s; }
.video-testi-card.playing .video-testi-play{ opacity:0; }
.video-testi-card:hover .video-testi-play{ transform:scale(1.08); background:rgba(255,255,255,0.28); }
.video-testi-name{ font-family:'Poppins', sans-serif; font-weight:600; font-size:14px; color:#fff; }
.video-testi-role{ font-family:'Space Mono', monospace; font-size:11px; color:rgba(255,255,255,0.75); }

::selection{ background:var(--accent); color:#fff; }

/* RESPONSIVE */
@media (max-width: 1080px){
  .footer-grid{ grid-template-columns:1fr 1fr 1fr; }
  .plan-grid.cols-5{ grid-template-columns:repeat(3,1fr); }
  .industry-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 980px){
  .hero-grid, .why-grid, .contact-grid, .about-grid{ grid-template-columns:1fr; }
  .service-grid, .service-grid.cols-3{ grid-template-columns:repeat(2,1fr); }
  .process-track{ grid-template-columns:repeat(3,1fr); row-gap:34px; }
  .process-track::before{ display:none; }
  .work-grid, .testi-grid, .plan-grid, .global-grid, .check-grid{ grid-template-columns:1fr; }
  .plan-grid.cols-5{ grid-template-columns:1fr 1fr; }
  .stat-card{ grid-template-columns:repeat(2,1fr); }
  .stat-cell:nth-child(2){ border-right:none; }
  .stat-cell{ border-bottom:1px solid var(--line-soft); }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4){ border-bottom:none; }
  .about-photo img{ height:380px; }
  .product-row, .product-row.reverse{ grid-template-columns:1fr; gap:28px; }
  .product-row.reverse .product-media,
  .product-row.reverse .product-copy{ order:unset; }
  .product-media img{ height:280px; }
  .video-testi-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 700px){
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .menu-toggle{ display:flex; }
  .topbar-left{ display:none; }
  .service-grid, .service-grid.cols-3{ grid-template-columns:1fr; }
  .process-track{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .cta-band{ padding:36px 26px; flex-direction:column; align-items:flex-start; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .plan-grid.cols-5{ grid-template-columns:1fr; }
  .video-testi-grid{ grid-template-columns:1fr; }
  .industry-grid{ grid-template-columns:1fr 1fr; }
  .whatsapp-float{ width:52px; height:52px; bottom:18px; right:18px; }
  .hero-content{ padding:50px 0 100px; }
  .stat-strip{ margin-top:-40px; }
}


/* Hero trust row */
.hero-trust{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  margin-top:28px; font-size:13px; color:var(--muted-2);
}
.hero-trust strong{
  font-weight:600; color:var(--muted); font-size:13px;
  padding:6px 12px; border:1px solid var(--line); border-radius:100px;
  background:rgba(255,255,255,0.03);
}

/* Stronger hero background fallback */
.hero-bg{
  background:
    radial-gradient(ellipse at 70% 30%, rgba(var(--accent-rgb),0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(var(--teal-rgb),0.12), transparent 45%),
    linear-gradient(160deg, #12101A 0%, #0E0D10 100%);
}
.hero-bg img{
  opacity:0.45;
}
.hero-bg::after{
  background:
    linear-gradient(180deg, rgba(11,18,32,0.4) 0%, rgba(11,18,32,0.75) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11,18,32,0.88) 0%, rgba(11,18,32,0.45) 50%, rgba(11,18,32,0.25) 100%) !important;
}

/* Image placeholders so layout doesn't collapse while loading */
.product-media, .about-photo, .work-thumb, .industry-card{
  background: var(--panel);
}
.product-media img, .about-photo img, .work-thumb img, .industry-card img{
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  min-height: 120px;
}

/* Industry grid 4 columns, 8 cards */
.industry-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

/* Video poster fallback bg */
.video-showcase, .video-testi-card{
  background: #0a0a0c;
}
.video-showcase video, .video-testi-card video{
  background: #111;
}

/* Smooth image fade-in */
img{
  transition: opacity .35s ease;
}


/* Process polish */
.process-step h4{ font-size:16px; margin-bottom:8px; }
.process-step p{ font-size:13.5px; color:var(--muted); line-height:1.55; }
.process-num{
  background: linear-gradient(145deg, var(--panel), var(--bg-1));
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.08);
}
.hero-content{ max-width: 720px; }
.btn-gold{ font-weight:700; letter-spacing:0.01em; }
.btn-primary{ font-weight:700; }
.stat-card{ backdrop-filter: blur(8px); }
.section-head h2{ letter-spacing:-0.02em; }


/* ========== HERO SLIDER ========== */
.hero-slider{
  position:relative;
  min-height: min(88vh, 780px);
  overflow:hidden;
  background:#0a090c;
}
.slider-track{ position:relative; width:100%; min-height: min(88vh, 780px); }
.slide{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transition: opacity .7s ease, visibility .7s ease;
  display:flex; flex-direction:column; justify-content:center; align-items:stretch;
}
.slide.active{ opacity:1; visibility:visible; z-index:2; }
.slide-bg{ position:absolute; inset:0; z-index:0; }
.slide-bg img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.04);
  transition: transform 6.5s ease-out;
}
.slide.active .slide-bg img{ transform: scale(1); }
.slide-overlay{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(105deg, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.72) 42%, rgba(11,18,32,0.35) 100%),
    linear-gradient(180deg, rgba(11,18,32,0.25) 0%, rgba(11,18,32,0.55) 70%, rgba(11,18,32,0.95) 100%);
}
.slide-content{
  position:relative; z-index:3;
  max-width:680px;
  margin-right:auto;
  padding: 90px 28px 160px;
  text-align:left;
}
.slide-badge{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'JetBrains Mono','Space Mono',monospace;
  font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
  color:#061018; background:var(--teal);
  padding:8px 16px; border-radius:100px; font-weight:700;
  margin-bottom:22px;
  box-shadow:0 8px 24px -8px rgba(var(--teal-rgb),0.5);
}
.slide-content h1{
  font-size:clamp(34px, 5.2vw, 58px);
  margin-bottom:18px; letter-spacing:-0.025em; line-height:1.12;
}
.slide-content h1 .hl{ color:var(--teal); }
.slide-content .lead{
  font-size:17px; color:#D0CBD6; max-width:520px;
  margin-bottom:30px; line-height:1.7;
}
.hero-stats{
  position:absolute; left:0; right:0; bottom:28px; z-index:5;
  margin:0;
}
.hero-stats .stat-card{
  box-shadow:0 24px 50px -20px rgba(0,0,0,0.7);
}

/* Slider controls */
.slider-btn{
  position:absolute; top:45%; z-index:6;
  width:48px; height:48px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(11,18,32,0.55); backdrop-filter:blur(8px);
  color:#fff; font-size:28px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s, border-color .2s, transform .2s;
}
.slider-btn:hover{ background:var(--accent); border-color:var(--accent); transform:scale(1.06); }
.slider-btn.prev{ left:18px; }
.slider-btn.next{ right:18px; }
.slider-dots{
  position:absolute; bottom:140px; left:28px;
  z-index:6; display:flex; gap:10px;
}
.slider-dots button{
  width:10px; height:10px; border-radius:50%; border:none;
  background:rgba(255,255,255,0.35); cursor:pointer; padding:0;
  transition: width .25s, background .25s, border-radius .25s;
}
.slider-dots button.active{
  width:28px; border-radius:100px; background:var(--teal);
}

@media (max-width: 700px){
  .hero-slider, .slider-track{ min-height: 78vh; }
  .slide-content{ padding: 80px 20px 160px; }
  .slider-btn{ width:40px; height:40px; font-size:22px; top:40%; }
  .slider-btn.prev{ left:10px; }
  .slider-btn.next{ right:10px; }
  .slider-dots{ bottom:145px; left:20px; }
  .hero-stats{ bottom:16px; }
}


/* Logo — light plate so dark logo art stays visible on navy UI */
.logo{
  display:flex; align-items:center; gap:0;
  line-height:0; flex-shrink:0;
  background:#ffffff;
  border-radius:12px;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 4px 16px -6px rgba(0,0,0,0.35);
  transition: box-shadow .2s ease, transform .2s ease;
}
.logo:hover{
  box-shadow:0 8px 22px -8px rgba(27,110,243,0.35);
  transform:translateY(-1px);
}
.logo-img{
  height:44px;
  width:auto;
  max-width:190px;
  object-fit:contain;
  object-position:left center;
  display:block;
  background:transparent;
  border-radius:0;
  padding:0;
}
.logo-img-sm{
  height:36px;
  max-width:160px;
}
footer .logo{
  padding:6px 12px;
  border-radius:10px;
  background:#ffffff;
}
footer .logo-img{ height:36px; max-width:150px; }
@media (max-width:700px){
  .logo{ padding:6px 10px; border-radius:10px; }
  .logo-img{ height:36px; max-width:130px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}
