/* ============================================================
   JOVYA — style.css
   Palette: Navy #0d1f52 | Blue #3ab4f2 | White #ffffff
   Fonts: Fraunces (display) + Plus Jakarta Sans (body)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

:root {
  --navy:      #0d1f52;
  --navy-2:    #162b6e;
  --navy-3:    #1e3a8a;
  --blue:      #3ab4f2;
  --blue-2:    #0ea5e9;
  --blue-pale: #e0f4fd;
  --white:     #ffffff;
  --off:       #f5f9ff;
  --muted:     #617099;
  --border:    #dde6f5;
  --green:     #22c55e;
  --red:       #ef4444;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --radius:    18px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  --shadow:    0 2px 20px rgba(13,31,82,.08);
  --shadow-md: 0 6px 40px rgba(13,31,82,.13);
  --shadow-lg: 0 16px 64px rgba(13,31,82,.18);

  --transition: .22s cubic-bezier(.4,0,.2,1);
}

body {
  font-family: var(--ff-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img, svg { display: block; }
ul, ol { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- TYPOGRAPHY UTILS ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-2);
  background: var(--blue-pale);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.tag-light { background: rgba(58,180,242,.15); color: var(--blue); }

.section-h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.section-h2 em { font-style: italic; color: var(--blue-2); }
.white-h2 { color: var(--white); }
.white-h2 em { color: var(--blue); }

.section-p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}
.light-p { color: rgba(255,255,255,.65); }

/* ---------- BUTTONS ---------- */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(58,180,242,.35);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none;
}
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(58,180,242,.5);
  filter: brightness(1.05);
}
.cta-primary:active { transform: translateY(-1px); }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.cta-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-2);
  background: var(--blue-pale);
}

.full-cta { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221,230,245,.7);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px; right: 100%;
  height: 2px;
  background: var(--blue);
  transition: right var(--transition);
}
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--blue-2); }

.nav-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.nav-btn:hover { background: var(--navy-2); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
  gap: 4px;
}
.nav-drawer a {
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .drawer-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  border: none;
}
.nav-drawer.open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 100px 28px 60px;
  max-width: 1120px;
  margin: 0 auto;
  gap: 40px;
  overflow: visible;
}
.hero-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}
.hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,180,242,.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 22px;
  animation: fadeUp .5s ease both;
}
.dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  animation: fadeUp .5s .1s ease both;
}
.hero-h1 em { font-style: italic; color: var(--blue-2); }
.h1-accent {
  display: inline-block;
  position: relative;
  color: var(--navy);
}
.h1-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  border-radius: 3px;
  opacity: .3;
  z-index: -1;
}

.hero-p {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp .5s .2s ease both;
}
.hero-p strong { color: var(--navy); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp .5s .3s ease both;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp .5s .4s ease both;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-item strong { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--navy); }
.proof-item span  { font-size: 12px; color: var(--muted); font-weight: 500; }
.proof-sep { width: 1px; height: 36px; background: var(--border); }

.hero-domain-preview {
  flex-shrink: 0;
  animation: fadeRight .6s .5s ease both;
}
.domain-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  min-width: 300px;
  position: relative;
  overflow: hidden;
}
.domain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}
.domain-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.domain-url {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  word-break: break-all;
}
.url-dim { color: var(--muted); }
.url-name { color: var(--blue-2); }
.domain-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s ease infinite;
}

/* ---------- SECTION BASE ---------- */
.section { padding: 100px 0; }

/* ---------- OFFER SECTION ---------- */
.offer-section { background: var(--off); }

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.offer-text { position: sticky; top: 90px; }
.offer-highlight {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.oh-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.oh-url { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--white); }
.oh-url strong { color: var(--blue); }

.offer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(58,180,242,.3);
}
.fc-icon { font-size: 26px; margin-bottom: 12px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Compare table */
.compare-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.compare-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.compare-table { width: 100%; }
.ct-head, .ct-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  align-items: center;
}
.ct-head {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.ct-row:nth-child(even) { background: var(--off); }
.ct-bad  { color: var(--red); font-weight: 600; }
.ct-good { color: var(--green); font-weight: 700; }
.ct-feat { color: var(--navy); font-weight: 600; }

/* ---------- ORDER SECTION ---------- */
.order-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(58,180,242,.12) 0%, transparent 65%);
  pointer-events: none;
}
.order-section .container { position: relative; z-index: 1; }

.order-flow { max-width: 580px; margin: 0 auto; }

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.fs-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.fs-step.active-step { color: var(--white); }
.fs-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: background var(--transition), border-color var(--transition);
}
.fs-step.active-step .fs-num {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.fs-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: rgba(255,255,255,.15);
}

/* Order & Payment card */
.order-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.payment-card {
  animation: fadeUp .35s ease both;
}

