/* ============================================================
   DATYPROD — PREMIUM DESIGN SYSTEM v3.0
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #050914;
  --bg-2: #080f1e;
  --bg-3: #0b1426;
  --surface: rgba(255,255,255,0.05);
  --surface-2: rgba(255,255,255,0.08);
  --surface-hover: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.09);
  --border-glow: rgba(102,224,255,0.25);
  --text: #f0f6ff;
  --text-2: rgba(220,235,255,0.75);
  --text-3: rgba(180,205,240,0.50);
  --cyan: #5de8ff;
  --violet: #8b5cf6;
  --emerald: #34d399;
  --pink: #f472b6;
  --amber: #fbbf24;
  --grad-primary: linear-gradient(135deg, #5de8ff 0%, #8b5cf6 60%, #f472b6 100%);
  --grad-secondary: linear-gradient(135deg, #34d399 0%, #5de8ff 100%);
  --grad-warm: linear-gradient(135deg, #fbbf24 0%, #f472b6 100%);
  --grad-dark: linear-gradient(180deg, #050914 0%, #080f1e 100%);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-md: 0 12px 48px rgba(0,0,0,0.40);
  --shadow-lg: 0 28px 80px rgba(0,0,0,0.50);
  --shadow-glow: 0 0 60px rgba(93,232,255,0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-full: 999px;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.18s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Body BG pattern ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(93,232,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(139,92,246,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(52,211,153,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Layout ── */
.page {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: rgba(5,9,20,0.80);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: opacity var(--transition-fast);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(93,232,255,0.3);
}
.nav-logo-mark svg, .nav-logo-mark img { width: 18px; height: 18px; object-fit: contain; }
.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.footer-logo .nav-logo-img {
  height: 26px;
}


/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface-2);
}
.nav-links a.active { color: var(--cyan); }

/* CTA button in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  box-shadow: 0 0 24px rgba(93,232,255,0.18);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(93,232,255,0.30);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  background: var(--surface);
  transition: background var(--transition-fast);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--surface-2); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(5,9,20,0.97);
  backdrop-filter: blur(24px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  border: 1px solid transparent;
}
.nav-drawer a:hover, .nav-drawer a.active {
  color: var(--cyan);
  background: rgba(93,232,255,0.07);
  border-color: rgba(93,232,255,0.15);
}

/* ============================================================
   BUTTONS & CTAs
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(93,232,255,0.18);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(93,232,255,0.32);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.22);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(93,232,255,0.25);
}
.btn-ghost:hover {
  background: rgba(93,232,255,0.07);
  border-color: rgba(93,232,255,0.45);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============================================================
   BADGES / PILLS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid;
}
.badge-cyan {
  background: rgba(93,232,255,0.08);
  color: var(--cyan);
  border-color: rgba(93,232,255,0.20);
}
.badge-violet {
  background: rgba(139,92,246,0.08);
  color: #a78bfa;
  border-color: rgba(139,92,246,0.20);
}
.badge-emerald {
  background: rgba(52,211,153,0.08);
  color: var(--emerald);
  border-color: rgba(52,211,153,0.20);
}
.badge svg { width: 13px; height: 13px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(93,232,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(93,232,255,0.20);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(93,232,255,0.08);
  background: var(--surface-2);
}
.card:hover::before { opacity: 1; }

/* Icon containers */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.icon-box svg { width: 26px; height: 26px; }

.icon-box-cyan { background: rgba(93,232,255,0.12); color: var(--cyan); }
.icon-box-violet { background: rgba(139,92,246,0.12); color: #a78bfa; }
.icon-box-emerald { background: rgba(52,211,153,0.12); color: var(--emerald); }
.icon-box-pink { background: rgba(244,114,182,0.12); color: var(--pink); }
.icon-box-amber { background: rgba(251,191,36,0.12); color: var(--amber); }
.icon-box-blue { background: rgba(59,130,246,0.12); color: #60a5fa; }

.icon-box-lg { width: 72px; height: 72px; border-radius: 20px; }
.icon-box-lg svg { width: 34px; height: 34px; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cyan);
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-secondary);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 600px;
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 56px;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Grid layouts ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 100px 0 80px;
  position: relative;
}

/* Split hero (index) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.hero-copy p {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Center hero (inner pages) */
.hero-center {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 0 64px;
}
.hero-center h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero-center p {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
}

/* Hero visual card (right side) */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  min-height: 500px;
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(93,232,255,0.10) 0deg, transparent 120deg, rgba(139,92,246,0.08) 240deg, transparent 360deg);
  animation: spin 20s linear infinite;
  pointer-events: none;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-visual-inner {
  position: relative;
  z-index: 1;
  padding: 40px;
  width: 100%;
}

