@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --navy-dk: #152B47;
  --navy: #1E3A5F;
  --sky: #2E75B6;
  --sky-lt: #00B4D8;
  --ice: #EBF4FB;
  --ice2: #F0F4F8;
  --white: #FFFFFF;
  --gray: #64748B;
  --gray-dk: #334155;
  --border: #E2E8F0;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y proximity;
    scroll-padding-top: 76px;
  }
  section,
  .page-header,
  .footer {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
}
body { font-family: var(--font-body); color: var(--gray-dk); background: var(--ice2); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: var(--font-body); }
button, a[role="button"] { touch-action: manipulation; }

/* ── NAV ─────────────────────────────── */
.nav {
  background: rgba(6,13,24,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, height 0.35s cubic-bezier(.16,1,.3,1);
}
.nav.nav-scrolled { height: 68px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo svg {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 8px rgba(0,180,216,0.35));
  transition: transform 0.3s var(--ease-p);
}
.nav-logo:hover svg { transform: scale(1.06) rotate(-4deg); }
.nav-logo span {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}
.nav-logo span em { color: var(--sky-lt); font-style: normal; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, #00C5EE 0%, #009EC4 100%);
  color: var(--navy-dk) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: 0 2px 10px rgba(0,180,216,0.32), 0 1px 0 rgba(255,255,255,0.2) inset;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { box-shadow: 0 6px 20px rgba(0,180,216,0.48), 0 1px 0 rgba(255,255,255,0.2) inset; transform: translateY(-1px); }
.nav-mobile { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; margin-right: -10px; background: none; border: none; cursor: pointer; }
.nav-mobile svg { stroke: rgba(255,255,255,0.7); transition: stroke 0.3s ease; }

/* Homepage: transparent nav over the hero, solidifies on scroll */
.home .nav { background: transparent; border-bottom-color: transparent; box-shadow: none; }
.home .nav .nav-logo span { color: var(--navy-dk); }
.home .nav .nav-links a { color: var(--gray-dk); }
.home .nav .nav-links a:hover,
.home .nav .nav-links a.nav-active { color: var(--navy-dk); }
.home .nav .nav-mobile svg { stroke: var(--navy-dk); }
.home .nav.nav-scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(15,23,42,0.05), 0 10px 30px rgba(15,23,42,0.08);
  border-bottom-color: rgba(226,232,240,0.8);
}

/* ── HERO ────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 168px 64px 100px;
  background: #F8FAFC;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -6%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  background:
    radial-gradient(ellipse 50% 45% at 82% 6%, rgba(46,117,182,0.09), transparent 60%),
    radial-gradient(ellipse 45% 40% at 96% 55%, rgba(0,180,216,0.07), transparent 62%),
    radial-gradient(ellipse 40% 35% at 4% 92%, rgba(46,117,182,0.06), transparent 60%);
  animation: heroGlowDrift 16s ease-in-out infinite alternate;
}
@keyframes heroGlowDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(1.2%, -1.6%, 0) scale(1.07); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.hero-circuit-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("assets/images/circuit-bg.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.24;
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 72px;
  align-items: center;
}
.hero-left { grid-column: span 5; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  background: rgba(46,117,182,0.07);
  border: 1px solid rgba(46,117,182,0.16);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-dk);
  letter-spacing: 0.01em;
}
.hero-badge span:last-child { min-width: 0; }
.hero-badge-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-lt);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.16);
  flex-shrink: 0;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--sky-lt);
  animation: pingRing 2.4s cubic-bezier(.16,1,.3,1) infinite;
  will-change: transform, opacity;
}
@keyframes pingRing {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 5.6vw, 80px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -3px;
  color: var(--navy-dk);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(130deg, #1B7AA9 0%, #1DA4CC 45%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-dk);
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 60px; }

.hero-btn-primary,
.hero-btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s cubic-bezier(.16,1,.3,1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  opacity: 0.9;
  pointer-events: none;
  animation: rippleExpand 0.6s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-btn-secondary .btn-ripple { background: rgba(21,43,71,0.18); }
@keyframes rippleExpand {
  to { transform: scale(1); opacity: 0; }
}
.hero-btn-primary,
.hero-btn-secondary {
  outline-offset: 3px;
}
.hero-btn-primary:focus-visible,
.hero-btn-secondary:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
.hero-btn-primary {
  background: linear-gradient(135deg, #00D2FA 0%, #0095BE 100%);
  color: var(--navy-dk);
  transform: translateY(0) translateZ(0);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 -10px 16px rgba(0,0,0,0.08) inset,
    0 6px 0 0 #006E90,
    0 9px 0 0 rgba(0,110,144,0.35),
    0 14px 26px rgba(0,180,216,0.4),
    0 26px 50px rgba(0,148,190,0.3);
}
.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -10px 16px rgba(0,0,0,0.08) inset,
    0 9px 0 0 #006E90,
    0 13px 0 0 rgba(0,110,144,0.3),
    0 20px 34px rgba(0,180,216,0.48),
    0 34px 60px rgba(0,148,190,0.34);
}
.hero-btn-primary:active {
  transform: translateY(3px);
  transition-duration: 0.1s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -6px 10px rgba(0,0,0,0.1) inset,
    0 2px 0 0 #006E90,
    0 3px 0 0 rgba(0,110,144,0.35),
    0 6px 14px rgba(0,180,216,0.35);
}
.hero-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: btnShimmer 3.4s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%, 15% { left: -60%; }
  55%, 100% { left: 130%; }
}
.hero-btn-secondary {
  background: #ffffff;
  color: var(--navy-dk);
  border: 1.5px solid var(--border);
  z-index: 1;
}
.hero-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-dk);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  z-index: -1;
}
.hero-btn-secondary i { font-size: 16px; transition: transform 0.35s cubic-bezier(.16,1,.3,1); }
.hero-btn-secondary:hover { border-color: var(--navy-dk); color: #ffffff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(15,23,42,0.18); }
.hero-btn-secondary:hover::before { transform: translateY(0); }
.hero-btn-secondary:hover i { transform: translateX(4px); }
.hero-btn-secondary:active { transform: translateY(0) scale(0.98); transition-duration: 0.12s; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-stat-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 20px;
  padding: 20px 16px;
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s cubic-bezier(.16,1,.3,1), border-color 0.3s ease;
}
.hero-stat-card:hover { transform: translateY(-4px); box-shadow: 0 4px 10px rgba(15,23,42,0.04), 0 20px 36px rgba(15,23,42,0.09); border-color: rgba(46,117,182,0.18); }
.hero-stat-card i { font-size: 20px; color: var(--sky); margin-bottom: 12px; display: block; }
.hero-stat-num { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--navy-dk); margin-bottom: 4px; letter-spacing: -0.5px; }
.hero-stat-label { font-size: 11.5px; color: var(--gray); line-height: 1.4; text-transform: uppercase; letter-spacing: 0.04em; }

.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,0.14), 0 0 0 1px rgba(226,232,240,0.9) inset;
  margin-left: -10px;
  overflow: hidden;
}
.hero-trust-avatars > *:first-child { margin-left: 0; }
.hero-trust-avatar img {
  width: 100%;
  height: 100%;
  padding: 1px;
  background: #fff;
  border-radius: 50%;
  object-fit: contain;
}
.hero-trust-avatar svg, .testimonial-avatar svg, .team-avatar svg { width: 55%; height: 55%; }
.hero-trust-text { font-size: 13px; color: var(--gray); line-height: 1.4; }
.hero-trust-text strong { display: block; color: var(--navy-dk); font-size: 14.5px; font-weight: 700; }

.hero-right { position: relative; grid-column: span 7; animation: slideInRight 0.9s cubic-bezier(.22,1,.36,1) 0.2s both; }

/* ── Product showcase (dashboard + floating widgets) ── */
.hero-showcase {
  --mx: 0;
  --my: 0;
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 78px 54px;
  perspective: 1600px;
}
.hero-showcase::before {
  content: '';
  position: absolute;
  inset: -16% -20%;
  background:
    radial-gradient(circle at 42% 32%, rgba(0,180,216,0.32), transparent 46%),
    radial-gradient(circle at 68% 55%, rgba(46,117,182,0.24), transparent 50%),
    radial-gradient(circle at 55% 75%, rgba(0,149,190,0.16), transparent 55%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  animation: glowDrift 18s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  0% { transform: translate3d(calc(-3% + var(--mx, 0) * 0.6px), calc(-2% + var(--my, 0) * 0.6px), 0) scale(1); }
  100% { transform: translate3d(calc(3% + var(--mx, 0) * 0.6px), calc(3% + var(--my, 0) * 0.6px), 0) scale(1.08); }
}

.showcase-links {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}
.link-line {
  fill: none;
  stroke: rgba(0,149,190,0.55);
  stroke-width: 1.5;
  stroke-dasharray: 1 3.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: linkFlow 1.8s linear infinite;
}
@keyframes linkFlow {
  to { stroke-dashoffset: -12; }
}

.dash-window {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 2px 5px rgba(15,23,42,0.05),
    0 18px 40px rgba(15,23,42,0.1),
    0 70px 150px rgba(15,23,42,0.22);
  overflow: hidden;
  will-change: transform;
  transform:
    perspective(1600px)
    rotateY(calc(-3deg + var(--mx, 0) * -0.09deg))
    rotateX(calc(1deg + var(--my, 0) * 0.09deg))
    translate3d(calc(var(--mx, 0) * 0.4px), calc(var(--my, 0) * 0.4px), 0);
  transition: transform 0.15s linear;
}
.dash-window::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.05) 14%, rgba(255,255,255,0) 28%);
  pointer-events: none;
}
.dash-window::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 55% 35% at 88% 100%, rgba(0,180,216,0.06), transparent 70%);
  pointer-events: none;
}
.dash-titlebar, .dash-main { position: relative; z-index: 1; }
.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 22px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 9px; height: 9px; border-radius: 50%; background: #E2E8F0; }
.dash-dots span:nth-child(1) { background: #FCA5A5; }
.dash-dots span:nth-child(2) { background: #FCD34D; }
.dash-dots span:nth-child(3) { background: #86EFAC; }
.dash-tabs { display: flex; gap: 6px; margin-left: 6px; }
.dash-tab { font-size: 12.5px; font-weight: 500; color: var(--gray); padding: 5px 10px; border-radius: 8px; }
.dash-tab.active { color: var(--navy-dk); font-weight: 600; background: rgba(46,117,182,0.08); }
.dash-more { margin-left: auto; color: var(--gray); font-size: 16px; }
.dash-main { display: flex; }
.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 56px;
  padding: 20px 0;
  background: var(--navy-dk);
}
.dash-sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
}
.dash-sidebar-icon.active { background: rgba(255,255,255,0.14); color: #fff; }
.dash-body { flex: 1; min-width: 0; padding: 26px 26px 22px; }
.dash-summary { display: flex; gap: 14px; margin-bottom: 18px; }
.dash-stat { flex: 1; min-width: 0; background: #F8FAFC; border-radius: 16px; padding: 14px 16px; }
.dash-brand { font-size: 10.5px; font-weight: 600; color: var(--sky); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 14px; }
.dash-summary-label { font-size: 12px; color: var(--gray); margin-bottom: 8px; letter-spacing: 0.03em; }
.dash-summary-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.dash-summary-value { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--navy-dk); letter-spacing: -0.8px; }
.dash-summary-value span { font-size: 15px; font-weight: 600; color: var(--gray); }
.dash-summary-meta { font-size: 11px; color: var(--gray); margin-top: 6px; }
.dash-trend { display: flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 600; color: #16A34A; background: rgba(22,163,74,0.08); padding: 4px 8px; border-radius: 999px; }
.dash-trend i { font-size: 13px; }
.dash-chart { margin: 0 -4px 20px; }
.dash-chart svg { width: 100%; height: 90px; display: block; }
.dash-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 20px; }
.dash-list-title { font-size: 10.5px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.dash-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gray-dk);
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.dash-list-row:last-child { border-bottom: none; }
.dash-list-status { font-size: 10.5px; font-weight: 600; padding: 2px 8px; border-radius: 999px; flex-shrink: 0; }
.dash-list-status.ok { color: #16A34A; background: rgba(22,163,74,0.1); }
.dash-list-status.pending { color: var(--sky); background: rgba(46,117,182,0.1); }
.dash-list-time { font-size: 11px; color: var(--gray); flex-shrink: 0; }
.dash-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--sky); border-radius: 4px; }
.dash-cta i { font-size: 14px; transition: transform 0.2s ease; }
.dash-cta:hover i { transform: translateX(3px); }
.dash-cta:focus-visible { outline: 2px solid var(--sky); outline-offset: 4px; }
@keyframes dashSpin { to { transform: rotate(360deg); } }

.widget {
  --rot: 0deg;
  --pf: 1;
  position: absolute;
  will-change: transform;
  transform:
    translate3d(calc(var(--mx, 0) * var(--pf) * 1px), calc(var(--my, 0) * var(--pf) * 1px), 0)
    rotate(var(--rot));
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), z-index 0s;
  animation: cardEnter 0.7s cubic-bezier(.22,1,.36,1) backwards;
}
.widget:hover {
  transform:
    translate3d(calc(var(--mx, 0) * var(--pf) * 1px), calc(var(--my, 0) * var(--pf) * 1px), 0)
    translateY(-14px) scale(1.08) rotate(var(--rot));
  z-index: 9;
}
.widget-surface {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 24px;
  padding: 14px 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 0 0 1px rgba(255,255,255,0.4) inset,
    0 2px 4px rgba(15,23,42,0.05),
    0 10px 20px rgba(15,23,42,0.08),
    0 28px 56px rgba(15,23,42,0.14);
  animation: floatY 5s ease-in-out infinite;
  transition: box-shadow 0.35s cubic-bezier(.16,1,.3,1), background 0.35s ease, backdrop-filter 0.35s ease;
  will-change: transform, box-shadow;
}
.widget-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(128deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 22%, rgba(255,255,255,0) 42%);
  pointer-events: none;
}
.widget-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 40% at 15% 100%, rgba(0,180,216,0.08), transparent 70%);
  pointer-events: none;
}
.widget-head, .widget-sub, .widget-meta, .widget-row, .wf-step, .widget-bars, .widget-avatars { position: relative; z-index: 1; }
.widget-bars { display: flex; align-items: flex-end; gap: 4px; height: 30px; margin-top: 10px; }
.widget-bars span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--sky-lt), var(--sky)); border-radius: 3px 3px 1px 1px; opacity: 0.85; }
.widget-avatars { display: flex; align-items: center; margin-top: 10px; }
.widget-avatar, .widget-avatar-more {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--sky-lt), var(--sky));
  border: 2px solid #fff;
  margin-left: -6px;
}
.widget-avatars > *:first-child { margin-left: 0; }
.widget-avatar-more { background: var(--ice); color: var(--sky); }
.widget:hover .widget-surface {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px) saturate(160%);
  -webkit-backdrop-filter: blur(6px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 10px rgba(15,23,42,0.08),
    0 20px 38px rgba(15,23,42,0.14),
    0 44px 92px rgba(15,23,42,0.24);
}
.widget-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.widget-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(46,117,182,0.1); color: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.widget-icon-logo { background: #fff; box-shadow: 0 0 0 1px rgba(15,23,42,0.06); padding: 6px; }
.widget-icon-logo img { width: 100%; height: 100%; object-fit: contain; }
.widget-title { font-size: 13px; font-weight: 600; color: var(--navy-dk); flex: 1; }
.widget-sub { font-size: 12px; color: var(--gray-dk); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.widget-sub i { font-size: 12px; color: var(--sky); }
.widget-meta { font-size: 11px; color: var(--gray); margin-top: 3px; }
.widget-row { display: flex; align-items: baseline; gap: 6px; }
.widget-num { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--navy-dk); letter-spacing: -0.5px; }
.widget-pill { font-size: 10.5px; font-weight: 600; color: var(--sky); background: rgba(46,117,182,0.1); padding: 3px 8px; border-radius: 999px; margin-left: auto; }
.widget-pill.ok { color: #16A34A; background: rgba(22,163,74,0.1); }

.status-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: #16A34A; flex-shrink: 0; }
.status-dot.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #16A34A;
  will-change: transform, opacity;
  animation: statusPulse 2s cubic-bezier(.16,1,.3,1) infinite;
}
@keyframes statusPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(3.4); opacity: 0; }
}

