/* ==========================================================
   TechDigitalPro — Digital Accounts Marketplace
   Design System & Global Stylesheet (v2 — Premium)
   ========================================================== */

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

/* ---------- Design Tokens ---------- */
:root {
  --ink: #070B14;
  --ink-2: #0D1322;
  --ink-3: #141B30;
  --paper: #F5F6FA;
  --card: #FFFFFF;
  --line: #E6E8F2;
  --line-dark: rgba(255, 255, 255, 0.09);

  --indigo: #5B5FF0;
  --violet: #9D4EDD;
  --cyan: #22D3EE;
  --mint: #2DD4A7;
  --amber: #F5A524;

  --grad: linear-gradient(120deg, #5B5FF0 0%, #9D4EDD 55%, #22D3EE 115%);
  --grad-soft: linear-gradient(120deg, rgba(91,95,240,.14), rgba(157,78,221,.14), rgba(34,211,238,.14));

  --text-1: #10152A;
  --text-2: #4F5873;
  --text-3: #8A93AB;
  --text-inv-1: #F2F4FB;
  --text-inv-2: #A3ACCA;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-1: 0 1px 2px rgba(16, 24, 40, 0.05), 0 4px 16px rgba(16, 24, 40, 0.05);
  --shadow-2: 0 24px 60px -12px rgba(16, 24, 40, 0.18);
  --shadow-3: 0 32px 90px -16px rgba(16, 24, 40, 0.28);
  --glow: 0 12px 44px rgba(91, 95, 240, 0.38);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-1);
  background: var(--paper);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: rgba(91, 95, 240, 0.25); }