/* Dashboard card in visual */
.dash-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.dash-header .icon-box { width: 44px; height: 44px; border-radius: 12px; }
.dash-header .icon-box svg { width: 20px; height: 20px; }
.dash-title { font-weight: 600; color: var(--text); font-size: 1rem; }
.dash-sub { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

.stats-grid-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.stat-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
}
.stat-pill .val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-pill .lbl {
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(5,9,20,0.90);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  z-index: 2;
  white-space: nowrap;
}
.float-badge svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }
.float-badge-1 { top: 24px; right: 24px; animation: float 4s ease-in-out infinite; }
.float-badge-2 { bottom: 24px; left: 24px; animation: float 4s ease-in-out infinite 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   PAGE CARDS (Index grid)
   ============================================================ */
.page-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.page-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.page-card:hover {
  transform: translateY(-8px);
  border-color: rgba(93,232,255,0.20);
  box-shadow: var(--shadow-md);
}
.page-card:hover::after { transform: scaleX(1); }

.page-card-icon { margin-bottom: 20px; }
.page-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.page-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.page-card .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.page-card .link svg { width: 15px; height: 15px; }
.page-card:hover .link { gap: 10px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(93,232,255,0.22);
  box-shadow: var(--shadow-md);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

/* ============================================================
   FEATURE CARDS (Why Us)
   ============================================================ */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(93,232,255,0.20);
  box-shadow: var(--shadow-md);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  overflow: hidden;
  margin: 48px 0;
}
.stat-box {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-box:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(93,232,255,0.20);
  box-shadow: var(--shadow-md);
}
.portfolio-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}
.portfolio-icon svg { width: 28px; height: 28px; }
.portfolio-content { flex: 1; }
.portfolio-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.portfolio-content p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap var(--transition-fast);
}
.portfolio-link svg { width: 14px; height: 14px; }
.portfolio-card:hover .portfolio-link { gap: 10px; }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.22);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #fbbf24;
  fill: #fbbf24;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-text::before { content: '"'; color: var(--violet); font-size: 1.5rem; line-height: 1; display: block; margin-bottom: 4px; font-style: normal; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.87rem;
  color: #fff;
  flex-shrink: 0;
}
.author-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.author-info p {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,232,255,0.3), transparent);
  z-index: 0;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
  margin: 4px;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(93,232,255,0.20);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(93,232,255,0.20);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.contact-info-card p.sub {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-top: 6px;
  line-height: 1.6;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-item .icon-box { flex-shrink: 0; }
.info-item h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.info-item p, .info-item a {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.55;
}
.info-item a:hover { color: var(--cyan); }

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.social-link svg { width: 15px; height: 15px; }
.social-link:hover {
  color: var(--cyan);
  border-color: rgba(93,232,255,0.25);
  background: rgba(93,232,255,0.07);
}

/* Contact Form */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(93,232,255,0.45);
  box-shadow: 0 0 0 3px rgba(93,232,255,0.08);
  background: rgba(255,255,255,0.06);
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

/* Map */
.map-container {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 180%;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(93,232,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   HERO IMAGE BANNER
   ============================================================ */
.hero-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}
.hero-image-wrap img { width: 100%; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-logo .nav-logo-mark { width: 30px; height: 30px; }
.footer-logo .nav-logo-mark svg, .footer-logo .nav-logo-mark img { width: 15px; height: 15px; object-fit: contain; }
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 280px;
}
.footer-socials-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-3);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.footer-social-icon svg { width: 16px; height: 16px; }
.footer-social-icon:hover {
  color: var(--cyan);
  border-color: rgba(93,232,255,0.25);
  background: rgba(93,232,255,0.07);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 5px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-col a:hover {
  color: var(--cyan);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--text-3);
}

/* ============================================================
   WHATSAPP FLOATING BTN
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.50);
}
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.40);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SHIMMER EFFECT
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--cyan), #fff, var(--violet), var(--cyan));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .grid-3, .page-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-band .stat-box:nth-child(odd) { border-right: 1px solid var(--border); }
  .stats-band .stat-box:last-child, .stats-band .stat-box:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 380px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
}

@media (max-width: 768px) {

  .hero { padding: 64px 0 48px; }
  .hero-copy h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .section { padding: 64px 0; }
  .grid-3, .grid-2, .page-cards-grid, .process-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner { padding: 48px 24px; }
  .contact-info-card, .contact-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page { width: min(100%, 100% - 32px); }
  .stats-band { grid-template-columns: 1fr; }
  .stats-band .stat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-band .stat-box:last-child { border-bottom: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-cyan { color: var(--cyan); }
.text-violet { color: var(--violet); }
.text-emerald { color: var(--emerald); }
.text-muted { color: var(--text-2); }
.mb-0 { margin-bottom: 0 !important; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }

/* ============================================================
   TRUST TICKER (infinite marquee)
   ============================================================ */
.trust-band {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.trust-band::before,
.trust-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trust-band::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2), transparent);
}
.trust-band::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-2), transparent);
}
.trust-ticker-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.trust-ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
  transition: color var(--transition-fast);
}
.trust-item:hover { color: var(--cyan); }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(93,232,255,0.25); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  width: 100%;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--cyan); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--text-3); transition: color var(--transition-fast); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(93,232,255,0.1); }
.faq-item.open .faq-icon svg { color: var(--cyan); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.72;
}

