/* PrompTive — Advanced Stylesheet v3.0 | Ocean Blue Palette */
@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 CUSTOM PROPERTIES — OCEAN BLUE PALETTE
═══════════════════════════════════════ */
:root {
  /* ═══ FULL COLOR PALETTE ═══ */
  --deep-twilight:   #03045E;   /* Deepest navy */
  --french-blue:     #023E8A;   /* Dark Blue */
  --bright-teal-blue:#0077B6;   /* Ocean Blue  */
  --blue-green:      #0096C7;   /* Mid-ocean */
  --turquoise-surf:  #00B4D8;   /* Turquoise */
  --sky-aqua:        #48CAE4;   /* Sky Aqua */
  --frosted-blue:    #90E0EF;   /* Frosted Blue */
  --frosted-blue-2:  #ADE8F4;   /* Frosted Blue 2 */
  --light-cyan:      #CAF0F8;   /* Light Cyan */

  /* Semantic aliases */
  --primary:        #0077B6;
  --primary-dark:   #023E8A;
  --primary-light:  #CAF0F8;
  --secondary:      #90E0EF;
  --accent:         #0096C7;
  --accent-2:       #48CAE4;
  --teal:           #90E0EF;
  --green:          #00B4D8;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #023E8A 0%, #0077B6 60%, #0096C7 100%);
  --grad-accent:    linear-gradient(135deg, #0077B6 0%, #48CAE4 100%);
  --grad-cool:      linear-gradient(135deg, #90E0EF 0%, #0077B6 100%);
  --grad-hero:      linear-gradient(135deg, #03045E 0%, #023E8A 45%, #0077B6 100%);
  --grad-card:      linear-gradient(135deg, rgba(0,119,182,0.06) 0%, rgba(144,224,239,0.06) 100%);
  --grad-glow:      radial-gradient(circle at 50% 50%, rgba(0,119,182,0.35) 0%, transparent 70%);
  --grad-mesh:      radial-gradient(at 40% 20%, rgba(2,62,138,0.2) 0px, transparent 50%),
                    radial-gradient(at 80%  0%, rgba(0,119,182,0.15) 0px, transparent 50%),
                    radial-gradient(at  0% 50%, rgba(144,224,239,0.12) 0px, transparent 50%),
                    radial-gradient(at 80% 50%, rgba(0,150,199,0.12) 0px, transparent 50%),
                    radial-gradient(at  0%100%, rgba(72,202,228,0.1) 0px, transparent 50%);

  /* Dark theme vars */
  --dark:           #03045E;
  --dark-2:         #023E8A;
  --dark-card:      rgba(255,255,255,0.04);
  --dark-border:    rgba(144,224,239,0.15);

  /* Light theme vars - Base */
  --body:           #1e3a5f;
  --muted:          #5a7fa8;
  --border:         #d4e8f5;
  --bg:             linear-gradient(135deg, #f0f8ff 0%, #e0f2fe 100%);
  --surface:        rgba(255, 255, 255, 0.85);
  --white:          #ffffff;
  
  /* Glass */
  --glass-bg:       rgba(255,255,255,0.7);
  --glass-border:   rgba(255,255,255,0.5);
  --glass-shadow:   0 8px 32px rgba(2,62,138,0.1);

  /* Misc */
  --radius:         16px;
  --radius-sm:      10px;
  --shadow:         0 4px 24px rgba(0,119,182,0.1);
  --shadow-lg:      0 16px 48px rgba(0,119,182,0.15);
  --shadow-xl:      0 24px 64px rgba(0,119,182,0.2);
  --transition:     0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-bounce: 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* Dark theme removed */

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  /* Subtle noise texture across entire page */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #f0f8ff 0%, #e0f2fe 100%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; position: relative; }
/* Subtle inner-page texture overlay — same feel as hero grid */
.section::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,119,182,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,119,182,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 100%);
  z-index: 0;
}
.section > * { position: relative; z-index: 1; }
.section--bg {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 50%, #e0f2fe 100%);
}

/* ── Sticky header wrapper ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.section--dark {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; color: var(--dark); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.3rem; }
p { font-size: 1.0625rem; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(202,240,248,0.6);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,119,182,0.25);
}
.eyebrow--white {
  color: var(--primary-light);
  background: rgba(255,255,255,0.12);
  border-color: rgba(144,224,239,0.3);
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header p { color: var(--muted); margin-top: 16px; font-size: 1.0625rem; }
.section-header--white h2, .section-header--white p { color: rgba(255,255,255,0.9); }
.section-header--white p { color: rgba(202,240,248,0.75); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.55s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 22px rgba(0,119,182,0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,119,182,0.55); }

.btn-accent {
  background: var(--grad-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(0,150,199,0.38);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,150,199,0.5); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-glass {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(144,224,239,0.3);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); border-color: rgba(144,224,239,0.5); }

.btn-white { background: white; color: var(--primary); border-color: white; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.18); background: var(--primary-light); }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  /* sticky is now on <header> — kept here for bg/blur only */
  position: relative;
  z-index: 1;
  background: var(--surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--surface);
  box-shadow: var(--shadow);
}
.navbar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--dark); letter-spacing: -0.03em;
}
.navbar__logo span { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.navbar__links { display: flex; align-items: center; gap: 36px; }
.navbar__links a {
  font-size: 0.9375rem; font-weight: 500; color: var(--body);
  transition: color var(--transition);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.navbar__links a:hover, .navbar__links a.active { color: var(--primary); }
.navbar__links a:hover::after, .navbar__links a.active::after { transform: scaleX(1); }
.navbar__cta { display: flex; align-items: center; gap: 12px; }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 28px; gap: 22px; z-index: 999;
  box-shadow: 0 20px 40px rgba(0,119,182,0.1);
  animation: slideDown 0.3s ease;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 500; color: var(--dark); font-size: 1.0625rem; }
.mobile-nav a:hover { color: var(--primary); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero__bg-image {
  position: absolute; inset: 0;
  background-image: url('../img/representation-user-experience-interface-design.jpg');
  background-size: cover; background-position: center top;
  opacity: 0.18;
  z-index: 0;
  transform: scale(1.04);
  animation: hero-bg-drift 18s ease-in-out infinite alternate;
}
@keyframes hero-bg-drift {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, 1%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #020640 0%, #01306e 40%, #0060a0 80%, #014f82 100%);
  opacity: 0.92;
  z-index: 1;
}
.hero__mesh {
  position: absolute; inset: 0;
  background: var(--grad-mesh);
  z-index: 2;
}

/* ── Animated wave at bottom ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 5;
}

/* Animated orbs — ocean depth feel */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  will-change: transform;
}
.hero__orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,150,199,0.3), rgba(0,119,182,0.15));
  top: -120px; right: -80px;
  animation: orb-drift-1 10s ease-in-out infinite alternate;
}
.hero__orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(2,62,138,0.28), rgba(0,119,182,0.1));
  bottom: -80px; left: 8%;
  animation: orb-drift-2 12s ease-in-out infinite alternate;
}
.hero__orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(144,224,239,0.2), transparent);
  top: 35%; left: -50px;
  animation: orb-drift-3 9s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-30px, 20px) scale(1.05); }
  66%  { transform: translate(20px, -15px) scale(0.98); }
  100% { transform: translate(-15px, 30px) scale(1.08); }
}
@keyframes orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.06); }
  100% { transform: translate(-20px, 20px) scale(1.02); }
}
@keyframes orb-drift-3 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%  { transform: translate(20px, 30px) scale(1.1); opacity: 0.9; }
  100% { transform: translate(-10px, -20px) scale(0.95); opacity: 0.7; }
}