/* Premium scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #5B5FF0, #9D4EDD); border-radius: 8px; border: 2px solid var(--ink); }

/* ---------- Layout Utilities ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 76px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--indigo);
  padding: 8px 18px; border-radius: 100px;
  background: rgba(91, 95, 240, 0.08);
  border: 1px solid rgba(91, 95, 240, 0.2);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 8px rgba(91,95,240,.8); }

.section-head { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(31px, 4.4vw, 48px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em;
  margin: 20px 0 16px;
}
.section-head p { color: var(--text-2); font-size: 17.5px; }
.section-head.left { margin-inline: 0; text-align: left; }

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

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 100px;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 56px rgba(91, 95, 240, 0.5), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover::after { left: 130%; }

.btn-dark { background: var(--ink); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

.btn-ghost { border: 1.5px solid var(--line); color: var(--text-1); background: var(--card); }
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(91,95,240,.12); }

.btn-ghost-inv { border: 1.5px solid rgba(255,255,255,0.22); color: #fff; background: rgba(255,255,255,0.04); backdrop-filter: blur(8px); }
.btn-ghost-inv:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.09); transform: translateY(-2px); }

.btn-sm { padding: 11px 22px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 12px 44px rgba(3, 6, 14, 0.4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-inner > * { min-width: 0; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 21px; color: #fff; letter-spacing: -0.01em; white-space: nowrap; }
.brand-mark {
  width: 39px; height: 39px; border-radius: 12px;
  background: var(--grad);
  display: grid; place-items: center;
  font-size: 17px; font-weight: 700; color: #fff;
  box-shadow: var(--glow), inset 0 1px 0 rgba(255,255,255,.3);
}
.brand span em { font-style: normal; color: var(--cyan); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .nav-drop > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 100px;
  font-size: 14.5px; font-weight: 500; color: var(--text-inv-2);
  transition: color 0.2s, background 0.2s;
}
.main-nav > a:hover, .nav-drop > button:hover, .main-nav > a.active { color: #fff; background: rgba(255, 255, 255, 0.08); }

.nav-drop { position: relative; }
.nav-drop > button svg { width: 13px; height: 13px; transition: transform 0.25s; }
.nav-drop:hover > button svg { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 640px; padding: 22px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: var(--shadow-3); border: 1px solid rgba(255,255,255,0.6);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0.25s;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.drop-link { display: flex; gap: 12px; align-items: flex-start; padding: 11px 12px; border-radius: 12px; transition: background 0.15s, transform 0.2s var(--ease); }
.drop-link:hover { background: var(--paper); transform: translateX(2px); }
.drop-ico {
  flex-shrink: 0; width: 37px; height: 37px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--grad-soft); color: var(--indigo);
  transition: 0.25s var(--ease);
}
.drop-link:hover .drop-ico { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.drop-ico svg { width: 18px; height: 18px; }
.drop-link strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-1); }
.drop-link span { display: block; font-size: 12px; color: var(--text-3); margin-top: 1px; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-dark); color: #fff; place-items: center; flex-shrink: 0; }
.nav-toggle svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background: var(--ink);
  padding: 24px 6% 48px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; transition: transform 0.45s var(--ease); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-dark); color: #fff; display: grid; place-items: center; }
.mobile-close svg { width: 18px; height: 18px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav > a, .mobile-group > button {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 6px; font-size: 17px; font-weight: 600; color: var(--text-inv-1);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
}
.mobile-group > button svg { width: 16px; height: 16px; transition: transform 0.3s; }
.mobile-group.open > button svg { transform: rotate(180deg); }
.mobile-sub { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.mobile-group.open .mobile-sub { max-height: 640px; }
.mobile-sub a { display: block; padding: 11px 14px; font-size: 15px; color: var(--text-inv-2); }
.mobile-sub a:hover { color: #fff; }
.mobile-menu .btn { margin-top: 28px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-inv-1);
  padding: calc(var(--header-h) + 48px) 0 72px;
  overflow: hidden;
}
/* Desktop: homepage hero fits exactly one screen */
@media (min-width: 981px) {
  .hero:not(.hero-page) {
    min-height: 100vh; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: var(--header-h); padding-bottom: 40px;
  }
}
/* Static aurora layer */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(46% 52% at 12% 8%, rgba(91, 95, 240, 0.55), transparent 62%),
    radial-gradient(42% 48% at 88% 14%, rgba(157, 78, 221, 0.42), transparent 60%),
    radial-gradient(48% 46% at 62% 108%, rgba(34, 211, 238, 0.26), transparent 62%);
}
/* Grid layer */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(75% 70% at 50% 30%, #000 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 70% at 50% 30%, #000 25%, transparent 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 840px; margin: 0 auto; text-align: center; }

/* Split hero (homepage) */
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 60px; align-items: center; text-align: left; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { margin: 0 0 34px; }
.hero-copy .hero-actions { justify-content: flex-start; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; font-weight: 500; color: var(--text-inv-2);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px rgba(45, 212, 167, 0.9); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 66px);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.032em;
  margin-bottom: 20px;
}
.hero p.lead { font-size: clamp(16px, 1.8vw, 18.5px); color: var(--text-inv-2); max-width: 620px; margin: 0 auto 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-inner .hero-actions { justify-content: center; }

/* Social proof row */
.hero-proof { display: flex; align-items: center; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid var(--ink);
  margin-left: -11px;
  display: grid; place-items: center;
  font-size: 11.5px; font-weight: 700; color: #fff;
  font-family: var(--font-display);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(1) { background: linear-gradient(135deg,#5B5FF0,#9D4EDD); }
.avatars span:nth-child(2) { background: linear-gradient(135deg,#9D4EDD,#E0489E); }
.avatars span:nth-child(3) { background: linear-gradient(135deg,#22D3EE,#5B5FF0); }
.avatars span:nth-child(4) { background: linear-gradient(135deg,#2DD4A7,#22D3EE); }
.avatars span:nth-child(5) { background: linear-gradient(135deg,#F5A524,#E0489E); }
.hero-proof-text { font-size: 13.5px; color: var(--text-inv-2); line-height: 1.45; }
.hero-proof-text .stars { color: var(--amber); letter-spacing: 2.5px; font-size: 13px; display: block; margin-bottom: 2px; }
.hero-proof-text b { color: #fff; }

/* Floating hero visual */
.hero-visual { position: relative; height: 470px; }
.hero-visual::before {
  content: ''; position: absolute; inset: 8% -4%;
  background: var(--grad); filter: blur(110px); opacity: 0.38;
}
.f-card {
  position: absolute; width: 264px;
  border-radius: 20px;
  background: #fff; color: var(--text-1);
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 20px;
  box-shadow: 0 28px 64px -14px rgba(3, 6, 14, 0.55);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.f-card:hover { transform: rotate(var(--rot, 0deg)) translateY(-6px); box-shadow: 0 36px 80px -14px rgba(3, 6, 14, 0.6); }
.fc-1 { top: 0; right: 6%; --rot: -3deg; z-index: 3; }
.fc-2 { top: 168px; left: 0; --rot: 2.5deg; z-index: 2; }
.fc-3 { bottom: 0; right: 0; --rot: -1.5deg; z-index: 1; }

.f-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(91,95,240,.45);
}
.f-ico svg { width: 20px; height: 20px; }
.f-top b { display: block; font-family: var(--font-display); font-size: 15.5px; color: var(--text-1); letter-spacing: -0.01em; }
.f-top span { font-size: 11.5px; color: var(--text-3); }
.f-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 14px; }
.f-price b { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--text-1); letter-spacing: -0.03em; }
.f-price span { font-size: 12px; color: var(--text-3); }
.f-bar { height: 6px; border-radius: 6px; background: #EDEFF6; overflow: hidden; margin-bottom: 13px; }
.f-bar i { display: block; height: 100%; border-radius: 6px; background: var(--grad); }
.f-foot { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--text-3); }
.f-foot .f-ok { color: #0E9F6E; font-weight: 600; }

.f-chip {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 17px; border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 12.5px; font-weight: 600; color: var(--text-1);
  box-shadow: 0 18px 44px rgba(3, 6, 14, 0.35);
}
.f-chip svg { width: 15px; height: 15px; }
.fchip-1 { top: 126px; right: -2%; --rot: 2deg; }
.fchip-1 svg { color: var(--amber); }
.fchip-2 { bottom: 98px; left: 6%; --rot: -2.5deg; }
.fchip-2 svg { color: #0E9F6E; }

/* Hero stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 880px; margin: 56px auto 0;
}
.hero-stat {
  padding: 24px 16px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.hero-stat:hover { border-color: rgba(91,95,240,.5); background: rgba(91,95,240,.08); transform: translateY(-3px); }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 31px; font-weight: 700; letter-spacing: -0.02em; }
.hero-stat span { font-size: 12.5px; color: var(--text-inv-2); }

/* Inner-page hero (centered) */
.hero-page { padding: calc(var(--header-h) + 76px) 0 92px; }
.hero-page .hero-inner { max-width: 780px; }
.crumbs { display: flex; justify-content: center; gap: 9px; font-size: 13px; color: var(--text-inv-2); margin-bottom: 24px; }
.crumbs a:hover { color: #fff; }
.crumbs i { font-style: normal; opacity: 0.45; }

/* Hero chips (service pages) */
.hero-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-chips span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--text-inv-2);
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(8px);
}
.hero-chips span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }
.hero-chips b { color: #fff; }

/* ---------- Official brand chips ---------- */
.svc-ico.brand svg, .pg-ico.brand svg { width: 27px; height: 27px; }
.pg-ico.brand svg { width: 24px; height: 24px; }
.f-ico.brand svg { width: 22px; height: 22px; }
.pc-logo.brand svg { width: 19px; height: 19px; }
.svc-ico.brand, .pg-ico.brand, .f-ico.brand, .pc-logo.brand { color: #fff; }
.svc-card:hover .svc-ico.brand { color: #fff; }
.brand-txt { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
.pc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pc-logo {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(7, 11, 20, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.pc-top .price-qty { align-self: center; }

/* ---------- Trust marquee ---------- */
.trust-bar { background: var(--ink); border-top: 1px solid var(--line-dark); padding: 24px 0; overflow: hidden; position: relative; }
.trust-bar::before, .trust-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.trust-bar::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee { display: flex; gap: 60px; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-inv-2); white-space: nowrap; }
.marquee span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px rgba(91,95,240,.8); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================
   SERVICE CARDS
   ========================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.svc-card::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-2); border-color: rgba(91, 95, 240, 0.35); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-soft); color: var(--indigo);
  margin-bottom: 22px;
  transition: 0.4s var(--ease);
}
.svc-card:hover .svc-ico { background: var(--grad); color: #fff; transform: scale(1.06) rotate(-4deg); box-shadow: var(--glow); }
.svc-ico svg { width: 25px; height: 25px; }
.svc-card h3 { font-family: var(--font-display); font-size: 20.5px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 9px; }
.svc-card p { font-size: 14.5px; color: var(--text-2); margin-bottom: 20px; }
.svc-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.svc-price { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.svc-price b { display: block; font-family: var(--font-display); font-size: 24px; color: var(--text-1); letter-spacing: -0.02em; text-transform: none; }
.svc-link { position: relative; display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--indigo); padding-bottom: 3px; }
.svc-link::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.svc-card:hover .svc-link::after { transform: scaleX(1); }
.svc-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ==========================================================
   PRICING (Premium)
   ========================================================== */
.price-group { margin-bottom: 68px; }
.price-group:last-child { margin-bottom: 0; }
.price-group-head {
  position: relative;
  display: flex; align-items: center; gap: 17px;
  padding-bottom: 20px; margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.price-group-head::after {
  content: ''; position: absolute; left: 0; bottom: -1.5px;
  width: 130px; height: 3px; border-radius: 3px;
  background: var(--grad);
}
.price-group-head .pg-ico {
  width: 50px; height: 50px; border-radius: 15px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--ink); color: var(--cyan);
  box-shadow: 0 10px 26px rgba(7, 11, 20, 0.3), inset 0 1px 0 rgba(255,255,255,.1);
}
.price-group-head .pg-ico svg { width: 22px; height: 22px; }
.price-group-head h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.price-group-head p { font-size: 13.5px; color: var(--text-3); margin-top: 2px; }

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.price-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px 26px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.price-card:hover {
  transform: translateY(-7px);
  border-color: transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-2);
}

.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
    var(--grad) border-box;
  color: var(--text-inv-1);
  box-shadow: 0 30px 70px -18px rgba(91, 95, 240, 0.5);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-7px); box-shadow: 0 38px 90px -16px rgba(91, 95, 240, 0.6); }
.price-card.featured::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 90% at 85% -10%, rgba(157, 78, 221, 0.32), transparent 55%),
              radial-gradient(100% 80% at 0% 110%, rgba(34, 211, 238, 0.2), transparent 55%);
}

.tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 5px 16px; border-radius: 100px;
  background: var(--grad); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(91, 95, 240, 0.5), inset 0 1px 0 rgba(255,255,255,.3);
  white-space: nowrap;
  z-index: 2;
}

.price-qty {
  display: inline-flex; align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2);
  background: var(--paper); border: 1px solid var(--line);
  padding: 5px 13px; border-radius: 100px;
}
.price-card.featured .price-qty { color: var(--text-inv-2); background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }

.price-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-top: 13px; letter-spacing: -0.015em; line-height: 1.3; }

.price-val { display: flex; align-items: baseline; gap: 5px; margin: 15px 0 4px; }
.price-val .cur { font-size: 20px; font-weight: 600; color: var(--indigo); }
.price-card.featured .price-val .cur { color: var(--cyan); }
.price-val .amt {
  font-family: var(--font-display); font-size: 48px; font-weight: 700; letter-spacing: -0.035em; line-height: 1;
}
.price-card.featured .price-val .amt {
  background: linear-gradient(120deg, #fff 30%, #B9C4FF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-per { font-size: 12.5px; color: var(--text-3); margin-bottom: 20px; font-weight: 500; }
.price-card.featured .price-per { color: var(--text-inv-2); }

.price-feats { display: flex; flex-direction: column; gap: 9px; padding: 18px 0; border-top: 1px dashed var(--line); flex: 1; }
.price-card.featured .price-feats { border-top-color: rgba(255,255,255,0.12); }
.price-feats li { display: flex; gap: 10px; font-size: 13px; color: var(--text-2); line-height: 1.45; align-items: flex-start; }
.price-card.featured .price-feats li { color: var(--text-inv-2); }
.price-feats li svg { flex-shrink: 0; width: 17px; height: 17px; margin-top: 1px; }

.price-card .btn { margin-top: 20px; }

/* Range card (short packages) */
.price-range-note { font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -0.025em; margin: 15px 0 4px; }

/* ==========================================================
   FEATURES / STEPS
   ========================================================== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: rgba(91,95,240,.3); }
.feat-ico {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center; margin-bottom: 22px;
  box-shadow: var(--glow), inset 0 1px 0 rgba(255,255,255,.3);
}
.feat-ico svg { width: 24px; height: 24px; }
.feat-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.015em; }
.feat-card p { font-size: 14.5px; color: var(--text-2); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; position: relative; }
@media (min-width: 1081px) {
  .steps::before {
    content: ''; position: absolute; top: 54px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(91,95,240,.35), rgba(34,211,238,.35), transparent);
  }
}
.step {
  position: relative; padding: 32px 26px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff;
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--grad);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255,255,255,.3);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.step h3 { font-family: var(--font-display); font-size: 17.5px; font-weight: 700; margin-bottom: 9px; letter-spacing: -0.01em; }
.step p { font-size: 13.5px; color: var(--text-2); }

/* ---------- Dark section variant ---------- */
.section-dark { position: relative; background: var(--ink); color: var(--text-inv-1); overflow: hidden; }
.section-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(45% 55% at 8% 0%, rgba(91, 95, 240, 0.18), transparent 60%),
    radial-gradient(40% 50% at 95% 100%, rgba(34, 211, 238, 0.12), transparent 60%);
}
.section-dark .container { position: relative; z-index: 1; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: var(--text-inv-2); }
.section-dark .eyebrow { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--cyan); }
.section-dark .feat-card, .section-dark .step, .section-dark .testi, .section-dark .info-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.section-dark .feat-card:hover, .section-dark .step:hover, .section-dark .testi:hover, .section-dark .info-card:hover {
  border-color: rgba(91, 95, 240, 0.5);
  background: rgba(91, 95, 240, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.section-dark .feat-card h3, .section-dark .step h3, .section-dark .testi b, .section-dark .info-card h3 { color: #fff; }
.section-dark .feat-card p, .section-dark .step p, .section-dark .testi p, .section-dark .info-card p, .section-dark .info-card li { color: var(--text-inv-2); }
.section-dark .info-card ul li::before { color: var(--cyan); }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.testi::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 84px; line-height: 0.6;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; margin-bottom: -4px;
}
.testi-stars { display: flex; gap: 3px; color: var(--amber); }
.testi-stars svg { width: 16px; height: 16px; }
.testi p { font-size: 15px; color: var(--text-2); flex: 1; line-height: 1.7; }
.testi-who { display: flex; align-items: center; gap: 13px; padding-top: 16px; border-top: 1px solid var(--line); }
.section-dark .testi-who { border-top-color: rgba(255,255,255,.1); }
.testi-ava {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; font-family: var(--font-display);
  box-shadow: var(--glow);
}
.testi-who b { display: block; font-size: 14.5px; }
.testi-who span { font-size: 12.5px; color: var(--text-3); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item::before {
  content: ''; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px; border-radius: 3px;
  background: var(--grad); opacity: 0; transition: opacity 0.3s;
}
.faq-item.open { border-color: rgba(91, 95, 240, 0.4); box-shadow: 0 14px 40px rgba(91, 95, 240, 0.12); }
.faq-item.open::before { opacity: 1; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 26px; text-align: left;
  font-family: var(--font-display); font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--indigo); }
.faq-q .fx { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-soft); color: var(--indigo); transition: transform 0.4s var(--ease), background 0.3s, color 0.3s; }
.faq-q .fx svg { width: 14px; height: 14px; }
.faq-item.open .fx { transform: rotate(135deg); background: var(--grad); color: #fff; box-shadow: var(--glow); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 26px 24px; font-size: 14.5px; color: var(--text-2); line-height: 1.75; }

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band {
  position: relative;
  background: var(--ink);
  border-radius: 32px; padding: 84px 8%;
  overflow: hidden; text-align: center; color: #fff;
  box-shadow: var(--shadow-3);
  border: 1px solid rgba(255,255,255,.08);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 15% 0%, rgba(91, 95, 240, 0.42), transparent 60%),
              radial-gradient(55% 85% at 90% 100%, rgba(34, 211, 238, 0.28), transparent 60%);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent 78%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(29px, 4.2vw, 46px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 18px; }
.cta-band p { color: var(--text-inv-2); max-width: 560px; margin: 0 auto 34px; font-size: 16.5px; }
.cta-band .hero-actions { margin: 0; justify-content: center; }

/* ==========================================================
   FORMS
   ========================================================== */
.form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 42px; box-shadow: var(--shadow-1);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-1); letter-spacing: 0.01em; }
.field label i { font-style: normal; color: #E5484D; }
.field input, .field select, .field textarea {
  padding: 14px 17px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--paper);
  font-size: 14.5px; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #C9CEE0; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--indigo); background: #fff;
  box-shadow: 0 0 0 4px rgba(91, 95, 240, 0.13);
}
.field textarea { min-height: 130px; resize: vertical; }

.order-summary {
  color: var(--text-inv-1);
  border-radius: var(--r-xl); padding: 36px;
  position: sticky; top: calc(var(--header-h) + 20px);
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
    linear-gradient(120deg, rgba(91,95,240,.6), rgba(34,211,238,.4)) border-box;
  box-shadow: var(--shadow-3);
}
.order-summary h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 22px; letter-spacing: -0.01em; }
.os-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px dashed rgba(255,255,255,0.12); font-size: 14px; }
.os-row span { color: var(--text-inv-2); }
.os-row b { text-align: right; }
.os-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 20px; }
.os-total span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-inv-2); font-weight: 600; }
.os-total b {
  font-family: var(--font-display); font-size: 40px; letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff 30%, #9DF0FF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.os-note { margin-top: 18px; font-size: 12.5px; color: var(--text-inv-2); display: flex; gap: 10px; line-height: 1.5; }
.os-note svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--mint); margin-top: 2px; }

