/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --primary:        #2563eb;
  --primary-dark:   #1d4ed8;
  --primary-light:  #eff6ff;
  --primary-glow:   rgba(37,99,235,.35);
  --accent:         #0ea5e9;
  --accent2:        #8b5cf6;
  --text:           #0f172a;
  --text-muted:     #64748b;
  --bg:             #ffffff;
  --bg-alt:         #f8fafc;
  --border:         #e2e8f0;
  --white:          #ffffff;
  --dark:           #0a0f1e;
  --dark2:          #0d1526;

  --radius-sm: 6px; --radius-md: 12px;
  --radius-lg: 20px; --radius-xl: 32px; --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.16);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.25);

  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-bounce:   cubic-bezier(0.34,1.56,0.64,1);
  --transition:    .3s cubic-bezier(0.4,0,0.2,1);
  --section-py:    7rem;
}

/* ============================================================
   CURSOR GLOW (desktop only)
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%,-50%);
  transition: opacity .3s;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: var(--section-py); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); }

.section__header { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 4.5rem; }

.section__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-light); padding: .35rem .9rem;
  border-radius: var(--radius-full); margin-bottom: 1rem;
}
.section__eyebrow--accent { color: var(--accent); background: rgba(14,165,233,.12); }
.section__eyebrow--light  { color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800;
  line-height: 1.15; color: var(--text); letter-spacing: -.03em;
}
.section__title em { font-style: normal; color: var(--primary); }
.section__title--light { color: var(--white); }

.section__subtitle { color: var(--text-muted); font-size: 1.05rem; margin-top: .75rem; }
.section__subtitle--light { color: rgba(255,255,255,.65); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2.1rem; border-radius: var(--radius-md);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .3s var(--ease-bounce), box-shadow .3s ease, background .25s, color .25s, border-color .25s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease-out-expo); }
.btn:hover svg { transform: translateX(4px); }
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

.btn--primary {
  background: var(--primary); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 12px 40px rgba(37,99,235,.45); }
.btn--primary:hover::before { opacity: 1; }

.btn--glass {
  background: rgba(255,255,255,.1); color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

.btn--white {
  background: var(--white); color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { box-shadow: var(--shadow-xl); background: #f0f7ff; }

/* Magnetic hover — JS enhanced */
.btn--magnetic { transition: transform .4s var(--ease-out-expo), box-shadow .3s, background .25s, color .25s; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 200;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.nav__logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.3rem; font-weight: 800; color: var(--text); letter-spacing: -.03em;
}
.nav__logo span { color: var(--primary); }
.nav__logo-icon { width: 32px; height: 32px; }

.nav__menu { display: flex; align-items: center; gap: .2rem; }
.nav__link {
  padding: .45rem .95rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; color: var(--text-muted);
  transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: var(--primary-light); }

.nav__link--cta {
  background: var(--primary); color: var(--white) !important;
  padding: .5rem 1.2rem; border-radius: var(--radius-md); margin-left: .4rem;
  box-shadow: var(--shadow-blue);
  transition: background .25s, box-shadow .25s, transform .3s var(--ease-bounce) !important;
}
.nav__link--cta:hover { background: var(--primary-dark) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.4) !important; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem; border-radius: var(--radius-sm);
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
  padding-top: 72px;
}

