/* ── RESET & VARIABLES ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060b14;
  --bg2: #0d1525;
  --bg3: #111d30;
  --surface: #162033;
  --surface2: #1e2d44;
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --accent3: #10b981;
  --warn: #f59e0b;
  --text: #e8edf5;
  --text2: #8fa3be;
  --text3: #5a7190;
  --border: rgba(0,212,255,0.12);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(0,212,255,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { color: var(--text2); }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }

/* ── LAYOUT UTILS ────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex { display: flex; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(6,11,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(6,11,20,0.97); box-shadow: var(--shadow); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
}
.logo-bracket { color: var(--accent); }
.logo-slash { color: var(--accent2); }
.nav-links {
  list-style: none; display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  color: var(--text2); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  background: var(--accent) !important; color: var(--bg) !important;
  font-weight: 600 !important; padding: 10px 22px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: #00b8d9 !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,212,255,0.3); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 230px;
  box-shadow: var(--shadow); padding: 8px 0; z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 10px 18px; color: var(--text2) !important;
  font-size: 0.88rem !important; background: none !important;
}
.dropdown-menu li a:hover { color: var(--accent) !important; padding-left: 22px; }
.caret { font-size: 0.7rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius); font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: var(--bg);
}
.btn-primary:hover { background: #00b8d9; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.35); color: var(--bg); }
.btn-outline {
  background: transparent; color: var(--text); border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── CARDS ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition);
}
.card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg,rgba(0,212,255,0.15),rgba(124,58,237,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}

/* ── BADGES ──────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  background: rgba(0,212,255,0.1); color: var(--accent); border: 1px solid rgba(0,212,255,0.2);
}

/* ── SECTION HEADERS ─────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── GRADIENT TEXT ───────────────────────────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-green {
  background: linear-gradient(135deg, var(--accent3) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,212,255,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-inner { max-width: 760px; }
.hero-badge { margin-bottom: 28px; animation: fadeInUp 0.6s ease both; }
.hero h1 { margin-bottom: 24px; animation: fadeInUp 0.6s 0.1s ease both; }
.hero-desc { font-size: 1.2rem; margin-bottom: 36px; max-width: 580px; animation: fadeInUp 0.6s 0.2s ease both; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; animation: fadeInUp 0.6s 0.3s ease both; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; animation: fadeInUp 0.6s 0.4s ease both; }
.stat-item h3 { font-size: 2.4rem; }
.stat-item p { font-size: 0.9rem; margin: 0; }
.hero-code {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.8;
  max-width: 380px; animation: fadeInRight 0.8s 0.3s ease both;
  display: none;
}
@media(min-width:1100px){ .hero-code { display: block; } }
.code-header { display: flex; gap: 6px; margin-bottom: 16px; }
.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-line { color: var(--text2); }
.code-line .kw { color: var(--accent2); }
.code-line .fn { color: var(--accent); }
.code-line .str { color: var(--accent3); }
.code-line .cm { color: var(--text3); }
.typing-cursor { display: inline-block; width: 2px; height: 1em; background: var(--accent); animation: blink 1s infinite; vertical-align: text-bottom; margin-left: 2px; }

/* ── SERVICES GRID ───────────────────────────────────────────────────────── */
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition); cursor: pointer; text-decoration: none;
  display: block; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.service-card .card-icon { margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: 0.9rem; margin-bottom: 16px; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 6px; }

/* ── PROCESS STEPS ───────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--surface); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--accent);
  position: relative; z-index: 1;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.testi-stars { color: var(--warn); font-size: 1.1rem; margin-bottom: 16px; }
.testi-text { font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--bg);
}
.testi-info strong { display: block; font-size: 0.9rem; }
.testi-info small { color: var(--text3); font-size: 0.8rem; }

/* ── PRICING ─────────────────────────────────────────────────────────────── */
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; text-align: center;
  transition: var(--transition); position: relative;
}
.pricing-card.featured {
  border-color: var(--accent); background: linear-gradient(135deg, var(--surface), rgba(0,212,255,0.05));
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--bg); padding: 4px 16px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700;
}
.price { font-size: 2.8rem; font-weight: 800; font-family: var(--font-head); margin: 16px 0; }
.price small { font-size: 1rem; color: var(--text2); }
.pricing-features { list-style: none; margin: 24px 0; text-align: left; }
.pricing-features li { padding: 8px 0; font-size: 0.9rem; color: var(--text2); display: flex; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--accent3); font-weight: 700; }

/* ── CONTACT FORM ────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 500; }
.form-control {
  width: 100%; padding: 14px 18px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.form-control::placeholder { color: var(--text3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
  display: none; padding: 20px; background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius);
  color: var(--accent3); text-align: center; margin-top: 20px;
}

/* ── TECH STACK LOGOS ────────────────────────────────────────────────────── */
.tech-strip { overflow: hidden; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tech-track { display: flex; gap: 48px; animation: scroll-left 25s linear infinite; white-space: nowrap; }
.tech-item { display: flex; align-items: center; gap: 10px; opacity: 0.6; transition: var(--transition); flex-shrink: 0; }
.tech-item:hover { opacity: 1; }
.tech-item span { font-weight: 600; font-size: 0.9rem; }
.tech-logo { font-size: 1.5rem; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; padding: 20px 24px; background: var(--surface);
  border: none; color: var(--text); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); color: var(--accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; }

/* ── BLOG CARDS ──────────────────────────────────────────────────────────── */
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); }
.blog-card-img { height: 180px; background: linear-gradient(135deg, var(--bg3), var(--surface2)); position: relative; overflow: hidden; }
.blog-cat { position: absolute; top: 16px; left: 16px; }
.blog-content { padding: 24px; }
.blog-meta { font-size: 0.8rem; color: var(--text3); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.88rem; }