/* ---------- Info panels ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.info-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.info-card h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 12px; display: flex; align-items: center; gap: 11px; letter-spacing: -0.015em; }
.info-card h3 svg { width: 20px; height: 20px; color: var(--indigo); }
.info-card p, .info-card li { font-size: 14.5px; color: var(--text-2); }
.info-card ul { display: flex; flex-direction: column; gap: 9px; margin-top: 8px; }
.info-card ul li { display: flex; gap: 10px; }
.info-card ul li::before { content: '—'; color: var(--indigo); flex-shrink: 0; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h1 { font-family: var(--font-display); font-size: clamp(29px, 4vw, 40px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.18; margin: 0 0 20px; }
.prose h1 + h2 { margin-top: 30px; }
.prose h2 { font-family: var(--font-display); font-size: 27px; font-weight: 700; margin: 46px 0 16px; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 30px 0 12px; }
.prose p, .prose li { font-size: 15px; color: var(--text-2); margin-bottom: 13px; line-height: 1.75; }
.prose ul { padding-left: 4px; display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.prose ul li { display: flex; gap: 11px; margin-bottom: 0; }
.prose ul li::before { content: ''; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); margin-top: 9px; }
.prose strong { color: var(--text-1); }
.prose a { color: var(--indigo); font-weight: 500; }
.prose a:hover { text-decoration: underline; }

/* ---------- Floating chat widget ---------- */
.chat-widget {
  position: fixed; left: 20px; bottom: 20px; z-index: 850;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-btn {
  position: relative;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 26px rgba(7, 11, 20, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.chat-btn svg { width: 24px; height: 24px; }
.chat-btn:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 36px rgba(7, 11, 20, 0.36); }
.chat-tg { background: #229ED9; }
.chat-wa { background: #25D366; }
.chat-em { background: var(--grad); }
.chat-label {
  position: absolute; left: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  padding: 7px 13px; border-radius: 9px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.3s var(--ease);
}
.chat-btn:hover .chat-label { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 640px) {
  .chat-widget { left: 14px; bottom: 14px; gap: 10px; }
  .chat-btn { width: 46px; height: 46px; }
  .chat-btn svg { width: 21px; height: 21px; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { position: relative; background: var(--ink); color: var(--text-inv-2); margin-top: 104px; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,95,240,.7), rgba(34,211,238,.7), transparent);
}
.footer-cta-strip { border-bottom: 1px solid var(--line-dark); padding: 60px 0; }
.footer-cta-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-cta-strip h3 { font-family: var(--font-display); color: #fff; font-size: clamp(23px, 3vw, 31px); letter-spacing: -0.02em; }
.footer-cta-strip p { margin-top: 7px; font-size: 14.5px; }

.footer-main { padding: 76px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand p { font-size: 14px; margin: 20px 0 24px; max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 41px; height: 41px; border-radius: 12px;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center; color: var(--text-inv-2);
  transition: 0.3s var(--ease);
}
.footer-social a:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: var(--glow); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; transition: color 0.2s, padding-left 0.25s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 6px; }

.footer-bottom { border-top: 1px solid var(--line-dark); padding: 26px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee, .hero::before, .f-card, .f-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   PAGE: CONTACT
   ========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 26px; align-items: start; }
.contact-grid.order-layout { grid-template-columns: 1.5fr 1fr; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-tile {
  display: flex; gap: 17px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-1);
  transition: 0.35s var(--ease);
}
.contact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(91,95,240,.3); }
.contact-tile .ct-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; background: var(--grad-soft); color: var(--indigo); display: grid; place-items: center; transition: 0.3s var(--ease); }
.contact-tile:hover .ct-ico { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.contact-tile .ct-ico svg { width: 21px; height: 21px; }
.contact-tile b { display: block; font-family: var(--font-display); font-size: 16.5px; margin-bottom: 4px; letter-spacing: -0.01em; }
.contact-tile p, .contact-tile a { font-size: 14px; color: var(--text-2); }
.contact-tile a:hover { color: var(--indigo); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1080px) {
  .price-grid, .price-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .feat-grid, .feat-grid.cols-4, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .drop-menu { width: 480px; grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-7px); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { height: 480px; max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 920px) {
  .main-nav, .header-cta .btn-ghost-inv { display: none; }
  .nav-toggle { display: grid; }
  .contact-grid, .contact-grid.order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }

  /* Compact mobile header so brand + CTA + hamburger always fit on screen */
  .header-inner { gap: 12px; }
  .brand { font-size: 18px; gap: 9px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 10px; font-size: 15px; }
  .header-cta { gap: 10px; }
  .header-cta .btn-sm { padding: 10px 16px; font-size: 12.5px; gap: 7px; }
}

@media (max-width: 480px) {
  /* Small phones: keep the header minimal — Order Now lives inside the mobile menu */
  .header-cta .btn { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: calc(var(--header-h) + 56px) 0 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .price-grid, .price-grid.cols-3 { grid-template-columns: 1fr; }
  .svc-grid, .feat-grid, .feat-grid.cols-4, .testi-grid, .steps, .info-grid, .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 7%; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 30px 22px; }
  .hero-visual { height: 430px; }
  .f-card { width: 228px; padding: 16px; }
  .f-price b { font-size: 28px; }
  .fc-2 { top: 168px; }
  .fchip-2 { bottom: 96px; }
}
