/* ============================================================
   Swift — Website Creation Service Landing Page
   ============================================================ */

:root {
  --bg: #070b16;
  --bg-2: #0b1020;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #eef2ff;
  --muted: #9aa6c4;
  --muted-2: #6b779a;

  --brand: #6d8cff;
  --brand-2: #22d3ee;
  --accent: #c084fc;
  --hot: #ff7a59;

  --grad: linear-gradient(110deg, #7c9bff 0%, #22d3ee 45%, #c084fc 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,155,255,.18), rgba(34,211,238,.12));

  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --maxw: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Sora', var(--font);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ---------- Animated background ---------- */
.bg-aurora {
  position: fixed; inset: 0; z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(900px 600px at 10% 10%, rgba(124,155,255,.12), transparent 55%),
    var(--bg);
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .55;
  animation: drift 22s var(--ease) infinite alternate;
}
.blob-1 { width: 540px; height: 540px; left: -120px; top: -80px;
  background: radial-gradient(circle, #4f6dff, transparent 65%); }
.blob-2 { width: 600px; height: 600px; right: -160px; top: 200px;
  background: radial-gradient(circle, #18b6d6, transparent 65%); animation-delay: -7s; }
.blob-3 { width: 480px; height: 480px; left: 30%; top: 60%;
  background: radial-gradient(circle, #a855f7, transparent 65%); animation-delay: -13s; }
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px, 50px) scale(1.15); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(124,155,255,.12), transparent 60%);
  transform: translate(-50%, -50%); transition: opacity .3s; opacity: 0;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow { opacity: 1; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; cursor: pointer; border: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, opacity .3s;
  position: relative; white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:active { transform: scale(.97); }

.btn-primary {
  color: #08101f; background: var(--grad); background-size: 180% 180%;
  box-shadow: 0 12px 30px -8px rgba(60,120,255,.55), inset 0 0 0 1px rgba(255,255,255,.2);
  animation: gradShift 6s ease infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -10px rgba(60,140,255,.7); }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.btn-ghost { color: var(--text); background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-strong); transform: translateY(-2px); }

.btn-outline { color: var(--text); background: transparent; border: 1px solid var(--border-strong); }
.btn-outline:hover { background: var(--surface); transform: translateY(-2px); border-color: var(--brand); }

/* ---------- Topbar ---------- */
.topbar {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  font-size: 13.5px; padding: 9px 18px; text-align: center;
  background: linear-gradient(90deg, rgba(124,155,255,.16), rgba(192,132,252,.16));
  border-bottom: 1px solid var(--border); color: var(--text);
  position: relative; z-index: 60;
}
.topbar strong { color: #fff; }
.topbar-cta { font-weight: 600; color: var(--brand-2); }
.topbar-cta:hover { text-decoration: underline; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); } 70% { box-shadow: 0 0 0 9px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 18px;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding: 16px 24px; transition: padding .3s, background .3s;
}
.nav.scrolled {
  background: rgba(8,12,24,.72); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); padding: 11px 24px;
  position: fixed; left: 50%; transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 20px; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #08101f; background: var(--grad); box-shadow: 0 6px 18px -6px rgba(80,140,255,.7); }
.brand-name { letter-spacing: -.5px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14.5px; font-weight: 500; color: var(--muted); }
.nav-links a { position: relative; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--grad); transition: width .3s var(--ease); border-radius: 2px; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 4px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ---------- Layout ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 100px 24px; position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.kicker {
  display: inline-block; font-family: var(--display); font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-2);
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--surface); margin-bottom: 18px;
}
h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4.4vw, 50px); line-height: 1.08; letter-spacing: -1.2px; }
.section-sub { color: var(--muted); font-size: 17px; margin-top: 16px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% auto; animation: gradShift 8s ease infinite; }

/* ---------- HERO ---------- */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 70px 24px 40px; position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500;
  color: var(--text); padding: 8px 15px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); margin-bottom: 24px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 12px var(--brand-2); animation: pulse 2s infinite; }