.mini-switch { width: 30px; height: 17px; border-radius: 999px; background: #E2E8F0; position: relative; display: inline-block; flex-shrink: 0; }
.mini-switch.on { background: linear-gradient(135deg, #00C5EE, #0095BE); }
.mini-switch-knob { position: absolute; top: 2px; left: 2px; width: 13px; height: 13px; border-radius: 50%; background: #fff; transform: translateX(0); transition: transform 0.2s ease; box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.mini-switch.on .mini-switch-knob { transform: translateX(13px); }

.wf-step { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); padding: 5px 0; }
.wf-step i { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.wf-step.done { color: var(--gray-dk); }
.wf-step.done i { background: rgba(22,163,74,0.12); color: #16A34A; }
.wf-step.active { color: var(--navy-dk); font-weight: 600; }
.wf-step.active i { background: rgba(46,117,182,0.12); color: var(--sky); animation: dashSpin 1.4s linear infinite; }

/* Top left — Microsoft 365 (closest layer, largest, moves most with parallax) */
.widget-ms365 { --rot: -4deg; --pf: 1.3; top: -8%; left: -5%; width: 212px; z-index: 4; animation-delay: .1s; }
.widget-ms365 .widget-surface { animation-duration: 5.2s; animation-delay: .3s; }

/* Top right — AI Assistant (closest layer) */
.widget-ai { --rot: 4deg; --pf: 1.25; top: -13%; right: -2%; width: 210px; z-index: 4; animation-delay: .25s; }
.widget-ai .widget-surface { animation-duration: 4.6s; animation-delay: .1s; }

/* Left — Automation workflow (mid layer) */
.widget-automation { --rot: -4deg; --pf: 0.9; top: 36%; left: -10%; width: 212px; z-index: 3; animation-delay: .4s; }
.widget-automation .widget-surface {
  animation-duration: 5.6s; animation-delay: .5s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 2px 4px rgba(15,23,42,0.05), 0 12px 26px rgba(15,23,42,0.1), 0 30px 60px rgba(15,23,42,0.14);
}

/* Right — Managed IT (sits forward over the photo) */
.widget-support { --rot: 3deg; --pf: 0.95; top: 68%; right: -8%; width: 200px; z-index: 6; animation-delay: .55s; }
.widget-support .widget-surface {
  animation-duration: 5s; animation-delay: .15s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 2px 4px rgba(15,23,42,0.05), 0 12px 26px rgba(15,23,42,0.1), 0 30px 60px rgba(15,23,42,0.14);
}

/* Bottom left — Cloud Backup (farthest layer, smallest, moves least) */
.widget-backup { --rot: 4deg; --pf: 0.55; bottom: -13%; left: -3%; width: 196px; z-index: 2; animation-delay: .7s; }
.widget-backup .widget-surface {
  animation-duration: 4.9s; animation-delay: .2s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.75) inset, 0 2px 3px rgba(15,23,42,0.04), 0 8px 18px rgba(15,23,42,0.08), 0 20px 40px rgba(15,23,42,0.1);
}

/* Bottom right — Cyber Security (farthest layer, smallest, offset for asymmetry) */
.widget-security { --rot: -4deg; --pf: 0.55; bottom: -10%; right: 8%; width: 196px; z-index: 2; animation-delay: .85s; }
.widget-security .widget-surface {
  animation-duration: 5.4s; animation-delay: .4s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.75) inset, 0 2px 3px rgba(15,23,42,0.04), 0 8px 18px rgba(15,23,42,0.08), 0 20px 40px rgba(15,23,42,0.1);
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(18px) scale(0.94); }
  to { opacity: 1; transform: none; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
.anim-up { animation: fadeUp 0.85s cubic-bezier(.22,1,.36,1) both; }
.hero-left > .anim-up:nth-child(1) { animation-delay: .05s; }
.hero-left > .anim-up:nth-child(2) { animation-delay: .15s; }
.hero-left > .anim-up:nth-child(3) { animation-delay: .25s; }
.hero-left > .anim-up:nth-child(4) { animation-delay: .35s; }
.hero-left > .anim-up:nth-child(5) { animation-delay: .45s; }
.hero-left > .anim-up:nth-child(6) { animation-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  .anim-up, .hero-right, .widget, .widget-surface, .hero-showcase::before, .wf-step.active i, .status-dot.pulse, .status-dot.pulse::after, .hero-badge-dot::after,
  .link-line, .hero::before, .hero-btn-primary::after { animation: none !important; }
  .dash-window, .widget { transition: none !important; }
}

@media (max-width: 1024px) {
  .hero { padding: 140px 32px 80px; }
  .hero-grid { gap: 40px; }
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding: 120px 24px 64px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-left, .hero-right { grid-column: 1 / -1; min-width: 0; }
  .hero-left { max-width: 100%; margin: 0 auto 56px; text-align: center; }
  .hero-badge, .hero-actions, .hero-trust { justify-content: center; }
  .hero-badge { white-space: normal; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats { max-width: 480px; margin: 0 auto; }
  .widget, .showcase-links { display: none; }
  .hero-showcase { max-width: 380px; padding: 0; margin: 0 auto; min-width: 0; }
  .hero-showcase::before { inset: 4% 6%; }
  .dash-window { transform: none; width: 100%; min-width: 0; border-radius: 24px; }
  .dash-main, .dash-body { min-width: 0; }
  .dash-sidebar { display: none; }
  .dash-titlebar { gap: 10px; padding: 12px 14px; }
  .dash-dots { gap: 5px; }
  .dash-dots span { width: 7px; height: 7px; }
  .dash-tabs { gap: 2px; }
  .dash-tab { padding: 5px 7px; font-size: 11.5px; }
  .dash-body { padding: 18px 16px 16px; }
  .dash-brand { margin-bottom: 10px; }
  .dash-summary { gap: 10px; margin-bottom: 12px; }
  .dash-stat { min-width: 0; padding: 11px 12px; border-radius: 13px; }
  .dash-summary-label { font-size: 10.5px; margin-bottom: 5px; }
  .dash-summary-value { font-size: 22px; }
  .dash-trend { font-size: 10.5px; padding: 3px 6px; }
  .dash-chart { margin-bottom: 12px; }
  .dash-chart svg { height: 58px; }
  .dash-lists { grid-template-columns: minmax(0, 1fr); gap: 10px; margin-bottom: 12px; }
  .dash-list { min-width: 0; }
  .dash-list-title { margin-bottom: 6px; }
  .dash-list-row { flex-wrap: wrap; padding: 5px 0; font-size: 11.5px; }
  .dash-list-row:nth-of-type(n+4) { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 112px 18px 54px; }
  .hero-left { margin-bottom: 38px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-showcase { max-width: 340px; }
  .dash-titlebar { padding: 10px 12px; }
  .dash-tab:nth-child(n+3) { display: none; }
  .dash-body { padding: 15px 13px 14px; }
  .dash-brand { font-size: 9.5px; }
  .dash-summary { gap: 8px; }
  .dash-stat { padding: 10px; }
  .dash-chart svg { height: 48px; }
  .dash-lists { gap: 8px; }
  .dash-lists .dash-list:nth-child(2) { display: none; }
}

/* ── BUTTONS ─────────────────────────── */
.btn-sky {
  background: var(--sky-lt);
  color: var(--navy-dk);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-sky:hover { opacity: 0.9; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.15);
  color: #7AAFD4;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  background: none;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  background: none;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--sky); }
.btn-primary {
  background: var(--sky);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }

/* ── SECTIONS ────────────────────────── */
section {
  padding: 64px 24px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sec-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.sec-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.sky-rule {
  width: 36px;
  height: 3px;
  background: var(--sky-lt);
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ── SERVICE CARDS ───────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.svc-card:hover { border-color: var(--sky); }
.svc-icon {
  width: 44px;
  height: 44px;
  background: var(--ice);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--sky);
}
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}
.svc-price {
  font-size: 13px;
  color: var(--sky);
  font-weight: 500;
}

/* ── PACKAGES ────────────────────────── */
.pkg-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.pkg-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  background: var(--ice2);
}
.pkg-card.featured { border: 2px solid var(--sky); background: var(--white); }
.pkg-tier {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}
.pkg-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.pkg-price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
}
.pkg-from { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.pkg-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.pkg-feat {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-dk);
  line-height: 1.5;
}
.pkg-feat i { font-size: 14px; color: var(--sky); margin-top: 3px; flex-shrink: 0; }
.pkg-btn { margin-top: 24px; width: 100%; padding: 12px; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; }

/* ── NICHE SECTION ───────────────────── */
.niche-section { background: var(--ice); border-top: 1px solid #B8D8EE; border-bottom: 1px solid #B8D8EE; }
.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.niche-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}
.niche-card i { font-size: 24px; color: var(--sky); margin-bottom: 10px; display: block; }
.niche-card h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.niche-card p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ── PROCESS ─────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step { padding: 0 16px; text-align: center; position: relative; }
.step-connector {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step:last-child .step-connector { display: none; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky);
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
}
.step h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.step p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ── WHY SECTION (DARK) ──────────────── */
.why-section { background: var(--navy); }
.why-section .sec-title { color: var(--white); }
.why-section .sec-sub { color: #5A8AB0; }
.why-section .sec-label { color: var(--sky-lt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px 20px;
}
.why-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: rgba(0,180,216,0.2);
  margin-bottom: 10px;
  line-height: 1;
}
.why-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.why-card p { font-size: 13px; color: #5A8AB0; line-height: 1.6; }

/* ── TEAM ────────────────────────────── */
.team-section { background: var(--white); border-top: 1px solid var(--border); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ice);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--sky);
}
.team-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-card p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* ── CTA / CONTACT ───────────────────── */
.cta-section { background: var(--navy); }
.cta-inner { max-width: 480px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-field label {
  font-size: 12px;
  color: #5A8AB0;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 16px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #3A6080; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--sky-lt); }
.form-field select { color: #5A8AB0; }
.form-field textarea { resize: none; height: 80px; }

/* Light form (contact page) */
.form-light .form-field label { color: var(--gray); }
.form-light .form-field input,
.form-light .form-field select,
.form-light .form-field textarea {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--gray-dk);
}
.form-light .form-field input::placeholder,
.form-light .form-field textarea::placeholder { color: #94A3B8; }
.form-light .form-field input:focus,
.form-light .form-field select:focus,
.form-light .form-field textarea:focus { border-color: var(--sky); }
.form-light .form-field select { color: var(--gray); }

/* ── RICK — AI chat widget ── */
.rick-widget { position: fixed; right: 20px; bottom: calc(92px + env(safe-area-inset-bottom, 0px)); z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.rick-fab {
  position: relative;
  width: 60px; height: 60px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #00B4D8 0%, #2E75B6 100%);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  transition: transform 0.25s var(--ease-p), box-shadow 0.25s var(--ease-p);
  animation: rickFloat 3.4s ease-in-out infinite;
}
.rick-fab:hover { transform: scale(0.96) rotate(-5deg) translateY(2px); box-shadow: 0 12px 30px rgba(255,105,140,0.4); animation-play-state: paused; }
.rick-widget.rick-open .rick-fab { display: none; }
.rick-fab-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; transition: filter 0.3s ease; }
.rick-fab:hover .rick-fab-img { filter: saturate(1.3) brightness(1.03); }

/* Blush cheeks - Rick gets shy on hover */
.rick-fab::before, .rick-fab::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 13px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,130,0.85) 0%, rgba(255,90,130,0) 72%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.rick-fab::before { left: 7px; }
.rick-fab::after { right: 7px; }
.rick-fab:hover::before, .rick-fab:hover::after { opacity: 1; transform: scale(1); }

@keyframes rickFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-3px, -7px) rotate(-3deg); }
  50% { transform: translate(2px, -3px) rotate(2deg); }
  75% { transform: translate(-2px, -8px) rotate(-2deg); }
}

/* Attention-grabbing dance + speech bubble after 30s idle */
.rick-widget.rick-dance .rick-fab { animation: rickDance 0.6s ease-in-out 4; }
@keyframes rickDance {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  10% { transform: translate(-6px, -6px) rotate(-12deg) scale(1.06); }
  20% { transform: translate(6px, -10px) rotate(12deg) scale(1.06); }
  30% { transform: translate(-6px, -4px) rotate(-9deg) scale(1.03); }
  40% { transform: translate(6px, -9px) rotate(9deg) scale(1.06); }
  50% { transform: translate(-5px, -12px) rotate(-7deg) scale(1.08); }
  60% { transform: translate(5px, -5px) rotate(7deg) scale(1.03); }
  70% { transform: translate(-5px, -9px) rotate(-5deg) scale(1.05); }
  80% { transform: translate(4px, -3px) rotate(5deg) scale(1.02); }
  90% { transform: translate(-3px, -6px) rotate(-3deg) scale(1.01); }
}

.rick-bubble {
  position: absolute;
  right: 70px;
  bottom: 10px;
  width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 13px 15px 14px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  white-space: normal;
  box-shadow: 0 14px 34px rgba(15,23,42,0.2);
  opacity: 0;
  transform: translateX(10px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.rick-bubble-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0,180,216,0.1);
  color: var(--sky);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.rick-bubble strong {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 1.15;
  color: var(--navy);
  text-wrap: balance;
}
.rick-bubble-copy {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--gray);
  text-wrap: pretty;
}
.rick-bubble::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 23px;
  width: 12px; height: 12px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(-45deg);
}
.rick-widget.rick-bubble-show .rick-bubble { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.rick-widget.rick-open .rick-bubble { display: none; }

@media (max-width: 480px) {
  .rick-bubble { right: 66px; bottom: 8px; width: min(250px, calc(100vw - 92px)); padding: 12px 13px; }
  .rick-bubble strong { font-size: 15.5px; }
  .rick-bubble-copy { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .rick-fab { animation: none; }
  .rick-widget.rick-dance .rick-fab { animation: none; }
}

.rick-panel {
  display: none;
  flex-direction: column;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.rick-widget.rick-open .rick-panel { display: flex; }

.rick-head { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: linear-gradient(135deg, #1E3A5F 0%, #1E4A7A 100%); color: #fff; flex-shrink: 0; }
.rick-head-avatar { position: relative; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; overflow: hidden; }
.rick-head-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rick-head-avatar::before, .rick-head-avatar::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 8px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,130,0.85) 0%, rgba(255,90,130,0) 72%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.rick-head-avatar::before { left: 3px; }
.rick-head-avatar::after { right: 3px; }
.rick-head-avatar:hover::before, .rick-head-avatar:hover::after { opacity: 1; transform: scale(1); }
.rick-head-text { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.rick-head-text strong { font-family: var(--font-head); font-size: 14.5px; }
.rick-head-text span { font-size: 11.5px; color: rgba(255,255,255,0.7); }
.rick-close { background: none; border: none; color: #fff; opacity: 0.8; cursor: pointer; font-size: 18px; padding: 4px; flex-shrink: 0; }
.rick-close:hover { opacity: 1; }

.rick-messages { flex: 1; overflow-y: auto; padding: 14px 14px 6px; display: flex; flex-direction: column; gap: 12px; background: var(--ice2); }
.rick-msg { display: flex; gap: 8px; max-width: 88%; }
.rick-msg-user { align-self: flex-end; flex-direction: row-reverse; }
.rick-msg-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #00B4D8 0%, #2E75B6 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; overflow: hidden; }
.rick-msg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rick-msg-bubble { padding: 10px 13px; border-radius: 14px; font-size: 13.5px; line-height: 1.55; overflow-wrap: anywhere; }
.rick-msg-bubble p { margin: 0 0 8px; }
.rick-msg-bubble p:last-child,
.rick-msg-bubble ul:last-child,
.rick-msg-bubble ol:last-child { margin-bottom: 0; }
.rick-msg-bubble ul,
.rick-msg-bubble ol { margin: 8px 0 8px 18px; padding: 0; }
.rick-msg-bubble li { margin: 3px 0; padding-left: 2px; }
.rick-msg-assistant .rick-msg-bubble { background: var(--white); border: 1px solid var(--border); color: var(--gray-dk); border-top-left-radius: 4px; }
.rick-msg-user .rick-msg-bubble { background: linear-gradient(135deg, #00B4D8 0%, #2E75B6 100%); color: #fff; border-top-right-radius: 4px; }

.rick-typing { display: flex; align-items: center; gap: 4px; }
.rick-typing span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gray); animation: rickTyping 1s infinite ease-in-out; }
.rick-typing span:nth-child(2) { animation-delay: 0.15s; }
.rick-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes rickTyping { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

.rick-quick { display: flex; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--border); background: var(--white); flex-wrap: wrap; flex-shrink: 0; }
.rick-quick-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--navy); background: var(--ice); border: 1px solid rgba(46,117,182,0.18); padding: 7px 11px; border-radius: 999px; text-decoration: none; transition: background 0.2s; }
button.rick-quick-btn { font-family: inherit; cursor: pointer; }
.rick-quick-btn:hover { background: var(--ice2); }
.rick-quick-btn i { font-size: 13px; }

.rick-input-row { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border); background: var(--white); flex-shrink: 0; }
.rick-input { flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: 999px; padding: 9px 14px; font-size: 16px; font-family: inherit; outline: none; }
.rick-input:focus { border-color: var(--sky-lt); }
.rick-send { width: 38px; height: 38px; border-radius: 50%; border: none; background: linear-gradient(135deg, #00B4D8 0%, #2E75B6 100%); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.rick-send:hover { opacity: 0.92; }

@media (max-width: 480px) {
  .rick-widget { right: 12px; bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  .rick-panel { width: calc(100vw - 24px); max-height: calc(100vh - 140px - env(safe-area-inset-bottom, 0px)); }
  .scroll-top-btn {
    right: 14px;
    bottom: calc(150px + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
  }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 130;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(15,23,42,0.96);
  color: #F8FAFC;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  flex-wrap: wrap;
}
.cookie-banner a { color: #BFE8FF; text-decoration: underline; }
.cookie-banner > div:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-outline { margin: 0; }

.admin-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.admin-card h2 { font-size: 20px; color: var(--navy); margin-bottom: 18px; }
.admin-card form .form-field { margin-bottom: 18px; }
.admin-card .btn-sky,
.admin-card .btn-primary,
.admin-card .btn-outline { width: 100%; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 35px rgba(15,23,42,0.07);
  transition: box-shadow 0.3s var(--ease-p), transform 0.3s var(--ease-p);
}
.gallery-card:hover {
  box-shadow: 0 6px 18px rgba(46,117,182,0.12), 0 24px 48px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.gallery-visual {
  min-height: 210px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-p), background-position 1.2s ease;
}
.gallery-card:hover .gallery-visual { transform: scale(1.03); background-position: 60% 40%; }
.gallery-visual--brand {
  background-image:
    linear-gradient(180deg, rgba(21,43,71,0.04), rgba(21,43,71,0.18)),
    url("assets/images/local service provider.jpg");
}
.gallery-visual--workflow {
  background-image:
    linear-gradient(180deg, rgba(21,43,71,0.04), rgba(21,43,71,0.16)),
    url("assets/images/workflow.jpg");
}
.gallery-visual--support {
  background-image:
    linear-gradient(135deg, rgba(11, 31, 58, 0.08), rgba(78, 169, 255, 0.12)),
    url("assets/images/ivan-s-7621352.jpg");
}
.gallery-caption {
  padding: 18px;
  font-size: 14px;
  color: var(--gray-dk);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  padding: 18px;
  text-align: left;
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-question span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), background 0.3s ease, color 0.3s ease;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(.22,1,.36,1);
  color: var(--gray-dk);
  line-height: 1.75;
  font-size: 14px;
}
.faq-answer > div { overflow: hidden; padding: 0 18px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > div { padding: 0 18px 18px; }
.faq-item.open .faq-question span { transform: rotate(45deg); background: var(--sky); color: #fff; }
.faq-item.open .faq-question { color: var(--sky); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-p), transform 0.3s var(--ease-p);
  padding: 24px;
}
.blog-meta {
  font-size: 12px;
  color: var(--sky);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 18px;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 12px;
}
.blog-card p { font-size: 14px; color: var(--gray-dk); line-height: 1.75; }

/* ── BLOG INDEX CARDS (linked, with banner) ── */
.blog-grid--index { align-items: start; }
.blog-grid--index .blog-card { padding: 0; }
.blog-grid--index .blog-card:hover {
  box-shadow: 0 6px 20px rgba(46,117,182,0.12), 0 24px 56px rgba(0,0,0,0.09);
  transform: translateY(-6px);
}
.blog-card-link { display: block; color: inherit; text-decoration: none; }
.blog-visual {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--sky);
  transition: transform 0.4s var(--ease-p);
}
.blog-card:hover .blog-visual { transform: scale(1.04); }
.blog-visual--m365 { background: linear-gradient(135deg, #D6E9F7 0%, #EEF5FA 100%); }
.blog-visual--pricing { background: linear-gradient(135deg, #E4F7F8 0%, #DDEBF2 100%); }
.blog-visual--website { background: linear-gradient(135deg, #F0F5FB 0%, #DAE5F1 100%); }
.blog-card-body { padding: 22px 24px 24px; }
.blog-grid--index .blog-card h2 {
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.blog-grid--index .blog-card p { margin-bottom: 16px; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
}
.blog-read-more i { font-size: 14px; transition: transform 0.25s var(--ease-p); }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

/* ── FOOTER ──────────────────────────── */
.footer {
  background: #0D1117;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo span { font-size: 14px; font-weight: 600; color: var(--white); }
.footer-logo span em { color: var(--sky-lt); font-style: normal; }
.footer-copy { font-size: 12px; color: #3A5060; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; color: #3A5060; transition: color 0.2s; }
.footer-links a:hover { color: var(--sky-lt); }

/* ── PAGE HEADER (inner pages) ───────── */
.page-header {
  background: var(--navy);
  padding: 48px 24px;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  max-width: 1100px;
  margin: 0 auto;
}
.page-header p {
  font-size: 16px;
  color: #7AAFD4;
  max-width: 1100px;
  margin: 8px auto 0;
}

/* ── PROSE (privacy, about) ──────────── */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 {
  position: relative;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-bottom: 10px;
}
.prose h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00B4D8 0%, #2E75B6 100%);
}
.prose p { font-size: 15px; color: var(--gray-dk); line-height: 1.75; margin-bottom: 12px; }
.prose ul { margin: 8px 0 16px 20px; }
.prose li { font-size: 15px; color: var(--gray-dk); line-height: 1.75; margin-bottom: 4px; }

/* ── BLOG POST ───────────────────────── */
.post-breadcrumb {
  font-size: 12.5px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.post-breadcrumb a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--sky); }
.post-breadcrumb span { color: var(--gray); opacity: 0.5; }
.post-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--ice);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.post-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
}
.post-meta-row span:not(:last-child)::after { content: '·'; margin-left: 8px; color: var(--border); }
.post-banner {
  position: relative;
  overflow: hidden;
  height: 260px;
  border-radius: 20px;
  border: 1px solid rgba(46,117,182,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--sky);
  margin: 32px 0 8px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 12px 32px rgba(46,117,182,0.08);
}
.post-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(46,117,182,0.16) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 30%, transparent 75%);
}
.post-banner i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 8px rgba(46,117,182,0.14), 0 16px 40px rgba(46,117,182,0.16), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.post-banner--m365 { background: linear-gradient(135deg, #D6E9F7 0%, #EEF5FA 100%); }
.post-banner--pricing { background: linear-gradient(135deg, #E4F7F8 0%, #DDEBF2 100%); }
.post-banner--website { background: linear-gradient(135deg, #F0F5FB 0%, #DAE5F1 100%); }
.post-header { text-align: center; }
.post-header .post-breadcrumb { justify-content: center; }
.post-header h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 650;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.8px;
  max-width: 760px;
  margin: 0 auto;
}
.post-header .post-meta-row { justify-content: center; }
.post-header > p { max-width: 640px; margin-left: auto; margin-right: auto; font-size: 16px; }
.post-faq { margin-top: 8px; }
.post-faq .faq-grid { grid-template-columns: 1fr; }
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 22px 24px;
  background: var(--ice2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.author-box .team-avatar { width: 52px; height: 52px; margin: 0; flex-shrink: 0; }
.author-box-text strong { display: block; font-size: 15px; color: var(--navy-dk); }
.author-box-text span { font-size: 13px; color: var(--gray); }
.post-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  margin-top: 36px;
}
.post-nav-back i { transition: transform 0.25s var(--ease-p); }
.post-nav-back:hover i { transform: translateX(-4px); }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .step-connector { display: none !important; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-mobile { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background: var(--navy-dk);
    padding: 8px 20px 16px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 16px 32px rgba(0,0,0,0.28);
  }
  .nav-links.open a {
    display: block;
    padding: 13px 4px;
    font-size: 15.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open .nav-cta {
    margin-top: 10px;
    padding: 13px 22px;
    text-align: center;
    border-bottom: none;
  }
  .home .nav-links.open { background: #ffffff; border-top-color: var(--border); box-shadow: 0 16px 32px rgba(15,23,42,0.1); }
  .home .nav-links.open a { color: var(--navy-dk); border-bottom-color: var(--border); }
  .footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .sec-title { font-size: 24px; }
  .steps { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── SCROLL REVEAL ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* staggered delays for grid children */
.svc-grid .svc-card:nth-child(2),
.pkg-grid .pkg-card:nth-child(2),
.niche-grid .niche-card:nth-child(2),
.why-grid .why-card:nth-child(2),
.team-grid .team-card:nth-child(2) { transition-delay: 0.1s; }

.svc-grid .svc-card:nth-child(3),
.pkg-grid .pkg-card:nth-child(3),
.niche-grid .niche-card:nth-child(3),
.why-grid .why-card:nth-child(3) { transition-delay: 0.2s; }

.svc-grid .svc-card:nth-child(4),
.niche-grid .niche-card:nth-child(4),
.why-grid .why-card:nth-child(4) { transition-delay: 0.3s; }

.svc-grid .svc-card:nth-child(5),
.niche-grid .niche-card:nth-child(5) { transition-delay: 0.4s; }

.svc-grid .svc-card:nth-child(6) { transition-delay: 0.5s; }

.steps .step:nth-child(2) { transition-delay: 0.1s; }
.steps .step:nth-child(3) { transition-delay: 0.2s; }
.steps .step:nth-child(4) { transition-delay: 0.3s; }

/* ── SCROLL PROGRESS BAR ─────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #00B4D8, #2E75B6);
  z-index: 1000;
  pointer-events: none;
}

/* ── TILT CARDS (cursor-reactive glow + 3D tilt) ── */
.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: calc(176px + env(safe-area-inset-bottom, 0px));
  z-index: 190;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(46,117,182,0.2);
  border-radius: 50%;
  background: linear-gradient(135deg, #00B4D8 0%, #2E75B6 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(21,43,71,0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.scroll-top-btn--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top-btn:hover {
  box-shadow: 0 18px 38px rgba(21,43,71,0.28);
  transform: translateY(-2px) scale(1);
}
.scroll-top-btn:focus-visible {
  outline: 3px solid rgba(0,180,216,0.28);
  outline-offset: 3px;
}
.scroll-top-btn i { font-size: 20px; }

.tilt-card { position: relative; }
.tilt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(0,180,216,0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.tilt-card:hover::before,
.tilt-card:focus-within::before { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .tilt-card { transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.35s ease, border-color 0.35s ease; }
}

/* Touch tap feedback (devices without hover get a press response instead) */
@media (hover: none) {
  .svc-card, .pkg-card, .niche-card, .why-card, .team-card, .gallery-card, .blog-card, .hero-stat-card {
    transition: transform 0.15s ease;
  }
  .svc-card:active, .pkg-card:active, .niche-card:active, .why-card:active,
  .team-card:active, .gallery-card:active, .blog-card:active, .hero-stat-card:active {
    transform: scale(0.97);
  }
  .hero-btn-primary:active, .hero-btn-secondary:active, .nav-cta:active, .pkg-btn:active { transform: scale(0.96); }

  /* Bigger tap targets for small interactive controls - fine for a mouse, too small for a thumb */
  .testimonials-btn { width: 44px; height: 44px; }
  .svc-link { width: 40px; height: 40px; }
  .faq-question span { width: 30px; height: 30px; }
  .footer-links a { display: inline-block; padding: 6px 2px; }
}

/* ── BUTTON ENHANCEMENTS ─────────────── */
.btn-sky {
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-sky:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,180,216,0.35);
}
.btn-sky:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }

.btn-primary {
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46,117,182,0.35);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-outline {
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--sky); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }

/* ── NAV ACTIVE LINK ─────────────────── */
.nav-links a.nav-active {
  color: var(--white);
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sky-lt);
  border-radius: 1px;
}

/* ── FORM VALIDATION FEEDBACK ────────── */
.field-error input,
.field-error select,
.field-error textarea { border-color: #F87171 !important; }
.field-ok input,
.field-ok select,
.field-ok textarea { border-color: #34D399 !important; }
.field-msg {
  display: block;
  font-size: 11px;
  color: #F87171;
  min-height: 15px;
  margin-top: 3px;
}
.field-ok .field-msg { color: #34D399; }
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.form-status--success {
  background: rgba(52,211,153,0.12);
  color: #34D399;
  border: 1px solid rgba(52,211,153,0.3);
}
.form-status--error {
  background: rgba(248,113,113,0.12);
  color: #F87171;
  border: 1px solid rgba(248,113,113,0.3);
}
.btn-spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
  vertical-align: -2px;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
button[disabled] { opacity: 0.7 !important; cursor: not-allowed !important; }

/* ── TESTIMONIALS CAROUSEL ───────────── */
.testimonials-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-track { position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: t-fadein 0.4s ease; }
@keyframes t-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial-card {
  background: var(--ice2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 680px;
  margin: 0 auto;
}
.testimonial-stars { color: #F59E0B; font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-quote {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ice);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--sky);
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonial-title { font-size: 12px; color: var(--gray); margin-top: 2px; }
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.testimonials-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--sky);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  line-height: 1;
}
.testimonials-btn:hover { border-color: var(--sky); background: var(--ice); transform: translateY(-1px); }
.testimonials-btn:active { transform: translateY(0); }
.testimonials-dots { display: flex; align-items: center; }
.testimonial-dot {
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.testimonial-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transform: translate(-50%, -50%);
  transition: background 0.2s, transform 0.2s;
}
.testimonial-dot.active::before { background: var(--sky); transform: translate(-50%, -50%) scale(1.3); }

@media (max-width: 600px) {
  .testimonial-card { padding: 24px 20px; }
  .testimonial-quote { font-size: 15px; }
}

/* ══════════════════════════════════════
   PREMIUM 3D OVERHAUL
   ══════════════════════════════════════ */

/* Global polish */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ── SECTION BACKGROUNDS – subtle depth  */
section:not(.pkg-section):not(.niche-section):not(.why-section):not(.cta-section):not(.team-section):not(.testimonials-section) {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* ── SKY RULE – gradient glow ────────── */
.sky-rule {
  background: linear-gradient(90deg, #00B4D8 0%, #2E75B6 100%);
  box-shadow: 0 0 14px rgba(0,180,216,0.45);
}

/* ── SERVICE CARDS – elevated 3D ─────── */
.svc-card {
  background: linear-gradient(160deg, #ffffff 0%, #f5f9fc 100%);
  border-color: rgba(226,232,240,0.7);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 8px rgba(0,0,0,0.05),
    0 8px 24px rgba(0,0,0,0.04);
  transition: border-color 0.25s, box-shadow 0.3s, transform 0.3s;
}
.svc-card:hover {
  border-color: var(--sky-lt);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(0,180,216,0.15),
    0 6px 20px rgba(0,180,216,0.12),
    0 20px 56px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.svc-icon {
  background: linear-gradient(135deg, #EBF4FB 0%, #D0E8F5 100%);
  box-shadow: 0 2px 8px rgba(46,117,182,0.12), 0 1px 0 rgba(255,255,255,0.8) inset;
}
.svc-price {
  font-weight: 600;
  background: linear-gradient(90deg, #00B4D8 0%, #2E75B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PACKAGES – premium cards ────────── */
.pkg-section {
  background: linear-gradient(180deg, #f5f8fb 0%, #ffffff 60%, #f8fafc 100%);
  border-top-color: rgba(226,232,240,0.8);
}
.pkg-card {
  background: linear-gradient(150deg, #f8fafc 0%, #f0f4f8 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.04), 0 1px 0 rgba(255,255,255,0.7) inset;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pkg-card:not(.featured):hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1), 0 20px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.pkg-card.featured {
  background: #ffffff;
  border: none;
  box-shadow:
    0 0 0 2px var(--sky),
    0 8px 32px rgba(46,117,182,0.2),
    0 24px 64px rgba(0,0,0,0.1),
    0 1px 0 rgba(255,255,255,0.9) inset;
}
.pkg-card.featured:hover {
  box-shadow:
    0 0 0 2px var(--sky-lt),
    0 12px 40px rgba(0,180,216,0.3),
    0 32px 72px rgba(0,0,0,0.12),
    0 1px 0 rgba(255,255,255,0.9) inset;
  transform: translateY(-6px);
}
.pkg-price {
  background: linear-gradient(135deg, #1E3A5F 0%, #2E75B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NICHE CARDS ─────────────────────── */
.niche-section {
  background: linear-gradient(170deg, #EBF4FB 0%, #dff0f9 100%);
}
.niche-card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 0 rgba(255,255,255,0.9) inset;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.niche-card:hover {
  border-color: var(--sky);
  box-shadow: 0 6px 20px rgba(46,117,182,0.14), 0 1px 0 rgba(255,255,255,0.9) inset;
  transform: translateY(-4px);
}

/* ── PROCESS STEPS ───────────────────── */
.step-num {
  background: linear-gradient(135deg, #ffffff 0%, #EBF4FB 100%);
  box-shadow:
    0 0 0 5px rgba(0,180,216,0.1),
    0 4px 14px rgba(46,117,182,0.18),
    0 1px 0 rgba(255,255,255,0.9) inset;
}

/* ── WHY SECTION – glass morphism ─────── */
.why-section {
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(0,180,216,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 5% 80%,  rgba(46,117,182,0.1) 0%, transparent 50%),
    linear-gradient(148deg, #080F1A 0%, #1E3A5F 55%, #0F1F35 100%);
  position: relative;
}
.why-section .sec-sub { color: rgba(255,255,255,0.58); }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 8px 32px rgba(0,0,0,0.25),
    0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.28s, box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,180,216,0.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 0 0 1px rgba(0,180,216,0.2),
    0 12px 40px rgba(0,0,0,0.35),
    0 0 32px rgba(0,180,216,0.06);
  transform: translateY(-4px);
}
.why-num { color: rgba(0,180,216,0.38); }
.why-card h4 { color: #ffffff; }
.why-card p { color: rgba(255,255,255,0.62); }

/* ── TEAM ────────────────────────────── */
.team-section { background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%); }
.team-card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.04), 0 1px 0 rgba(255,255,255,0.9) inset;
  transition: box-shadow 0.28s, transform 0.28s;
}
.team-card:hover {
  box-shadow: 0 6px 20px rgba(46,117,182,0.13), 0 20px 52px rgba(0,0,0,0.09);
  transform: translateY(-5px);
}
.team-avatar {
  background: linear-gradient(135deg, #EBF4FB 0%, #D0E8F5 100%);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.12), 0 4px 12px rgba(46,117,182,0.15);
}

/* ── CTA / CONTACT – gradient + white txt */
.cta-section {
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(0,180,216,0.09) 0%, transparent 60%),
    linear-gradient(148deg, #08141F 0%, #1E3A5F 50%, #0F1F35 100%);
  position: relative;
}
.cta-section .sec-sub,
.cta-section p.sec-sub { color: rgba(255,255,255,0.6) !important; }
.cta-section .form-field label { color: rgba(255,255,255,0.65); }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(255,255,255,0.09);
  border-color: var(--sky-lt);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.15), 0 1px 0 rgba(255,255,255,0.04) inset;
}

/* Light form overrides */
.form-light .form-field label { color: var(--gray-dk); }
.form-light .form-field input,
.form-light .form-field select,
.form-light .form-field textarea {
  background: #ffffff;
  border-color: var(--border);
  color: var(--gray-dk);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05) inset;
}
.form-light .form-field input:focus,
.form-light .form-field select:focus,
.form-light .form-field textarea:focus {
  border-color: var(--sky);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(46,117,182,0.1), 0 1px 3px rgba(0,0,0,0.05) inset;
}

/* ── PAGE HEADER ─────────────────────── */
.page-header {
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(0,180,216,0.1) 0%, transparent 60%),
    linear-gradient(148deg, #0A1929 0%, #1E3A5F 55%, #152B47 100%);
  border-bottom: 1px solid rgba(0,180,216,0.12);
}
.page-header p { color: rgba(255,255,255,0.72); }

/* ── FOOTER ──────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0A1117 0%, #060B0F 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── TESTIMONIAL CARD – elevated ─────── */
.testimonials-section { background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%); }
.testimonial-card {
  background: linear-gradient(150deg, #f8fafc 0%, #eef4f9 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 16px rgba(0,0,0,0.06),
    0 14px 44px rgba(0,0,0,0.04);
}

/* ── BUTTONS – gradient fills ─────────── */
.btn-sky {
  background: linear-gradient(135deg, #00C8F0 0%, #0099C2 100%);
  box-shadow: 0 2px 10px rgba(0,180,216,0.32), 0 1px 0 rgba(255,255,255,0.22) inset;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-sky:hover {
  opacity: 1;
  background: linear-gradient(135deg, #00D6FF 0%, #00AADA 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,180,216,0.45), 0 1px 0 rgba(255,255,255,0.22) inset;
}
.btn-sky:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(0,180,216,0.25); }

.btn-primary {
  background: linear-gradient(135deg, #3A8DD8 0%, #2260A8 100%);
  box-shadow: 0 2px 10px rgba(46,117,182,0.32), 0 1px 0 rgba(255,255,255,0.16) inset;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover {
  opacity: 1;
  background: linear-gradient(135deg, #4A9AE4 0%, #2E75B6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(46,117,182,0.45), 0 1px 0 rgba(255,255,255,0.16) inset;
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(46,117,182,0.25); }

.btn-ghost {
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.btn-outline {
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
  box-shadow: 0 4px 12px rgba(46,117,182,0.15);
}

/* ══════════════════════════════════════════
   TRIVION 2026 — MICROSOFT-GRADE PREMIUM
   ══════════════════════════════════════════ */

:root {
  --navy-deep: #060D18;
  --ease-p: cubic-bezier(.22,1,.36,1);
  --sp: 100px;
}

/* ── Global ──────────────────────────── */
body { background: #ffffff; }
section { padding: var(--sp) 48px; }
.section-inner { max-width: 1200px; }

/* ── Section typography scale-up ─────── */
.sec-label { font-size: 11px; letter-spacing: 0.15em; margin-bottom: 12px; }
.sec-title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 52px;
  max-width: 580px;
}
.sky-rule { margin-bottom: 52px; width: 40px; height: 3px; }

/* nav/hero/trust-bar consolidated in the HERO section above */

/* ── SECTIONS – clean alternation ──────── */
section:not(.pkg-section):not(.niche-section):not(.why-section):not(.cta-section):not(.team-section):not(.testimonials-section) {
  background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
}
section:nth-of-type(odd):not(.pkg-section):not(.niche-section):not(.why-section):not(.cta-section):not(.team-section):not(.testimonials-section) {
  background: #ffffff;
}

/* ── SERVICE CARDS ────────────────────── */
.svc-grid { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 20px; }
.svc-card {
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #ffffff 0%, #f7fafd 100%);
  border-color: rgba(226,232,240,0.7);
}
/* Shimmer accent on top edge */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0,180,216,0) 100%);
  transition: background 0.4s var(--ease-p);
}
.svc-card:hover::after {
  background: linear-gradient(90deg, transparent 0%, #00B4D8 50%, transparent 100%);
}
.svc-card:hover {
  border-color: rgba(0,180,216,0.2);
  box-shadow:
    0 0 0 1px rgba(0,180,216,0.08),
    0 8px 28px rgba(0,180,216,0.1),
    0 24px 64px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  font-size: 22px;
  background: linear-gradient(135deg, #EBF4FB 0%, #D0E8F5 100%);
  box-shadow: 0 2px 8px rgba(46,117,182,0.12), 0 1px 0 rgba(255,255,255,0.8) inset;
  margin-bottom: 22px;
}
.svc-card h3 { font-size: 16.5px; margin-bottom: 10px; letter-spacing: -0.2px; }
.svc-card p  { font-size: 14px; line-height: 1.72; margin-bottom: 14px; }
.svc-icon-logo { background: #fff; box-shadow: 0 2px 8px rgba(46,117,182,0.12), 0 1px 0 rgba(255,255,255,0.8) inset, 0 0 0 1px rgba(15,23,42,0.05); padding: 11px; }
.svc-icon-logo img { width: 100%; height: 100%; object-fit: contain; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.svc-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--gray-dk);
  background: var(--ice2);
  border: 1px solid rgba(226,232,240,0.9);
  padding: 4px 11px;
  border-radius: 999px;
}
.svc-featured .svc-tag { background: rgba(0,180,216,0.08); border-color: rgba(0,180,216,0.18); color: var(--navy); }
.svc-price {
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, #00B4D8 0%, #2E75B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SERVICE CARDS — index, footer link, featured state ── */
.svc-index {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(46,117,182,0.16);
}
.svc-badge {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #00B4D8 0%, #2E75B6 100%);
  box-shadow: 0 4px 12px rgba(46,117,182,0.28);
}
.svc-featured .svc-index { top: 58px; }
.svc-card.svc-featured {
  border-color: rgba(0,180,216,0.3);
  box-shadow:
    0 0 0 1px rgba(0,180,216,0.1),
    0 8px 26px rgba(0,180,216,0.12),
    0 24px 64px rgba(0,0,0,0.08);
}
.svc-card.svc-featured:hover {
  box-shadow:
    0 0 0 1px rgba(0,180,216,0.22),
    0 10px 30px rgba(0,180,216,0.18),
    0 28px 70px rgba(0,0,0,0.1);
}
.svc-icon { transition: transform 0.35s var(--ease-p), box-shadow 0.35s var(--ease-p); }
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-4deg); }

/* Colourful per-service icon accents */
.svc-icon-indigo  { background: linear-gradient(135deg, #EEF2FF 0%, #D9E2FC 100%); color: #4F46E5; }
.svc-icon-violet  { background: linear-gradient(135deg, #F5EEFF 0%, #E6D6FF 100%); color: #7C3AED; }
.svc-icon-cyan    { background: linear-gradient(135deg, #E6F9FC 0%, #C7EEF5 100%); color: #0090B0; }
.svc-icon-amber   { background: linear-gradient(135deg, #FFF7E6 0%, #FFE9B3 100%); color: #B45309; }
.svc-icon-emerald { background: linear-gradient(135deg, #E6FBF3 0%, #C2F0DD 100%); color: #059669; }
.svc-card:hover .svc-icon-indigo  { box-shadow: 0 10px 24px rgba(79,70,229,0.32), 0 1px 0 rgba(255,255,255,0.8) inset; }
.svc-card:hover .svc-icon-violet  { box-shadow: 0 10px 24px rgba(124,58,237,0.32), 0 1px 0 rgba(255,255,255,0.8) inset; }
.svc-card:hover .svc-icon-cyan    { box-shadow: 0 10px 24px rgba(0,144,176,0.32), 0 1px 0 rgba(255,255,255,0.8) inset; }
.svc-card:hover .svc-icon-amber   { box-shadow: 0 10px 24px rgba(180,83,9,0.32), 0 1px 0 rgba(255,255,255,0.8) inset; }
.svc-card:hover .svc-icon-emerald { box-shadow: 0 10px 24px rgba(5,150,105,0.32), 0 1px 0 rgba(255,255,255,0.8) inset; }
.svc-card:hover .svc-icon-logo    { box-shadow: 0 10px 24px rgba(0,120,215,0.28), 0 1px 0 rgba(255,255,255,0.8) inset; }
.svc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(226,232,240,0.7);
}
.svc-foot .svc-price { margin-bottom: 0; }
.svc-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--sky);
  background: var(--ice);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.svc-card:hover .svc-link {
  background: linear-gradient(135deg, #00B4D8 0%, #2E75B6 100%);
  color: #fff;
  transform: translateX(3px);
}

/* Decorative background: dot grid + soft glow behind the featured card */
.svc-section { position: relative; overflow: hidden; }
.svc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(46,117,182,0.12) 1px, transparent 1px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(ellipse 45% 60% at 8% 92%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 45% 60% at 8% 92%, #000 0%, transparent 70%);
}
.svc-section::after {
  content: '';
  position: absolute;
  inset: -10% -10% auto auto;
  width: 46%;
  height: 60%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, transparent 70%);
}
.svc-section .section-inner { position: relative; z-index: 1; }

/* ── SERVICES TRUST STRIP ─────────────── */
.svc-more { text-align: center; margin-top: 44px; }
.svc-more .btn-sky { display: inline-flex; align-items: center; gap: 8px; }
.svc-more .btn-sky i { transition: transform 0.25s var(--ease-p); }
.svc-more .btn-sky:hover i { transform: translateX(4px); }

/* ── SERVICES HEADER — badge pills ────── */
.svc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.svc-header-text { flex: 1 1 380px; }
.svc-header-text .sec-sub { margin-bottom: 0; }
.svc-header-text .sky-rule { margin-top: 20px; margin-bottom: 0; }
.svc-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(155deg, #ffffff 0%, #f7fafd 100%);
  border: 1px solid rgba(226,232,240,0.7);
  border-radius: 999px;
  padding: 10px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.04);
}
.svc-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-right: 1px solid rgba(226,232,240,0.8);
}
.svc-badge-item:last-child { border-right: none; }
.svc-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--sky);
  background: linear-gradient(135deg, #EBF4FB 0%, #D0E8F5 100%);
  box-shadow: 0 2px 8px rgba(46,117,182,0.12), 0 1px 0 rgba(255,255,255,0.8) inset;
}
.svc-badge-text { font-size: 11.5px; color: var(--gray); line-height: 1.4; white-space: nowrap; }
.svc-badge-text strong { display: block; font-size: 13px; color: var(--navy-dk); font-weight: 600; }
@media (max-width: 900px) {
  .svc-badges { border-radius: 20px; padding: 16px; }
  .svc-badge-item { border-right: none; padding: 6px 14px; flex: 1 1 45%; }
  .svc-badge-text { white-space: normal; }
}

/* ── PACKAGES ─────────────────────────── */
.pkg-section {
  background: linear-gradient(180deg, #f4f7fb 0%, #edf2f8 50%, #f4f7fb 100%);
  border-top: 1px solid rgba(226,232,240,0.8);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.pkg-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pkg-card {
  border-radius: 20px;
  padding: 36px 32px;
  background: linear-gradient(155deg, #f9fbfd 0%, #edf3f9 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 28px rgba(0,0,0,0.04), 0 1px 0 rgba(255,255,255,0.75) inset;
  transition: box-shadow 0.3s var(--ease-p), transform 0.3s var(--ease-p);
}
.pkg-card:not(.featured):hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1), 0 24px 56px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.pkg-card.featured {
  background: #ffffff;
  border: none;
  box-shadow:
    0 0 0 2px var(--sky),
    0 8px 36px rgba(46,117,182,0.22),
    0 28px 72px rgba(0,0,0,0.12),
    0 1px 0 rgba(255,255,255,0.95) inset;
}
.pkg-card.featured:hover {
  box-shadow:
    0 0 0 2px var(--sky-lt),
    0 12px 48px rgba(0,180,216,0.28),
    0 36px 80px rgba(0,0,0,0.14),
    0 1px 0 rgba(255,255,255,0.95) inset;
  transform: translateY(-6px);
}
.pkg-price {
  font-size: 38px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #1E3A5F 0%, #2E75B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pkg-btn { border-radius: 10px; margin-top: 28px; letter-spacing: -0.1px; }
.pkg-btn.btn-outline {
  text-align: center;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #24466F 0%, #152B47 100%);
  box-shadow: 0 4px 14px rgba(21,43,71,0.28), 0 1px 0 rgba(255,255,255,0.08) inset;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.pkg-btn.btn-outline:hover {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #2E5686 0%, #1E3A5F 100%);
  box-shadow: 0 8px 22px rgba(21,43,71,0.38), 0 1px 0 rgba(255,255,255,0.08) inset;
  transform: translateY(-2px);
}
.pkg-btn.btn-outline:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(21,43,71,0.3); }

/* ── NICHE CARDS ─────────────────────── */
.niche-section {
  background: linear-gradient(170deg, #E8F3FB 0%, #dbeef8 100%);
  border-top: 1px solid rgba(184,216,238,0.5);
  border-bottom: 1px solid rgba(184,216,238,0.5);
}
.niche-grid { grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 16px; }
.niche-card {
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04), 0 1px 0 rgba(255,255,255,0.95) inset;
  transition: box-shadow 0.28s var(--ease-p), transform 0.28s var(--ease-p), border-color 0.28s;
}
.niche-card:hover {
  border-color: var(--sky);
  box-shadow: 0 8px 24px rgba(46,117,182,0.14), 0 1px 0 rgba(255,255,255,0.95) inset;
  transform: translateY(-4px);
}
.niche-card h4 { font-size: 14.5px; margin-bottom: 8px; }

/* ── PROCESS – connected timeline ─────── */
.steps { position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(226,232,240,0.9) 20%, rgba(226,232,240,0.9) 80%, transparent 100%);
}
.step-connector { display: none !important; }
.step-num {
  width: 44px; height: 44px;
  font-size: 15px;
  background: linear-gradient(135deg, #fff 0%, #EBF4FB 100%);
  box-shadow:
    0 0 0 5px rgba(0,180,216,0.1),
    0 4px 16px rgba(46,117,182,0.18),
    0 1px 0 rgba(255,255,255,0.95) inset;
}
.step h4 { font-size: 15px; margin-bottom: 6px; letter-spacing: -0.1px; }
.step p  { font-size: 13px; line-height: 1.6; }

/* ── WHY SECTION – dark glass ────────── */
.why-section {
  background:
    radial-gradient(ellipse 65% 80% at 90% 20%, rgba(0,180,216,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 55% 60% at 5% 85%,  rgba(46,117,182,0.12) 0%, transparent 52%),
    linear-gradient(148deg, #050C18 0%, #111F35 50%, #0A1A2C 100%);
  padding: var(--sp) 48px;
}
.why-section .sec-title { color: #fff; }
.why-section .sec-sub { color: rgba(255,255,255,0.52); }
.why-section .sec-label { color: var(--sky-lt); }
.why-grid { grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 16px; }
.why-card {
  border-radius: 18px;
  padding: 32px 26px;
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.085);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.065) inset, 0 8px 36px rgba(0,0,0,0.28);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-p), border-color 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(0,180,216,0.32);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 0 0 1px rgba(0,180,216,0.18),
    0 12px 44px rgba(0,0,0,0.38),
    0 0 32px rgba(0,180,216,0.05);
  transform: translateY(-5px);
}
.why-card--sydney {
  background:
    linear-gradient(135deg, rgba(5,12,24,0.82), rgba(17,31,53,0.68)),
    url("assets/images/sydney.jpg") center / cover;
  border-color: rgba(255,255,255,0.14);
}
.why-card--sydney:hover {
  background:
    linear-gradient(135deg, rgba(5,12,24,0.76), rgba(17,31,53,0.58)),
    url("assets/images/sydney.jpg") center / cover;
}
.why-card--sydney .why-num { color: rgba(255,255,255,0.42); }
.why-card--sydney p { color: rgba(255,255,255,0.74); }
.why-num {
  font-size: 36px;
  font-weight: 600;
  color: rgba(0,180,216,0.3);
  margin-bottom: 14px;
  letter-spacing: -1.5px;
}
.why-card h4 { font-size: 15.5px; color: #fff; margin-bottom: 8px; }
.why-card p  { font-size: 13.5px; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* ── TEAM ────────────────────────────── */
.team-section { background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%); }
.team-grid { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 20px; }
.team-card {
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 28px rgba(0,0,0,0.04), 0 1px 0 rgba(255,255,255,0.9) inset;
  transition: box-shadow 0.3s var(--ease-p), transform 0.3s var(--ease-p);
}
.team-card:hover {
  box-shadow: 0 8px 28px rgba(46,117,182,0.12), 0 24px 60px rgba(0,0,0,0.09);
  transform: translateY(-6px);
}
.team-avatar {
  width: 68px; height: 68px;
  font-size: 22px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #EBF4FB 0%, #D0E8F5 100%);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.12), 0 4px 14px rgba(46,117,182,0.15);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.team-card:nth-child(2) .team-avatar {
  background: linear-gradient(135deg, #E8EEF7 0%, #C7D8ED 100%);
  box-shadow: 0 0 0 4px rgba(46,117,182,0.12), 0 4px 14px rgba(21,43,71,0.15);
  color: var(--navy);
}
.team-card h3 { font-size: 18px; letter-spacing: -0.3px; margin-bottom: 4px; }
.team-role { font-size: 12.5px; letter-spacing: 0.04em; margin-bottom: 14px; }
.team-card p { font-size: 14px; line-height: 1.72; }

/* ── TESTIMONIALS ─────────────────────── */
.testimonials-section { background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%); padding: var(--sp) 48px; }
.testimonial-card {
  padding: 44px 52px;
  border-radius: 22px;
  background: linear-gradient(150deg, #f9fbfd 0%, #edf3f9 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 4px 18px rgba(0,0,0,0.06),
    0 16px 52px rgba(0,0,0,0.04);
}
.testimonial-quote { font-size: 18px; line-height: 1.82; }

/* ── CTA SECTION ─────────────────────── */
.cta-section {
  padding: 120px 48px;
  background:
    radial-gradient(ellipse 80% 80% at 50% -10%, rgba(0,180,216,0.1) 0%, transparent 60%),
    linear-gradient(148deg, #040C18 0%, #112030 50%, #0A1825 100%);
  position: relative;
}
.cta-inner { max-width: 560px; }
.cta-section .sec-sub,
.cta-section p.sec-sub { color: rgba(255,255,255,0.6) !important; }
.cta-section .form-field label { color: rgba(255,255,255,0.62); }
.cta-section .sec-title { color: #fff !important; }

/* ── PAGE HEADER (inner pages) ────────── */
.page-header {
  padding: 88px 48px;
  background:
    radial-gradient(ellipse 90% 120% at 50% 0%, rgba(0,180,216,0.11) 0%, transparent 62%),
    linear-gradient(148deg, #040C18 0%, #112030 55%, #0A1825 100%);
  border-bottom: 1px solid rgba(0,180,216,0.1);
}
.page-header h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  letter-spacing: -0.5px;
  max-width: 1200px;
}
.page-header p { font-size: 17px; max-width: 1200px; color: rgba(255,255,255,0.68); }

/* ── FOOTER ──────────────────────────── */
.footer {
  padding: 36px 48px;
  background: linear-gradient(180deg, #080F1A 0%, #040A12 100%);
}

/* ── BUTTONS – premium 2026 ──────────── */
.btn-sky {
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00CAEE 0%, #009DC2 100%);
  box-shadow: 0 2px 12px rgba(0,180,216,0.35), 0 1px 0 rgba(255,255,255,0.22) inset;
  transition: transform 0.15s var(--ease-p), box-shadow 0.22s, background 0.22s;
}
.btn-sky:hover {
  opacity: 1;
  background: linear-gradient(135deg, #00DAFF 0%, #00ADDA 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.48), 0 1px 0 rgba(255,255,255,0.22) inset;
}
.btn-sky:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(0,180,216,0.28); }

.btn-ghost {
  padding: 13px 28px;
  font-size: 14px;
  border-radius: 8px;
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82);
  backdrop-filter: blur(4px);
  transition: border-color 0.22s, color 0.22s, background 0.22s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.44);
  color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #3A8FDB 0%, #2260A8 100%);
  box-shadow: 0 2px 12px rgba(46,117,182,0.32), 0 1px 0 rgba(255,255,255,0.16) inset;
  border-radius: 8px;
  transition: transform 0.15s var(--ease-p), box-shadow 0.22s, background 0.22s;
}
.btn-primary:hover {
  opacity: 1;
  background: linear-gradient(135deg, #4A9AE4 0%, #2E75B6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,117,182,0.48), 0 1px 0 rgba(255,255,255,0.16) inset;
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(46,117,182,0.28); }

.btn-outline {
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: border-color 0.22s, color 0.22s, box-shadow 0.22s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
  box-shadow: 0 4px 14px rgba(46,117,182,0.16);
  transform: translateY(-2px);
}

/* ── FORM INPUTS – 2026 premium ──────── */
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 16px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(255,255,255,0.09);
  border-color: var(--sky-lt);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.14), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.form-light .form-field input,
.form-light .form-field select,
.form-light .form-field textarea {
  background: #fff;
  border-color: #E2E8F0;
  color: var(--gray-dk);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05) inset;
}
.form-light .form-field input:focus,
.form-light .form-field select:focus,
.form-light .form-field textarea:focus {
  border-color: var(--sky);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46,117,182,0.1), 0 1px 4px rgba(0,0,0,0.05) inset;
}
.form-light .form-field label { color: var(--gray-dk); }

/* ── 2026 RESPONSIVE ─────────────────── */
@media (max-width: 1024px) {
  :root { --sp: 80px; }
  .nav { padding: 0 32px; }
  section { padding: var(--sp) 32px; }
  .why-section, .cta-section, .testimonials-section { padding: var(--sp) 32px; }
  .page-header { padding: 64px 32px; }
  .footer { padding: 32px 32px; }
}
@media (max-width: 768px) {
  :root { --sp: 64px; }
  .nav { padding: 0 20px; }
  section { padding: var(--sp) 20px; }
  .why-section, .cta-section, .testimonials-section { padding: var(--sp) 20px; }
  .page-header { padding: 52px 20px; }
  .footer { padding: 28px 20px; }
  .testimonial-card { padding: 28px 24px; }
  .sec-title { font-size: 28px; }
  .sec-sub { font-size: 15px; margin-bottom: 36px; }

  /* Packages: horizontal card rail on mobile */
  .pkg-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 2px 20px 14px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .pkg-grid .pkg-card {
    flex: 0 0 min(82vw, 340px);
    width: min(82vw, 340px);
    scroll-snap-align: start;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

/* ── CONTACT PAGE: CARDS ─────────────── */
.contact-card {
  background: linear-gradient(155deg, #ffffff 0%, #f7fafd 100%);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 12px 32px rgba(46,117,182,0.06);
}
.contact-span { grid-column: 1 / -1; }
.contact-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-card-head .svc-icon { width: 44px; height: 44px; margin-bottom: 0; flex-shrink: 0; }
.contact-card-head h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.2px;
}
.contact-card form .form-row {
  gap: 14px;
  margin-bottom: 14px;
}
.contact-card form .form-field {
  gap: 7px;
  margin-bottom: 14px;
}
.contact-card form .form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
.contact-card form .form-field input,
.contact-card form .form-field select,
.contact-card form .form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  font-size: 14.5px;
  line-height: 1.45;
}
.contact-card form .form-field input::placeholder,
.contact-card form .form-field textarea::placeholder {
  color: #94A3B8;
  font-size: 13.5px;
  line-height: 1.45;
}
.contact-card form .form-field textarea {
  min-height: 118px;
  resize: vertical;
}
.contact-submit {
  width: 100%;
  min-height: 48px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 600;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-row .svc-icon { width: 40px; height: 40px; margin-bottom: 0; flex-shrink: 0; }
.contact-row-label { font-size: 13px; color: var(--gray); }
.contact-row-value { font-size: 15px; font-weight: 500; color: var(--navy); }
.contact-row-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-row-value a:hover { color: var(--sky); }
.contact-note {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 28px;
}
.contact-note h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-note p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.calendly-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.calendly-copy {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.calendly-copy h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.calendly-copy p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.calendly-fallback { width: 100%; text-align: center; }
.calendly-inline-widget {
  min-width: 0;
  height: 680px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}
.calendly-noscript {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--gray);
}
.calendly-noscript a { color: var(--sky); font-weight: 600; }
.form-light .form-field input:focus,
.form-light .form-field select:focus,
.form-light .form-field textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.14);
}
.form-light .form-field input[type="file"] {
  padding: 12px;
  border: 1.5px dashed rgba(46,117,182,0.35);
  background: var(--ice2);
  cursor: pointer;
}
.form-light .form-field input[type="file"]:hover { border-color: var(--sky); }
@media (max-width: 768px) {
  .contact-card { padding: 24px 20px; }
  .calendly-card { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .calendly-copy { padding: 18px; }
  .calendly-inline-widget { height: 700px; margin: 0 -8px; }
}

/* ── ABOUT: STORY ────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .story-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}
.story-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ── ABOUT: BELIEF QUOTE ─────────────── */
.belief-block { max-width: 680px; margin: 0 auto; text-align: center; }
.belief-quote {
  font-family: var(--font-head);
  font-size: clamp(21px, 3.4vw, 27px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin: 4px 0 32px;
  letter-spacing: -0.3px;
}
.belief-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.belief-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--gray-dk);
  line-height: 1.65;
}
.belief-point i { color: var(--sky); margin-top: 3px; flex-shrink: 0; font-size: 14px; }

/* ── SERVICES PAGE: DETAIL CARDS ─────── */
.svc-detail-grid { grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr)); gap: 24px; }
.svc-detail-grid .svc-card { display: flex; flex-direction: column; }
.svc-detail-grid .svc-badge { align-self: flex-start; }
.svc-detail-grid .svc-card p { margin-bottom: 18px; }
.svc-detail-grid .pkg-feat { margin-bottom: 9px; }
.svc-detail-grid .svc-foot { margin-top: auto; padding-top: 18px; }
.svc-detail-grid .pkg-feat:last-of-type { margin-bottom: 14px; }

/* ── BLOG POSTS: CARD LISTS ─────────── */
.check-card { max-width: 640px; margin: 0 auto; }
.check-card h3 { margin-bottom: 18px; }
.check-card .pkg-feat { font-size: 15px; margin-bottom: 12px; }
.check-card .pkg-feat i { font-size: 16px; }

/* ── BLOG POSTS: LAYOUT & RHYTHM ─────── */
body > article { padding: 0 48px; }
/* margin must stay `auto` horizontally or .section-inner loses its centering */
.post-block { margin: 48px auto; }
.post-block-header { text-align: center; max-width: 560px; margin: 0 auto 28px; }
.post-block-header .sec-label { margin-bottom: 8px; }
.post-block-header h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.post-block-header p { font-size: 14px; color: var(--gray); line-height: 1.6; }
@media (max-width: 768px) {
  body > article { padding: 0 20px; }
  .post-block { margin: 36px auto; }
}

/* ── FAQ PAGE ────────────────────────── */
.faq-page .faq-cat { margin-bottom: 56px; }
.faq-page .faq-cat:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--sky); font-weight: 500; }
@media (max-width: 768px) {
  .faq-page .faq-cat { margin-bottom: 40px; }
}