/* Animated canvas particles */
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Morphing blob orbs */
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .45;
  animation: blob-morph 12s ease-in-out infinite;
}
.blob--1 {
  width: 600px; height: 600px; top: -15%; left: -10%;
  background: radial-gradient(circle, #2563eb, #1e3a8a);
  animation-delay: 0s;
}
.blob--2 {
  width: 500px; height: 500px; bottom: -10%; right: -5%;
  background: radial-gradient(circle, #0ea5e9, #0284c7);
  animation-delay: -4s;
}
.blob--3 {
  width: 400px; height: 400px; top: 30%; right: 20%;
  background: radial-gradient(circle, #8b5cf6, #6d28d9);
  opacity: .25; animation-delay: -8s;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1) rotate(0deg); }
  33%       { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; transform: scale(1.05) rotate(5deg); }
  66%       { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; transform: scale(0.95) rotate(-5deg); }
}

/* Subtle grid overlay */
.hero__grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px;
  padding-block: 4rem;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px); border-radius: var(--radius-full);
  padding: .45rem 1.1rem; color: rgba(255,255,255,.8);
  font-size: .8rem; font-weight: 500; letter-spacing: .06em;
  margin-bottom: 2rem;
  animation: hero-badge-in .8s var(--ease-out-expo) .1s both;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.12); }
}
@keyframes hero-badge-in {
  from { opacity: 0; transform: translateY(16px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__title {
  display: flex; flex-direction: column; gap: .1em;
  font-size: clamp(2.6rem, 7vw, 4.8rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -.04em;
  color: var(--white); margin-bottom: 1.75rem;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line > span { display: block; }
.hero__title-line--gradient {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #38bdf8);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s linear infinite;
}
@keyframes gradient-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__description {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.7);
  max-width: 620px; margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero__stats {
  display: inline-flex; align-items: center; gap: 2rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px); border-radius: var(--radius-xl);
  padding: 1rem 2.5rem;
}
.hero__stat { text-align: center; }
.hero__stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero__stat span   { font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 500; margin-top: .25rem; display: block; }
.hero__stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

.hero__scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.25);
  border-radius: 13px; display: flex; justify-content: center; padding-top: 6px;
  animation: fade-in-up 1s var(--ease-out-expo) 1s both;
}
.hero__scroll-indicator span {
  width: 3px; height: 7px; background: rgba(255,255,255,.5);
  border-radius: 2px; animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(9px); opacity: .3; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.about__visual { position: relative; aspect-ratio: 1; max-width: 460px; overflow: hidden; }
.about__ring {
  position: absolute; border-radius: 50%;
  border: 2px solid transparent;
}
.about__ring--outer {
  inset: 0;
  border-color: rgba(37,99,235,.15);
  background: conic-gradient(from 0deg, transparent 70%, rgba(37,99,235,.3) 100%);
  -webkit-mask: radial-gradient(circle, transparent 48%, black 49%);
  mask: radial-gradient(circle, transparent 48%, black 49%);
  animation: ring-spin 12s linear infinite;
}
.about__ring--inner {
  inset: 14%;
  border-color: rgba(14,165,233,.2);
  background: conic-gradient(from 180deg, transparent 70%, rgba(14,165,233,.25) 100%);
  -webkit-mask: radial-gradient(circle, transparent 48%, black 49%);
  mask: radial-gradient(circle, transparent 48%, black 49%);
  animation: ring-spin 8s linear infinite reverse;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.about__icon-grid {
  position: absolute; inset: 24%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about__icon-cell {
  background: var(--white); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; box-shadow: var(--shadow-md); padding: 1.25rem;
  border: 1px solid var(--border);
  transition: transform .4s var(--ease-bounce), box-shadow .3s;
}
.about__icon-cell:hover { transform: translateY(-6px) scale(1.04); box-shadow: var(--shadow-lg); }
.about__icon-cell svg { width: 28px; height: 28px; color: var(--primary); }
.about__icon-cell span { font-size: .68rem; font-weight: 600; color: var(--text-muted); text-align: center; }

.about__text { display: flex; flex-direction: column; gap: 1.4rem; }
.about__description { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }

.about__stats { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: .5rem; }
.stat {
  flex: 1; text-align: center; padding: 1.5rem 1rem;
  position: relative;
  transition: background .25s;
}
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border); }
.stat:hover { background: var(--primary-light); }
.stat__number { display: block; font-size: 2.1rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: .35rem; letter-spacing: -.03em; }
.stat__label  { font-size: .78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(37,99,235,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(14,165,233,.1) 0%, transparent 60%);
}

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start; position: relative; z-index: 1; }

.service-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 2.5rem;
  transition: transform .4s var(--ease-out-expo), box-shadow .4s, border-color .3s, background .3s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.07); border-color: rgba(37,99,235,.4); box-shadow: 0 0 0 1px rgba(37,99,235,.2), 0 32px 60px rgba(0,0,0,.4); }