/* ── Hero grid overlay ── */
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(144,224,239,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144,224,239,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ── Hero glow ring ── */
.hero__ring {
  position: absolute;
  width: 700px; height: 700px;
  border: 1px solid rgba(144,224,239,0.08);
  border-radius: 50%;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: ring-pulse 6s ease-in-out infinite;
}
.hero__ring::before {
  content: '';
  position: absolute; inset: 60px;
  border: 1px solid rgba(144,224,239,0.06);
  border-radius: 50%;
  animation: ring-pulse 6s ease-in-out 1s infinite;
}
.hero__ring::after {
  content: '';
  position: absolute; inset: 120px;
  border: 1px solid rgba(144,224,239,0.05);
  border-radius: 50%;
  animation: ring-pulse 6s ease-in-out 2s infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}

/* Particle canvas */
#particles { position: absolute; inset: 0; z-index: 3; pointer-events: none; }

.hero__inner {
  position: relative; z-index: 10;
  max-width: 1200px; margin: 0 auto; padding: 120px 28px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(144,224,239,0.12);
  border: 1px solid rgba(144,224,239,0.3);
  border-radius: 100px;
  padding: 8px 20px 8px 10px;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(202,240,248,0.9);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: badge-appear 0.8s ease both;
}
@keyframes badge-appear {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__badge .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2), 0 0 10px rgba(74,222,128,0.6);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2), 0 0 10px rgba(74,222,128,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.1), 0 0 20px rgba(74,222,128,0.8); }
}