/* ── WHATSAPP BUTTON ─────────────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 88px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse-green 3s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); background: #20ba5a; color: white; }
.whatsapp-btn svg { width: 28px; height: 28px; }
.wa-tooltip {
  position: absolute; right: 66px; background: var(--surface);
  border: 1px solid var(--border); padding: 6px 12px; border-radius: 8px;
  font-size: 0.82rem; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: var(--transition);
}
.whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* ── CHATBOT WIDGET ──────────────────────────────────────────────────────── */
.chatbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.chatbot-toggle {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4); transition: var(--transition);
  position: relative;
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-toggle svg { width: 24px; height: 24px; color: white; }
.chat-badge {
  position: absolute; top: -4px; right: -4px; width: 20px; height: 20px;
  background: var(--warn); color: var(--bg); border-radius: 50%;
  font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.chatbot-box {
  position: absolute; bottom: 70px; right: 0;
  width: 340px; max-height: 500px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
  animation: slideUp 0.3s ease;
}
.chat-header {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  padding: 16px 18px; display: flex; align-items: center; gap: 12px;
}
.chat-avatar {
  width: 38px; height: 38px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: white; position: relative; flex-shrink: 0;
}
.online-dot {
  position: absolute; bottom: 0; right: 0; width: 10px; height: 10px;
  background: var(--accent3); border-radius: 50%; border: 2px solid var(--bg2);
}
.chat-info { flex: 1; }
.chat-info strong { display: block; font-size: 0.88rem; color: white; }
.chat-info small { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.chat-minimize { background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; padding: 0 4px; line-height: 1; }
.chat-messages { height: 260px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { display: flex; flex-direction: column; }
.chat-msg.bot { align-items: flex-start; }
.chat-msg.user { align-items: flex-end; }
.msg-bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 0.87rem; line-height: 1.5;
}
.chat-msg.bot .msg-bubble { background: var(--surface); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .msg-bubble { background: var(--accent); color: var(--bg); border-bottom-right-radius: 4px; font-weight: 500; }
.msg-time { font-size: 0.7rem; color: var(--text3); margin-top: 4px; }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; }
.chat-quick-replies button {
  padding: 5px 12px; background: var(--surface2); border: 1px solid var(--border);
  color: var(--accent); border-radius: 100px; font-size: 0.78rem; cursor: pointer;
  transition: var(--transition);
}
.chat-quick-replies button:hover { background: var(--accent); color: var(--bg); }
.chat-input-area { display: flex; border-top: 1px solid var(--border); }
.chat-input-area input {
  flex: 1; padding: 14px 16px; background: var(--surface);
  border: none; color: var(--text); font-family: var(--font-body); font-size: 0.88rem;
}
.chat-input-area input:focus { outline: none; }
.chat-input-area input::placeholder { color: var(--text3); }
#chat-send { padding: 14px 16px; background: var(--accent); border: none; cursor: pointer; transition: var(--transition); }
#chat-send:hover { background: #00b8d9; }
#chat-send svg { width: 18px; height: 18px; color: var(--bg); }
.chat-lead-form { padding: 16px; border-top: 1px solid var(--border); }
.chat-lead-form p { font-size: 0.85rem; margin-bottom: 12px; color: var(--text); }
.chat-lead-form input { width: 100%; margin-bottom: 8px; padding: 10px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: var(--font-body); font-size: 0.85rem; }
.chat-lead-form button { width: 100%; padding: 10px; background: var(--accent2); border: none; color: white; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 0.9rem; }

/* ── SCROLL TOP ──────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 44px; height: 44px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: 1.2rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  transition: var(--transition);
}
.scroll-top:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* ── CTA SECTION ─────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(124,58,237,0.08) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ── COUNTRY PAGE ────────────────────────────────────────────────────────── */
.country-hero { text-align: center; padding: 160px 0 80px; }
.country-flag { font-size: 5rem; margin-bottom: 24px; display: block; }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 40px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text2); }
.trust-item span:first-child { color: var(--accent3); font-size: 1.1rem; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
.footer-brand .logo { font-size: 1.1rem; }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--text2); transition: var(--transition);
}
.social-btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.footer-col h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text2); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact { margin-top: 20px; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 6px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid var(--border); text-align: center;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--text3); }

/* ── SERVICE DETAIL ──────────────────────────────────────────────────────── */
.service-hero { padding: 160px 0 80px; }
.service-hero-inner { max-width: 800px; }
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.feature-list li::before { content: '→'; color: var(--accent); font-weight: 700; }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes pulse-green { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 32px rgba(37,211,102,0.7)} }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media(max-width:1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: transparent; padding-left: 16px; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .chatbot-box { width: 300px; }
  .hero-btns { flex-direction: column; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ── SPECIAL PAGE SECTIONS ───────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 70px; background: radial-gradient(ellipse at 30% 60%, rgba(0,212,255,0.06) 0%, transparent 60%);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text3); margin-bottom: 20px; }
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text3); }

/* ── NUMBERS STRIP ───────────────────────────────────────────────────────── */
.numbers-strip { padding: 60px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.numbers-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.number-item { text-align: center; }
.number-item .num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; }
.number-item p { font-size: 0.88rem; margin: 0; }