.hero-title { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 6vw, 72px); line-height: 1.02; letter-spacing: -2px; }
.count-flip { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.hero-sub { color: var(--muted); font-size: 19px; margin: 24px 0 34px; max-width: 540px; }
.hero-sub strong { color: var(--text); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px;
  background: linear-gradient(135deg, hsl(calc(var(--i)*70) 70% 60%), hsl(calc(var(--i)*70 + 40) 70% 50%));
}
.avatars span:first-child { margin-left: 0; }
.stars { color: #ffd166; letter-spacing: 2px; font-size: 14px; }
.trust-text span { font-size: 13.5px; color: var(--muted); }

/* Browser mockup */
.hero-visual { position: relative; perspective: 1400px; }
.browser {
  background: rgba(14,19,36,.85); border: 1px solid var(--border-strong); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden; backdrop-filter: blur(8px);
  transform: rotateY(-12deg) rotateX(6deg); transition: transform .5s var(--ease);
  transform-style: preserve-3d;
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: rgba(255,255,255,.04); border-bottom: 1px solid var(--border); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.browser-url { flex: 1; display: flex; align-items: center; gap: 6px; margin: 0 8px; font-size: 11.5px; color: var(--muted); background: rgba(0,0,0,.25); padding: 6px 12px; border-radius: 8px; }
.build-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--brand-2); }
.build-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); animation: pulse 1.4s infinite; }
.browser-body { padding: 22px; min-height: 320px; }
.sk { background: linear-gradient(90deg, rgba(255,255,255,.05) 25%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.05) 75%); background-size: 200% 100%; animation: shimmer 1.8s infinite; border-radius: 7px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.sk-logo { width: 70px; height: 22px; }
.sk-links { display: flex; gap: 8px; margin-left: auto; }
.sk-pill { width: 44px; height: 12px; }
.sk-btn { width: 70px; height: 26px; border-radius: 999px; background: var(--grad) !important; opacity: .8; animation: none; }
.skeleton-hero { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.sk-line { height: 18px; }
.w70 { width: 70%; } .w90 { width: 90%; } .w50 { width: 50%; }
.sk-cta { width: 140px; height: 36px; border-radius: 999px; margin-top: 8px; background: var(--grad) !important; opacity: .85; animation: none; }
.skeleton-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.sk-card { height: 80px; animation-delay: .3s; }

/* opacity reveal on the skeleton, staged */
.browser-body .sk { opacity: 0; animation: shimmer 1.8s infinite, popIn .5s var(--ease) forwards; }
.skeleton-nav .sk { animation-delay: .2s, .2s; }
.skeleton-hero .sk:nth-child(1) { animation-delay: .5s, .5s; }
.skeleton-hero .sk:nth-child(2) { animation-delay: .65s, .65s; }
.skeleton-hero .sk:nth-child(3) { animation-delay: .8s, .8s; }
.skeleton-hero .sk:nth-child(4) { animation-delay: .95s, .95s; }
.skeleton-cards .sk:nth-child(1) { animation-delay: 1.1s, 1.1s; }
.skeleton-cards .sk:nth-child(2) { animation-delay: 1.25s, 1.25s; }
.skeleton-cards .sk:nth-child(3) { animation-delay: 1.4s, 1.4s; }
@keyframes popIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; font-family: var(--display);
  background: rgba(14,19,36,.92); border: 1px solid var(--border-strong);
  padding: 9px 14px; border-radius: 12px; box-shadow: var(--shadow);
  backdrop-filter: blur(10px); animation: floaty 4s ease-in-out infinite;
}
.float-chip span { font-size: 15px; }
.chip-1 { top: 8%; right: -6%; }
.chip-2 { top: 46%; left: -10%; animation-delay: -1.3s; }
.chip-3 { bottom: 4%; right: 4%; animation-delay: -2.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Marquee */
.marquee { margin-top: 64px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.marquee-track { display: flex; gap: 28px; white-space: nowrap; width: max-content; animation: scrollX 30s linear infinite; font-family: var(--display); font-weight: 600; color: var(--muted-2); font-size: 17px; }
.marquee-track span:nth-child(odd) { color: var(--muted); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { max-width: var(--maxw); margin: 0 auto; padding: 30px 24px 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; z-index: 1; }
.stat { text-align: center; padding: 30px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(8px); }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4vw, 48px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -1px; }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ---------- Value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.vcard { position: relative; padding: 34px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform .4s var(--ease), border-color .3s; overflow: hidden; }
.vcard:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.vcard.featured { background: var(--grad-soft); border-color: rgba(124,155,255,.4); transform: scale(1.04); }
.vcard.featured:hover { transform: scale(1.04) translateY(-6px); }
.vcard-glow { position: absolute; inset: -1px; border-radius: var(--radius-lg); background: var(--grad); opacity: .14; z-index: -1; filter: blur(20px); }
.vcard-icon { font-size: 34px; margin-bottom: 14px; }
.vcard h3 { font-family: var(--display); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.vcard p { color: var(--muted); font-size: 15px; }
.vcard-tag { display: inline-block; margin-top: 18px; font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.vcard-tag.bad { color: #ff9b8a; background: rgba(255,122,89,.12); border: 1px solid rgba(255,122,89,.25); }
.vcard-tag.good { color: #6ee7b7; background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.3); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.tl-line { position: absolute; left: 23px; top: 10px; bottom: 10px; width: 2px; background: var(--border); border-radius: 2px; }
.tl-progress { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--grad); border-radius: 2px; transition: height .2s linear; }
.tl-step { position: relative; display: flex; gap: 24px; padding-bottom: 30px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-node { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 18px; background: var(--bg-2); border: 2px solid var(--border-strong); color: var(--muted); z-index: 1; transition: .4s var(--ease); }
.tl-step.in .tl-node { background: var(--grad); color: #08101f; border-color: transparent; box-shadow: 0 8px 24px -6px rgba(80,140,255,.6); }
.tl-node.hot { box-shadow: 0 0 0 0 rgba(255,122,89,.5); }
.tl-step.in .tl-node.hot { animation: pulseHot 2s infinite; }
@keyframes pulseHot { 0% { box-shadow: 0 0 0 0 rgba(124,155,255,.5); } 70% { box-shadow: 0 0 0 14px rgba(124,155,255,0); } 100% { box-shadow: 0 0 0 0 rgba(124,155,255,0); } }
.tl-card { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; transition: .4s var(--ease); }
.tl-step:hover .tl-card { border-color: var(--border-strong); transform: translateX(4px); }
.tl-card.highlight { background: var(--grad-soft); border-color: rgba(124,155,255,.35); }
.tl-day { font-family: var(--display); font-size: 12.5px; font-weight: 600; color: var(--brand-2); letter-spacing: .5px; }
.tl-card h3 { font-family: var(--display); font-size: 19px; font-weight: 700; margin: 4px 0 6px; }
.tl-card p { color: var(--muted); font-size: 15px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; padding: 34px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; transition: transform .4s var(--ease), border-color .3s, box-shadow .3s; }
.price-card:hover { transform: translateY(-8px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.price-card.featured { background: linear-gradient(180deg, rgba(124,155,255,.14), rgba(34,211,238,.05)); border-color: rgba(124,155,255,.5); transform: scale(1.05); box-shadow: 0 30px 70px -28px rgba(80,140,255,.45); }
.price-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.best-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: var(--display); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px; background: var(--grad); color: #08101f; box-shadow: 0 8px 20px -6px rgba(80,140,255,.6); white-space: nowrap; }
.price-name { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }
.price-amount { font-family: var(--display); font-weight: 800; font-size: 54px; letter-spacing: -2px; margin: 8px 0 2px; line-height: 1; }
.price-cur { font-size: 28px; vertical-align: super; color: var(--muted); margin-right: 2px; }
.price-plus { font-size: 26px; color: var(--brand-2); }
.price-note { color: var(--muted); font-size: 14px; min-height: 38px; }
.price-feats { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-feats li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--text); }
.price-feats li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 19px; height: 19px; border-radius: 50%; background: var(--grad); color: #08101f; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.price-feats strong { color: var(--brand-2); }

/* ---------- Hosting ---------- */
.hosting-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.hosting-copy h2 { text-align: left; }
.hosting-perks { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.hosting-perks li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.hosting-perks span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #08101f; font-size: 12px; font-weight: 800; flex: 0 0 24px; }
.hosting-plans { display: grid; gap: 14px; }
.hplan { position: relative; padding: 22px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: .4s var(--ease); }
.hplan:hover { transform: translateX(6px); border-color: var(--border-strong); }
.hplan.featured { background: var(--grad-soft); border-color: rgba(124,155,255,.4); }
.hplan-flag { position: absolute; top: 16px; right: 20px; font-size: 11px; font-weight: 700; font-family: var(--display); color: var(--brand-2); }
.hplan-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.hplan-name { font-family: var(--display); font-weight: 700; font-size: 19px; }
.hplan-price { font-family: var(--display); font-weight: 800; font-size: 28px; margin-left: auto; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hplan-price small { font-size: 14px; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.hplan p { color: var(--muted); font-size: 14.5px; }

/* ---------- Work ---------- */
.work-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.work-item { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: transform .45s var(--ease), border-color .3s; }
.work-item:hover { transform: translateY(-8px) scale(1.02); border-color: var(--border-strong); }
.work-thumb { aspect-ratio: 4/3.4; background: linear-gradient(140deg, color-mix(in srgb, var(--a) 25%, #0b1020), #0b1020); padding: 14px; display: flex; flex-direction: column; gap: 9px; }
.wt-bar { height: 8px; width: 50%; border-radius: 4px; background: rgba(255,255,255,.18); }
.wt-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.wt-h { height: 16px; width: 70%; border-radius: 5px; background: linear-gradient(90deg, var(--a), var(--b)); }
.wt-p { height: 8px; border-radius: 4px; background: rgba(255,255,255,.14); }
.wt-p.s { width: 60%; }
.wt-btn { height: 22px; width: 78px; border-radius: 999px; background: linear-gradient(90deg, var(--a), var(--b)); margin-top: 2px; }
.wt-grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; flex: 1; }
.wt-grid3 i { border-radius: 7px; background: rgba(255,255,255,.10); }
.wt-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; flex: 1; }
.wt-gallery i { border-radius: 7px; background: linear-gradient(135deg, color-mix(in srgb, var(--a) 40%, transparent), color-mix(in srgb, var(--b) 40%, transparent)); }
.wt-row { display: flex; gap: 7px; }
.wt-row span { flex: 1; height: 30px; border-radius: 7px; background: rgba(255,255,255,.10); }
.work-item figcaption { padding: 16px 18px; }
.work-item figcaption strong { font-family: var(--display); font-size: 16px; display: block; }
.work-item figcaption span { color: var(--muted); font-size: 13.5px; }

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { padding: 30px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: .4s var(--ease); }
.tcard:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.tcard p { margin: 14px 0 22px; font-size: 16px; line-height: 1.65; }
.tcard footer { display: flex; align-items: center; gap: 12px; }
.t-ava { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #08101f; background: var(--c); }
.tcard footer strong { display: block; font-size: 15px; }
.tcard footer small { color: var(--muted); font-size: 13px; }
.t-disclaimer { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 26px; }

/* ---------- Guarantee ---------- */
.guarantee { padding-top: 40px; padding-bottom: 40px; }
.guarantee-card { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding: 40px 44px; border-radius: var(--radius-lg); background: linear-gradient(120deg, rgba(124,155,255,.16), rgba(34,211,238,.08)); border: 1px solid rgba(124,155,255,.35); box-shadow: var(--shadow); }
.g-shield { flex: 0 0 76px; width: 76px; height: 76px; border-radius: 20px; display: grid; place-items: center; background: var(--grad); color: #08101f; box-shadow: 0 12px 30px -8px rgba(80,140,255,.6); }
.guarantee-card h2 { font-size: clamp(24px, 3vw, 32px); text-align: left; }
.guarantee-card p { color: var(--muted); margin-top: 8px; max-width: 620px; }
.guarantee-card p strong { color: var(--text); }
.guarantee-card .btn { margin-left: auto; }

/* ---------- Order ---------- */
.order-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.order-copy h2 { text-align: left; }
.order-points { list-style: none; margin: 26px 0; display: grid; gap: 13px; }
.order-points li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.order-points span { font-size: 18px; }
.order-slots { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); padding: 10px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; }
.order-form { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); backdrop-filter: blur(10px); position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-form label { display: block; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 14px; font-family: var(--display); }
.order-form .opt { font-weight: 400; color: var(--muted-2); text-transform: none; }
.order-form input, .order-form select, .order-form textarea {
  width: 100%; margin-top: 7px; padding: 13px 15px; font-family: var(--font); font-size: 15px;
  color: var(--text); background: rgba(0,0,0,.25); border: 1px solid var(--border); border-radius: 12px;
  transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.order-form input::placeholder, .order-form textarea::placeholder { color: var(--muted-2); }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(109,140,255,.2); }
.order-form select option { background: var(--bg-2); }
.form-fine { text-align: center; font-size: 12.5px; color: var(--muted-2); margin-top: 14px; }
.form-success { position: absolute; inset: 0; background: rgba(11,16,32,.97); backdrop-filter: blur(8px); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; animation: popIn .5s var(--ease); }
.form-success[hidden] { display: none; }
.success-check { width: 70px; height: 70px; border-radius: 50%; background: var(--grad); color: #08101f; font-size: 36px; font-weight: 800; display: grid; place-items: center; margin-bottom: 20px; box-shadow: 0 16px 40px -10px rgba(80,140,255,.7); }
.form-success h3 { font-family: var(--display); font-size: 26px; margin-bottom: 10px; }
.form-success p { color: var(--muted); max-width: 360px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-family: var(--display); font-weight: 600; font-size: 16.5px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.faq-ico::before, .faq-ico::after { content: ''; position: absolute; background: var(--brand-2); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-ico::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-ico::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); margin-top: 60px; }
.footer-cta { max-width: var(--maxw); margin: 0 auto; padding: 90px 24px; text-align: center; }
.footer-cta h2 { margin-bottom: 30px; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 36px 24px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom .brand { font-size: 18px; }
.footer-bottom p { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 20px; margin-left: auto; font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom small { width: 100%; color: var(--muted-2); font-size: 13px; padding-top: 8px; }

/* ---------- Sticky CTA ---------- */
.sticky-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40; display: none; text-align: center; padding: 16px; border-radius: 14px; font-family: var(--display); font-weight: 700; color: #08101f; background: var(--grad); box-shadow: 0 16px 40px -10px rgba(80,140,255,.7); transform: translateY(140%); transition: transform .4s var(--ease); }
.sticky-cta.show { transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .marquee-track, .float-chip, .build-dot, .pulse-dot, .grad-text, .btn-primary { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .browser { transform: none; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .value-grid, .price-grid, .tgrid { grid-template-columns: 1fr; }
  .vcard.featured, .price-card.featured { transform: none; }
  .vcard.featured:hover { transform: translateY(-6px); }
  .price-card.featured:hover { transform: translateY(-8px); }
  .hosting-wrap, .order-wrap { grid-template-columns: 1fr; gap: 40px; }
  .work-grid { grid-template-columns: repeat(2,1fr); }
  .guarantee-card { flex-direction: column; text-align: center; }
  .guarantee-card h2, .guarantee-card p { text-align: center; }
  .guarantee-card .btn { margin: 0; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 12px; right: 12px; flex-direction: column; gap: 4px; background: rgba(11,16,32,.97); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 16px; padding: 14px; margin: 0; }
  .nav-links.open a { padding: 10px 12px; }
  .section { padding: 70px 20px; }
  .hero { padding: 40px 20px 30px; }
  .sticky-cta { display: block; }
  .chip-1, .chip-2, .chip-3 { font-size: 11px; padding: 7px 11px; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