.hero h1 {
  color: white;
  margin-bottom: 22px;
  animation: hero-title 0.9s ease 0.2s both;
}
@keyframes hero-title {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 .line-2 {
  background: linear-gradient(90deg, #90E0EF, #CAF0F8, #48CAE4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__desc {
  color: rgba(202,240,248,0.8);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
  animation: hero-desc 0.9s ease 0.4s both;
}
@keyframes hero-desc {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: hero-actions 0.9s ease 0.6s both;
}
@keyframes hero-actions {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Visual — Stacked cards same alignment ── */
.hero__visual {
  display: flex; justify-content: center; align-items: center;
  animation: hero-visual 1s ease 0.3s both;
}
@keyframes hero-visual {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%; max-width: 380px;
}
.hero__card-stack .card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(144,224,239,0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(2,62,138,0.5);
}
.hero__card-main { animation: card-float 5s ease-in-out infinite; }
.hero__card-back {
  position: static !important;
  width: 100%;
  bottom: auto; right: auto;
  opacity: 0.78;
  z-index: auto;
  animation: card-float-rev 5s ease-in-out 0.5s infinite;
}
@keyframes card-float     { 0%,100% { transform: translateY(0)    rotate(0deg); } 50% { transform: translateY(-14px) rotate(0.5deg); } }
@keyframes card-float-rev { 0%,100% { transform: translateY(-6px) rotate(-0.5deg); } 50% { transform: translateY(8px)  rotate(0.5deg); } }

.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,119,182,0.55);
}
.hero-card-title { font-size: 0.875rem; font-weight: 700; color: white; }
.hero-card-sub { font-size: 0.75rem; color: rgba(202,240,248,0.6); }

.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(144,224,239,0.15);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  transition: background var(--transition);
  min-width: 0;          /* allow shrinking inside grid */
  overflow: hidden;
}
.hero-stat:hover { background: rgba(0,119,182,0.15); }
.hero-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #90E0EF, #CAF0F8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
}
.hero-stat-label { font-size: 0.7rem; color: rgba(202,240,248,0.55); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-pulse-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; margin-top: 18px; }
.hero-pulse-fill {
  height: 100%; width: 70%;
  background: linear-gradient(90deg, #023E8A, #0077B6, #90E0EF);
  border-radius: 6px;
  animation: pulse-width 2.8s ease-in-out infinite alternate;
  box-shadow: 0 0 12px rgba(0,119,182,0.7);
}
@keyframes pulse-width { from { width: 40%; } to { width: 88%; } }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(202,240,248,0.6); font-size: 0.72rem; letter-spacing: 0.12em;
  animation: scroll-bob 2.2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(144,224,239,0.6), transparent);
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  padding: 0;
  background: white;
  position: relative;
  z-index: 4;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.stats-bar__item {
  padding: 38px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,119,182,0.06), rgba(144,224,239,0.06));
  opacity: 0;
  transition: opacity var(--transition);
}
.stats-bar__item:hover::before { opacity: 1; }
.stats-bar__item::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--grad-primary);
  transition: left 0.4s ease, right 0.4s ease;
}
.stats-bar__item:hover::after { left: 0; right: 0; }
.stats-bar__value {
  font-size: 2.25rem; font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-family: 'Space Grotesk', sans-serif;
}
.stats-bar__label { font-size: 0.875rem; color: var(--muted); margin-top: 4px; font-weight: 500; }
/* Scale down long text values like "Always On" */
.stats-bar__value { font-size: clamp(1.25rem, 2.5vw, 2.25rem); white-space: nowrap; }

/* ═══════════════════════════════════════
   SERVICES — 3D TILT CARD SYSTEM
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 28px;
  perspective: 1200px;  /* Parent perspective for ALL cards */
}

/* The transform wrapper enables hardware-accelerated 3D */
.service-card {
  background: white;
  border: 1px solid rgba(0,119,182,0.12);
  border-radius: 20px;
  padding: 36px 30px 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}

/* Glowing gradient that sweeps in on hover */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(0,119,182,0.07) 0%,
    rgba(72,202,228,0.06) 50%,
    rgba(144,224,239,0.04) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 20px;
  z-index: 0;
}
/* Top accent stripe */
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  border-radius: 20px 20px 0 0;
}
.service-card:hover { box-shadow: 0 32px 64px rgba(0,119,182,0.20), 0 8px 24px rgba(0,119,182,0.10); border-color: rgba(0,119,182,0.22); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
/* JS also applies rotateX/rotateY via inline style for tilt */
.service-card:hover .service-card__icon { transform: scale(1.15) rotate(-6deg) translateZ(20px); box-shadow: 0 12px 32px rgba(0,119,182,0.5); }

.service-card__icon {
  width: 58px; height: 58px;
  /* Apple-style frosted glass icon */
  background: linear-gradient(135deg, rgba(0,119,182,0.55) 0%, rgba(0,150,199,0.45) 100%);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  box-shadow: 0 4px 16px rgba(0,119,182,0.35), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.08);
  position: relative; z-index: 1;
  color: white;
}
.service-card__icon svg { width: 26px; height: 26px; stroke: white; fill: none; flex-shrink: 0; }