.service-card:hover::before { opacity: 1; }

/* Glow on hover */
.service-card__glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.25), transparent 70%);
  top: -60px; right: -60px; pointer-events: none;
  opacity: 0; transform: scale(.5);
  transition: opacity .4s, transform .4s;
}
.service-card:hover .service-card__glow { opacity: 1; transform: scale(1); }

.service-card--featured {
  background: linear-gradient(145deg, rgba(37,99,235,.15), rgba(14,165,233,.1));
  border-color: rgba(37,99,235,.4);
  box-shadow: 0 0 0 1px rgba(37,99,235,.25), 0 20px 60px rgba(37,99,235,.15);
}
.service-card--featured:hover { box-shadow: 0 0 0 1px rgba(37,99,235,.5), 0 32px 80px rgba(37,99,235,.25); }

.service-card__badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(37,99,235,.4);
}

.service-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(14,165,233,.15));
  border: 1px solid rgba(37,99,235,.25); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
  transition: transform .4s var(--ease-bounce), box-shadow .3s;
}
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 8px 24px rgba(37,99,235,.3); }
.service-card__icon svg { width: 26px; height: 26px; color: var(--accent); }

.service-card__title { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.service-card__description { font-size: .93rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.75rem; }

.service-card__list { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.service-card__list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; color: rgba(255,255,255,.7);
}
.service-card__list li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
}

.service-card__footer { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; }
.service-card__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 600; color: var(--accent);
  transition: gap .3s, color .25s;
}
.service-card__cta:hover { gap: .85rem; color: var(--white); }
.service-card__cta svg { width: 14px; height: 14px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process__track { position: relative; max-width: 800px; margin-inline: auto; }

.process__line {
  position: absolute; top: 28px; bottom: 28px; left: 27px;
  width: 2px; background: rgba(37,99,235,.12);
}
.process__line-fill {
  width: 100%; background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px; height: 0%;
  transition: height 1s var(--ease-out-expo);
  box-shadow: 0 0 10px rgba(37,99,235,.5);
}

.process__steps { position: relative; }
.process__step {
  display: flex; gap: 2.25rem; padding: 1.5rem 0; align-items: flex-start;
  transition: transform .3s;
}
.process__step:hover { transform: translateX(6px); }

.process__step-bubble {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--bg), var(--shadow-blue);
  transition: transform .4s var(--ease-bounce), box-shadow .3s;
  overflow: hidden;
}
.process__step:hover .process__step-bubble { transform: scale(1.12); box-shadow: 0 0 0 8px var(--bg), 0 8px 30px rgba(37,99,235,.4); }

.process__step-bubble span {
  font-size: .8rem; font-weight: 800; color: var(--white); letter-spacing: .05em;
  position: absolute; opacity: 1; transition: opacity .25s, transform .25s;
}
.process__step-bubble .process__step-icon {
  width: 22px; height: 22px; color: var(--white);
  position: absolute; opacity: 0; transform: scale(.6);
  transition: opacity .25s, transform .3s var(--ease-bounce);
}
.process__step:hover .process__step-bubble span { opacity: 0; transform: scale(.6); }
.process__step:hover .process__step-bubble .process__step-icon { opacity: 1; transform: scale(1); }

.process__step-content {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem; flex: 1;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.process__step:hover .process__step-content { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.25); background: var(--white); }
.process__step-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.process__step-content p  { font-size: .93rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.why__item {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform .4s var(--ease-out-expo), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.why__item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.why__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.2); }
.why__item:hover::after { transform: scaleX(1); }

.why__icon-wrap {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--primary-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .4s var(--ease-bounce);
}
.why__item:hover .why__icon-wrap { background: var(--primary); transform: scale(1.1) rotate(-8deg); }
.why__icon svg { width: 22px; height: 22px; color: var(--primary); transition: color .3s; }
.why__item:hover .why__icon svg { color: var(--white); }