/* ============================================================
   HIGHLIGHT / ACCENT TEXT BLOCK
   ============================================================ */
.highlight-block {
  border-left: 3px solid var(--cyan);
  background: rgba(93,232,255,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast-container {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: rgba(5,9,20,0.95);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  animation: toast-in 0.35s cubic-bezier(0.4,0,0.2,1) forwards;
  max-width: 300px;
}
.toast.exit { animation: toast-out 0.3s ease forwards; }
.toast svg { width: 17px; height: 17px; flex-shrink: 0; }
.toast-success { border-color: rgba(52,211,153,0.35); }
.toast-success svg { color: var(--emerald); }
.toast-error { border-color: rgba(244,114,182,0.35); }
.toast-error svg { color: var(--pink); }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(20px); }
}

/* ============================================================
   SKELETON LOADER
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ============================================================
   TYPED TEXT CURSOR
   ============================================================ */
.typed-wrapper {
  display: inline;
}
.typed-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   HERO TYPED HEADLINE
   ============================================================ */
.hero-headline-typed {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  align-items: baseline;
}

/* ============================================================
   GLOW EFFECTS
   ============================================================ */
.glow-cyan { box-shadow: 0 0 30px rgba(93,232,255,0.25), 0 0 60px rgba(93,232,255,0.08); }
.glow-violet { box-shadow: 0 0 30px rgba(139,92,246,0.25), 0 0 60px rgba(139,92,246,0.08); }

/* ============================================================
   SCROLL PROGRESS (injected by JS)
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 12px rgba(93,232,255,0.6);
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

/* ============================================================
   CANVAS (particles)
   ============================================================ */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above canvas */
header, main, footer, .whatsapp-float, .nav-drawer, #toast-container, #scroll-progress {
  position: relative;
  z-index: 1;
}
header { z-index: 100; }
.nav-drawer { z-index: 99; }
.whatsapp-float { z-index: 200; }
#scroll-progress { z-index: 9999; }
#toast-container { z-index: 9998; }

/* ============================================================
   PILL TABS (for filtering)
   ============================================================ */
.tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}
.tab-btn:hover, .tab-btn.active {
  background: rgba(93,232,255,0.1);
  border-color: rgba(93,232,255,0.3);
  color: var(--cyan);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-2);
  cursor: pointer;
  z-index: 150;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  font-family: var(--font-body);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
#back-to-top:hover {
  background: rgba(93,232,255,0.1);
  border-color: rgba(93,232,255,0.3);
  color: var(--cyan);
  transform: translateY(-3px);
}
#back-to-top svg { width: 16px; height: 16px; }

/* ============================================================
   MINI GRAPH (sparkline)
   ============================================================ */
.sparkline-bar {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
}
.sparkline-bar span {
  flex: 1;
  background: linear-gradient(180deg, rgba(93,232,255,0.7), rgba(93,232,255,0.15));
  border-radius: 4px 4px 0 0;
  transition: opacity var(--transition-fast);
}
.sparkline-bar span:hover { opacity: 0.7; }
.sparkline-bar span.peak {
  background: linear-gradient(180deg, #5de8ff, #8b5cf6);
  box-shadow: 0 0 12px rgba(93,232,255,0.4);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th {
  background: var(--surface-2);
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--surface); }
.compare-table .check { color: var(--emerald); }
.compare-table .cross { color: var(--text-3); opacity: 0.5; }

/* ============================================================
   ENHANCED REVEAL
   ============================================================ */
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   MOBILE RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 768px) {
  .trust-item { font-size: 0.82rem; }
  .faq-question { padding: 16px 18px; font-size: 0.9rem; }
  .faq-answer-inner { padding: 0 18px 16px; }
  #back-to-top { left: 16px; bottom: 88px; }
}