/* ═══════════════════════════════════════
   APPLE-STYLE GLASS ICON SYSTEM
═══════════════════════════════════════ */
/* Shared glass-icon mixin applied to all icon containers */
.glass-icon {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 4px 16px rgba(0,119,182,0.28),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}
.glass-icon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), rgba(255,255,255,0));
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.service-card h3 { margin-bottom: 10px; position: relative; z-index: 1; font-size: 1.125rem; }
.service-card p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 22px; line-height: 1.7; position: relative; z-index: 1; }
.service-card__link {
  font-size: 0.875rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
  position: relative; z-index: 1;
}
.service-card:hover .service-card__link { gap: 14px; color: var(--primary-dark); }
/* Variants */
.service-card--accent .service-card__icon { background: linear-gradient(135deg,#0077B6,#48CAE4); }
.service-card--teal  .service-card__icon { background: var(--grad-cool); }
.service-card--alt   .service-card__icon { background: linear-gradient(135deg,#0096C7,#00B4D8); }

/* ═══════════════════════════════════════
   GLOBAL ANIMATED CARDS & SCROLL REVEALS
═══════════════════════════════════════ */
.animated-card {
  position: relative;
  overflow: hidden;
}
.animated-card .hero-pulse-bar {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.animated-card:hover .hero-pulse-bar { opacity: 1; }

/* ═══════════════════════════════════════
   SCROLL REVEAL — Managed by JS engine
   (CSS only sets base; JS applies inline
   transition & transform per element)
═══════════════════════════════════════ */
/* Legacy .reveal class — kept for fallback */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.65s cubic-bezier(0.22,1,0.36,1),
    transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-delay-1 { transition-delay: 0.09s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.27s; }
.reveal-delay-4 { transition-delay: 0.36s; }

/* Hero-card icon SVG sizing */
.hero-card-icon svg { width: 26px; height: 26px; stroke: white; fill: none; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.why__features { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why__feature { display: flex; gap: 16px; align-items: flex-start; }
.why__feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,119,182,0.58) 0%, rgba(0,150,199,0.48) 100%);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,119,182,0.3), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.07);
  transition: transform var(--transition-bounce), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.why__feature-icon::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.22), transparent);
  pointer-events: none;
}
.why__feature:hover .why__feature-icon { transform: scale(1.12) rotate(-5deg); box-shadow: 0 8px 24px rgba(0,119,182,0.45); }
.why__feature h4 { margin-bottom: 6px; font-size: 1.0625rem; }
.why__feature p { color: var(--muted); font-size: 0.9375rem; line-height: 1.65; }

.why__visual-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.why__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: transform 0.6s ease;
}
.why__visual-wrap:hover .why__image { transform: scale(1.03); }
.why__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,62,138,0.65), rgba(0,119,182,0.35));
  border-radius: 24px;
}
.why__image-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(144,224,239,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  color: white;
}
.why__image-badge-value { font-size: 1.75rem; font-weight: 800; }
.why__image-badge-label { font-size: 0.8125rem; opacity: 0.8; }

/* ═══════════════════════════════════════
   TESTIMONIALS — CONTINUOUS MARQUEE
═══════════════════════════════════════ */
.testimonials-wrap { overflow: hidden; position: relative; padding: 12px 0; }
.testimonials-wrap::before,
.testimonials-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.testimonials-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  width: 340px;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.05;
  font-family: Georgia, serif;
}
.testimonial-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0,119,182,0.2); }
.testimonial-card:hover::after { transform: scaleX(1); }
.testimonial-card__stars { color: #f59e0b; font-size: 0.875rem; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-card__text { color: var(--body); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 0.9375rem; color: var(--dark); }
.testimonial-card__role { font-size: 0.8125rem; color: var(--muted); }

/* ═══════════════════════════════════════
   TECH STACK / TOOLS SECTION
═══════════════════════════════════════ */
.tools-section { background: white; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.tool-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}
.tool-card:hover { transform: translateY(-7px) scale(1.03); box-shadow: var(--shadow-lg); border-color: transparent; }
.tool-card:hover::before { opacity: 1; }
.tool-card__logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
  transition: transform var(--transition-bounce);
  object-fit: cover; /* for img tags */
  flex-shrink: 0;
}
.tool-card:hover .tool-card__logo { transform: scale(1.18) rotate(-6deg); }
.tool-card__name { font-size: 0.8rem; font-weight: 600; color: var(--dark); text-align: center; }