.why__text { display: flex; flex-direction: column; gap: .25rem; }
.why__text strong { font-size: .95rem; font-weight: 700; color: var(--text); }
.why__text span   { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   REQUEST A SERVICE
   ============================================================ */
.request__card {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #1d4ed8 75%, #0ea5e9 100%);
  border-radius: var(--radius-xl); padding: 5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(37,99,235,.2);
  position: relative; overflow: hidden;
}
.request__orbs { position: absolute; inset: 0; pointer-events: none; }
.request__orb {
  position: absolute; border-radius: 50%;
  animation: orb-float 8s ease-in-out infinite;
}
.request__orb--1 { width: 300px; height: 300px; top: -80px; right: -40px; background: radial-gradient(circle, rgba(14,165,233,.3), transparent 70%); }
.request__orb--2 { width: 250px; height: 250px; bottom: -80px; left: 30%; background: radial-gradient(circle, rgba(139,92,246,.2), transparent 70%); animation-delay: -4s; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.1); }
}

.request__title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: .85rem; letter-spacing: -.03em; }
.request__description { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 500px; line-height: 1.75; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 700px; margin-inline: auto; }

.contact__card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .9rem; padding: 2.5rem 2rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out-expo), box-shadow .4s, border-color .3s;
}
.contact__card-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.8) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.contact__card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-xl); border-color: rgba(37,99,235,.3); }
.contact__card:hover .contact__card-shine { opacity: 1; }

.contact__card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-bounce), background .3s;
  box-shadow: 0 4px 14px rgba(37,99,235,.15);
}
.contact__card:hover .contact__card-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); transform: scale(1.1) rotate(-6deg); }
.contact__card-icon svg { width: 28px; height: 28px; color: var(--primary); transition: color .3s; }
.contact__card:hover .contact__card-icon svg { color: var(--white); }
.contact__card-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.contact__card-value { font-size: 1rem; font-weight: 700; color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background: var(--dark); color: rgba(255,255,255,.6); padding-block: 4rem 2.5rem; overflow: hidden; }
.footer__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,99,235,.08) 0%, transparent 60%);
}
.footer__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }

.footer__brand { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.footer__logo { font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: -.03em; }
.footer__logo span { background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer__tagline { font-size: .85rem; color: rgba(255,255,255,.4); }

.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .25rem .5rem; }
.footer__nav a {
  padding: .4rem .8rem; border-radius: var(--radius-sm);
  font-size: .85rem; color: rgba(255,255,255,.55);
  transition: color .25s, background .25s;
}
.footer__nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 2rem; width: 100%; text-align: center; }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ============================================================
   AOS — Animate On Scroll (custom, no library needed)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(.85); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ============================================================
   ENTRANCE (hero lines)
   ============================================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 5rem; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset-block-start: 72px; inset-inline: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 1.5rem; gap: .3rem;
    transform: translateY(-110%); opacity: 0;
    transition: transform .35s var(--ease-out-expo), opacity .3s;
    pointer-events: none; box-shadow: var(--shadow-xl); align-items: stretch;
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav__link--cta { margin-left: 0; text-align: center; }

  /* About section — stack text first, then icon grid below */
  .about__grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .about__text { order: 1; }
  .about__visual {
    order: 2;
    width: 100%;
    max-width: 100%;
    aspect-ratio: unset;
    position: static;
    overflow: visible;
  }
  /* Hide the decorative spinning rings on mobile */
  .about__ring { display: none; }
  /* Show icon grid as a normal 2x2 grid instead of absolutely positioned */
  .about__icon-grid {
    position: static;
    inset: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
  }
  .about__icon-cell {
    padding: 1.5rem 1rem;
  }
  .about__icon-cell svg { width: 32px; height: 32px; }
  .about__icon-cell span { font-size: .75rem; }

  .services__grid { grid-template-columns: 1fr; }

  .request__card { flex-direction: column; text-align: center; padding: 3rem 2rem; }
  .request__description { margin-inline: auto; }

  .why__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }

  .hero__stats { flex-wrap: wrap; gap: 1.25rem; padding: 1rem 1.5rem; }
  .hero__stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .about__stats { flex-direction: column; }
  .about__stats .stat { border-right: none !important; }
  .about__stats .stat:not(:last-child) { border-bottom: 1px solid var(--border); }
  .process__step { gap: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