/* Form elements */
.fg { margin-bottom: 22px; }
.fg label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
}
.fg input,
.fg select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.fg input::placeholder { color: rgba(255,255,255,.3); }
.fg input:focus,
.fg select:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(58,180,242,.2);
}
.fg select option { background: var(--navy-2); color: var(--white); }
.fg small { display: block; font-size: 12px; color: rgba(255,255,255,.35); margin-top: 6px; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 44px; }
.select-arrow {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.4);
  pointer-events: none;
}

.name-input-group {
  display: flex;
  align-items: stretch;
}
.name-input-group input {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border-right: none;
  flex: 1;
}
.name-input-group input:focus { border-right: none; }
.name-suffix {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: rgba(58,180,242,.15);
  border: 1.5px solid rgba(58,180,242,.3);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.form-err {
  display: none;
  padding: 11px 16px;
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: #fca5a5;
  margin-bottom: 20px;
}
.form-err.visible { display: block; }

/* Payment card internals */
.pay-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.pay-icon { font-size: 36px; line-height: 1; flex-shrink: 0; }
.pay-header h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pay-header p  { font-size: 14px; color: rgba(255,255,255,.5); }

.pay-details {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.pd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 15px;
}
.pd-row:last-child { border-bottom: none; }
.pd-row span { color: rgba(255,255,255,.5); }
.pd-row strong { color: var(--white); font-weight: 700; }
.acc-number {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--blue) !important;
}
.pd-amount strong {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--green) !important;
}

.pay-note {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--radius-xs);
  padding: 13px 16px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 22px;
  line-height: 1.55;
}

.back-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  margin-top: 12px;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
}
.back-btn:hover { color: var(--white); background: rgba(255,255,255,.06); }

/* ---------- CHALLENGE SECTION ---------- */
.challenge-section { background: var(--off); }

.challenge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chal-list { margin: 28px 0 0; }
.chal-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  align-items: flex-start;
}
.chal-list li:last-child { border-bottom: none; }
.chal-icon { font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.chal-list strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.chal-list span   { font-size: 14px; color: var(--muted); }

.chal-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.chal-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}
.chal-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(58,180,242,.1);
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.chal-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.chal-form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.chal-form-card .fg label { color: var(--navy); }
.chal-form-card .fg input {
  background: var(--off);
  border-color: var(--border);
  color: var(--navy);
}
.chal-form-card .fg input::placeholder { color: var(--muted); }
.chal-form-card .fg input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(58,180,242,.12);
  color: var(--navy);
}

.chal-err {
  display: none;
  padding: 11px 16px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}
.chal-err.visible { display: block; }

.chal-nosite {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.chal-nosite a { color: var(--blue-2); font-weight: 700; }
.chal-nosite a:hover { text-decoration: underline; }

/* ---------- TRUST SECTION ---------- */
.trust-section { background: var(--white); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.trust-card {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tc-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 900;
  color: rgba(58,180,242,.2);
  line-height: 1;
  margin-bottom: 12px;
}
.trust-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.trust-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

.urgency-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.urg-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.urg-pulse {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse 1.8s ease infinite;
}
.urg-left strong { display: block; color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.urg-left p { font-size: 14px; color: rgba(255,255,255,.55); }

/* ---------- SUPPORT SECTION ---------- */
.support-section { background: var(--off); }
.support-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.support-icon-wrap { font-size: 56px; margin-bottom: 16px; }
.support-inner .section-h2 { margin-bottom: 12px; }
.support-inner .section-p  { max-width: 100%; margin: 0 auto 32px; }

.support-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.support-wa, .support-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.support-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.support-wa:hover  { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.45); }
.support-email {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.support-email:hover { border-color: var(--blue); color: var(--blue-2); transform: translateY(-3px); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer a { color: rgba(255,255,255,.6); }
.footer a:hover { color: var(--blue); }

/* ---------- FLOATING BUTTON ---------- */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  z-index: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37,211,102,.6);
}
.fab-tip {
  position: absolute;
  right: 66px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.fab:hover .fab-tip { opacity: 1; transform: translateX(0); }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-domain-preview { display: none; }
  .offer-layout { grid-template-columns: 1fr; gap: 40px; }
  .offer-text { position: static; }
  .challenge-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-btn { display: none; }
  .burger { display: flex; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 90px 20px 50px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .cta-primary,
  .hero-actions .cta-ghost { width: 100%; text-align: center; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 72px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .offer-cards { grid-template-columns: 1fr; }
  .compare-wrap { padding: 24px 20px; }
  .ct-head, .ct-row { font-size: 12px; padding: 10px 12px; }
  .order-card { padding: 28px 20px; }
  .chal-form-card { padding: 28px 20px; }
  .urgency-strip { flex-direction: column; text-align: center; }
  .urgency-strip .cta-primary { width: 100%; }
  .urg-left { flex-direction: column; text-align: center; gap: 10px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .flow-steps { gap: 6px; font-size: 11px; }
  .fs-line { max-width: 20px; }
  .hero-proof { gap: 12px; }
  .proof-sep { display: none; }
}