/* Tool logo — real image display */
.tool-card__logo {
  background: white;
  border-radius: 12px;
  padding: 4px;
  object-fit: contain !important;
}

/* Tool brand colors */
.tool-n8n::before    { background: linear-gradient(135deg, #ea4b71,#f97316); }
.tool-n8n .tool-card__logo    { background: white; }
.tool-make::before   { background: linear-gradient(135deg, #6d00cc,#a855f7); }
.tool-make .tool-card__logo   { background: white; }
.tool-vapi::before   { background: linear-gradient(135deg, #023E8A,#0077B6); }
.tool-vapi .tool-card__logo   { background: white; }
.tool-retell::before { background: linear-gradient(135deg, #0077B6,#48CAE4); }
.tool-retell .tool-card__logo { background: white; }
.tool-11labs::before { background: linear-gradient(135deg, #1a1a1a,#374151); }
.tool-11labs .tool-card__logo { background: white; }
.tool-twilio::before { background: linear-gradient(135deg, #f22f46,#e60023); }
.tool-twilio .tool-card__logo { background: white; }
.tool-chatgpt::before  { background: linear-gradient(135deg, #10a37f,#059669); }
.tool-chatgpt .tool-card__logo  { background: white; }
.tool-claude::before   { background: linear-gradient(135deg, #d97706,#f59e0b); }
.tool-claude .tool-card__logo   { background: white; }
.tool-gemini::before   { background: linear-gradient(135deg, #4285f4,#0f9d58); }
.tool-gemini .tool-card__logo   { background: white; }
.tool-hubspot::before  { background: linear-gradient(135deg, #ff7a59,#ff5c35); }
.tool-hubspot .tool-card__logo  { background: white; }
.tool-zoho::before  { background: linear-gradient(135deg, #e42527,#c0392b); }
.tool-zoho .tool-card__logo  { background: white; }
.tool-gcal::before  { background: linear-gradient(135deg, #4285f4,#34a853); }
.tool-gcal .tool-card__logo  { background: white; }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: var(--grad-hero);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}
.cta-banner .cta-orb-1 {
  position: absolute; width: 400px; height: 400px;
  background: rgba(0,119,182,0.28);
  border-radius: 50%; filter: blur(80px);
  top: -100px; right: 10%;
  animation: orb-drift-1 7s ease-in-out infinite alternate;
}
.cta-banner .cta-orb-2 {
  position: absolute; width: 300px; height: 300px;
  background: rgba(144,224,239,0.18);
  border-radius: 50%; filter: blur(60px);
  bottom: -80px; left: 5%;
  animation: orb-drift-2 8s ease-in-out infinite alternate-reverse;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: 18px; }
.cta-banner p {
  color: rgba(202,240,248,0.8);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
}
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #010B1F;
  color: rgba(202,240,248,0.55);
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer__brand .navbar__logo { color: white; margin-bottom: 16px; }
.footer__brand p { font-size: 0.9375rem; line-height: 1.7; max-width: 280px; }
.footer__col h4 { color: white; font-size: 0.8125rem; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 0.9375rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--secondary); }
.footer__bottom {
  border-top: 1px solid rgba(144,224,239,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: 0.875rem;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(144,224,239,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.footer__social a:hover { background: var(--grad-primary); border-color: transparent; color: white; transform: translateY(-3px); }

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  background: var(--grad-hero);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--grad-mesh); }
.page-hero .page-orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.page-hero .page-orb-1 { width: 400px; height: 400px; background: rgba(0,119,182,0.3); top: -100px; right: -100px; }
.page-hero .page-orb-2 { width: 300px; height: 300px; background: rgba(144,224,239,0.2); bottom: -80px; left: -60px; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(202,240,248,0.8); font-size: 1.125rem; max-width: 620px; margin: 0 auto; }

/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail__content { order: 2; }
.service-detail:nth-child(even) .service-detail__visual { order: 1; }
.service-detail__icon-lg {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(0,119,182,0.6) 0%, rgba(0,150,199,0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,119,182,0.38), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.08);
  position: relative; overflow: hidden;
}
.service-detail__icon-lg::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.22), transparent);
  pointer-events: none;
}
.service-detail h2 { margin-bottom: 16px; }
.service-detail p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.service-detail__benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.service-detail__benefit {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9375rem; color: var(--body);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-detail__benefit:hover { background: rgba(202,240,248,0.5); border-color: rgba(0,119,182,0.3); transform: translateX(4px); }
.service-detail__benefit::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.service-detail__visual {
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  position: relative;
}
.service-detail__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail__visual:hover img { transform: scale(1.04); }
.service-detail__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,62,138,0.55), rgba(0,119,182,0.3));
}

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.process-step { text-align: center; padding: 40px 24px; position: relative; }
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -12px; top: 46px;
  font-size: 1.5rem; color: rgba(0,119,182,0.35);
}
.process-step__num {
  width: 52px; height: 52px;
  background: var(--grad-primary);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin: 0 auto 18px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,119,182,0.45);
  transition: transform var(--transition-bounce), box-shadow var(--transition);
}
.process-step:hover .process-step__num { transform: scale(1.18); box-shadow: 0 8px 24px rgba(0,119,182,0.55); }
.process-step h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(0,119,182,0.3); box-shadow: var(--shadow); }
.faq-item.open { border-color: rgba(0,119,182,0.45); box-shadow: var(--shadow); }
.faq-item__question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 1rem; font-weight: 600;
  color: var(--dark); font-family: inherit; text-align: left; gap: 16px;
}
.faq-item__question span { color: var(--primary); font-size: 1.35rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-item__question span { transform: rotate(45deg); }
.faq-item__answer {
  padding: 0 24px; font-size: 0.9375rem; color: var(--muted);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  line-height: 1.7;
}
.faq-item.open .faq-item__answer { max-height: 240px; padding: 0 24px 22px; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-value {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: all var(--transition);
}
.about-value:hover { background: rgba(202,240,248,0.5); border-color: rgba(0,119,182,0.3); transform: translateY(-3px); }
.about-value h4 { font-size: 0.9375rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.about-value p { font-size: 0.875rem; color: var(--muted); }
.about-visual-wrap { border-radius: 24px; overflow: hidden; position: relative; height: 460px; }
.about-visual-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,62,138,0.6), rgba(0,119,182,0.25));
}
.about-visual-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(144,224,239,0.3);
  border-radius: 14px; padding: 16px 20px; color: white;
}
.about-visual-badge .val { font-size: 2rem; font-weight: 800; }
.about-visual-badge .lbl { font-size: 0.8125rem; opacity: 0.8; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.team-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: all var(--transition);
  overflow: hidden; position: relative;
}
.team-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-card:hover::before { transform: scaleX(1); }
.team-card__avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(0,119,182,0.38);
  transition: transform var(--transition-bounce);
}
.team-card:hover .team-card__avatar { transform: scale(1.1); }
.team-card h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.team-card p { font-size: 0.875rem; color: var(--muted); }

/* ═══════════════════════════════════════
   OUR STORY — TIMELINE
═══════════════════════════════════════ */
.story-timeline { max-width: 740px; margin: 0 auto; }
.story-milestone { display: flex; gap: 28px; margin-bottom: 48px; position: relative; }
.story-milestone:not(:last-child)::after {
  content: '';
  position: absolute; left: 23px; top: 52px; bottom: -48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(0,119,182,0.1));
}
.story-milestone__dot {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,119,182,0.62) 0%, rgba(0,150,199,0.52) 100%);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 1;
  box-shadow: 0 0 0 6px rgba(0,119,182,0.12), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.07);
  transition: transform var(--transition-bounce);
  position: relative; overflow: hidden;
  color: white;
}
.story-milestone__dot::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
  border-radius: 50%;
}
.story-milestone:hover .story-milestone__dot { transform: scale(1.15); }
.story-milestone__year { font-size: 0.8125rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.story-milestone h3 { margin-bottom: 8px; font-size: 1.125rem; }
.story-milestone p { color: var(--muted); font-size: 0.9375rem; line-height: 1.7; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,119,182,0.6) 0%, rgba(0,150,199,0.5) 100%);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,119,182,0.32), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.07);
  position: relative; overflow: hidden;
}
.contact-item__icon::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.22), transparent);
  pointer-events: none;
}
.contact-item h4 { margin-bottom: 4px; font-size: 0.9375rem; }
.contact-item p { color: var(--muted); font-size: 0.9375rem; }

.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
}

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__group label { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9375rem; font-family: inherit;
  color: var(--dark); background: white;
  transition: all var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,119,182,0.1);
}
.form__group input:hover,
.form__group select:hover,
.form__group textarea:hover { border-color: rgba(0,119,182,0.4); }
.form__group textarea { resize: vertical; min-height: 130px; }
.form__msg {
  padding: 14px 18px; border-radius: 10px;
  font-size: 0.9375rem; font-weight: 500; display: none;
}
.form__msg.success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; display: block; }
.form__msg.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block; }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS — JS-managed
   Fade/slide classes used as FALLBACK only;
   main.js applies all transitions inline.
═══════════════════════════════════════ */

/* Do not add opacity:0 here — JS handles initial state */
.fade-in,
.fade-in-left,
.fade-in-right { /* intentionally empty — controlled by JS */ }
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger tokens — JS reads these to offset timing */
.stagger-1 { --stagger: 0.09s; }
.stagger-2 { --stagger: 0.18s; }
.stagger-3 { --stagger: 0.27s; }
.stagger-4 { --stagger: 0.36s; }

/* Glow pulse on feature icons */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,119,182,0.3); }
  50%       { box-shadow: 0 4px 30px rgba(0,119,182,0.65), 0 0 0 6px rgba(0,119,182,0.1); }
}
.glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }

/* Shimmer on gradient text */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.gradient-text {
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
}

/* Notification */
.notification {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--dark-2); color: white;
  padding: 16px 22px; border-radius: 12px;
  font-size: 0.9375rem; font-weight: 500;
  box-shadow: var(--shadow-xl);
  transform: translateY(100px); opacity: 0;
  transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(144,224,239,0.2);
}
.notification::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.notification.show { transform: translateY(0); opacity: 1; }

/* ── Team card photo avatar ── */
.team-card__avatar--photo {
  background: none;
  box-shadow: 0 8px 32px rgba(0,119,182,0.25);
  border: 3px solid rgba(0,119,182,0.2);
  overflow: hidden;
  padding: 0;
}
.team-card__avatar--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}
.team-card:hover .team-card__avatar--photo {
  border-color: rgba(0,119,182,0.5);
  box-shadow: 0 12px 36px rgba(0,119,182,0.4);
}

/* ── Enhanced hero orbs ── */
.hero__orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,150,199,0.35), rgba(0,119,182,0.18), transparent 70%);
}
.hero__orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(2,62,138,0.32), rgba(0,119,182,0.12), transparent 70%);
}
.hero__orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(72,202,228,0.25), rgba(144,224,239,0.1), transparent 70%);
}

/* ── Professional entrance animations ── */
@keyframes slide-up-fade {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-left-fade {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slide-right-fade {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scale-up-fade {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,119,182,0.3); }
  50%       { box-shadow: 0 8px 36px rgba(0,119,182,0.6), 0 0 0 8px rgba(0,119,182,0.06); }
}

/* Richer reveal: slide + scale — legacy, now handled by JS */
.reveal {
  /* Intentionally minimal — JS overrides inline */
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Service card icon — richer hover */
.service-card:hover .service-card__icon {
  animation: float-glow 1.8s ease-in-out infinite;
}

/* Stats bar value count-up pop */
.stats-bar__value {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.stats-bar__item:hover .stats-bar__value {
  transform: scale(1.08);
}

/* Eyebrow badge subtle float */
.eyebrow {
  animation: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.eyebrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,119,182,0.2);
}

/* Hero badge entrance */
.hero__badge {
  animation: slide-up-fade 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero h1 {
  animation: slide-up-fade 0.8s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}
.hero__desc {
  animation: slide-up-fade 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hero__actions {
  animation: slide-up-fade 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}
.hero__visual {
  animation: slide-right-fade 1s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}

/* Smoother marquee — ease in/out edges */
.testimonials-track {
  animation: marquee-scroll 45s linear infinite;
}

/* Tool card icon pop on hover */
.tool-card:hover .tool-card__logo {
  transform: scale(1.22) rotate(-8deg);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

/* CTA banner buttons entrance */
.cta-banner__actions .btn {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.cta-banner__actions .btn:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Page hero gradient text animation */
.page-hero h1 span {
  animation: shimmer 4s linear infinite;
  background-size: 200% auto;
}

/* About value cards — left slide */
.about-value {
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.about-value:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--shadow);
}

/* ── Modern Two-Part Cursor ── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--bright-teal-blue);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.15s ease, background 0.3s ease;
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(0,119,182,0.55);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  backdrop-filter: none;
}
.cursor-glow {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,119,182,0.08), rgba(144,224,239,0.04), transparent 70%);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9996;
  transition: opacity 0.3s ease;
}
body:has(a:hover) .cursor-dot,
body:has(.btn:hover) .cursor-dot { transform: translate(-50%,-50%) scale(1.8); background: var(--sky-aqua); }
body:has(a:hover) .cursor-ring,
body:has(.btn:hover) .cursor-ring { width: 52px; height: 52px; border-color: rgba(72,202,228,0.7); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { gap: 48px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2)::after, .process-step:nth-child(4)::after { display: none; }
}
@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; padding: 80px 28px 80px; }
  .hero { min-height: auto; }
  .hero::after { height: 50px; }
  .hero__visual, .hero__scroll { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .why-grid, .about-grid, .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail:nth-child(even) .service-detail__content,
  .service-detail:nth-child(even) .service-detail__visual { order: unset; }
  .why__visual-wrap, .about-visual-wrap { height: 280px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .section { padding: 64px 0; }
  .contact-form-card { padding: 28px 20px; }
}
@media (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .tool-card { padding: 18px 10px; }
}

/* Illustration images (white bg 3D) — no dark overlay, contain fit */
.service-detail__visual--illus {
  background: linear-gradient(135deg, #e0f2fe, #f0f8ff);
}
.service-detail__visual--illus img {
  object-fit: contain;
  padding: 16px;
  background: transparent;
}
.service-detail__visual--illus .service-detail__visual-overlay {
  opacity: 0;
}
.why__visual-wrap--illus .why__image {
  object-fit: contain;
  background: linear-gradient(135deg, #e0f2fe, #f0f8ff);
}
.why__visual-wrap--illus .why__image-overlay {
  background: linear-gradient(135deg, rgba(2,62,138,0.15), rgba(0,119,182,0.05));
}

/* ═══════════════════════════════════════
   IMPROVED MOBILE RESPONSIVENESS
═══════════════════════════════════════ */

/* Base mobile improvements */
@media (max-width: 768px) {
  /* Typography scale down */
  h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }

  /* Hero */
  .hero__inner { padding: 72px 18px 64px; gap: 32px; }
  .hero__desc { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero::after { height: 40px; }

  /* Stats bar — 2 cols */
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(3) { border-right: 1px solid var(--border); }
  .stats-bar__item:nth-child(3),
  .stats-bar__item:nth-child(4) { border-top: 1px solid var(--border); }
  .stats-bar__value { font-size: 1.75rem; }

  /* Services grid — 1 col on small, 2 on md */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why__visual-wrap { height: 260px; }
  .why__image { height: 260px; }

  /* Tools grid */
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .tool-card { padding: 16px 10px; }
  .tool-card__logo { width: 40px; height: 40px; }
  .tool-card__name { font-size: 0.72rem; }

  /* Testimonials */
  .testimonials-track { animation: marquee-scroll 30s linear infinite; }
  .testimonial-card { width: 280px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual-wrap { height: 260px; }
  .about-values { grid-template-columns: 1fr; }

  /* Services detail */
  .service-detail { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .service-detail__visual { height: 300px; }
  .service-detail:nth-child(even) .service-detail__content,
  .service-detail:nth-child(even) .service-detail__visual { order: unset; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-card { padding: 24px 18px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:not(:last-child)::after { display: none; }

  /* Team card single */
  .team-card { max-width: 100% !important; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 0.9375rem; }

  /* CTA banner */
  .cta-banner { padding: 64px 0; }
  .cta-banner p { font-size: 1rem; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Story timeline */
  .story-milestone { gap: 18px; }
  .story-milestone__dot { width: 40px; height: 40px; font-size: 0.9rem; }

  /* Calendly embed */
  .calendly-wrap .calendly-inline-widget { height: 580px !important; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }

  /* Hero */
  .hero__inner { padding: 60px 14px 56px; }
  .hero__badge { font-size: 0.72rem; padding: 6px 12px; }

  /* Stats */
  .stats-bar__item { padding: 24px 12px; }
  .stats-bar__value { font-size: 1.5rem; }

  /* Tools — 2 cols on very small */
  .tools-grid { grid-template-columns: repeat(2, 1fr); }

  /* Cards */
  .service-card { padding: 28px 20px 22px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 0 28px; }

  /* Buttons */
  .btn { padding: 12px 22px; font-size: 0.875rem; }

  /* Page hero */
  .page-hero { padding: 72px 0 60px; }

  /* Contact form */
  .form__row { grid-template-columns: 1fr; }

  /* Process grid */
  .process-grid { grid-template-columns: 1fr; }

  /* Navbar */
  .navbar__inner { height: 64px; }
  .navbar__logo { font-size: 1.25rem; }
}

/* Tablet mid-range */
@media (min-width: 481px) and (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}
