/* ===========================================================
   Nexentrix IT Services — Premium redesign
   Cohesive design system + 3D interaction layer
   =========================================================== */

:root {
  /* Brand */
  --brand: #2f6bff;
  --brand-strong: #1d4ed8;
  --brand-bright: #4f86ff;
  --cyan: #28d7f0;
  --violet: #6c5cff;
  --green: #16c47f;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f5f8ff;
  --bg-tint: #eaf1ff;
  --navy: #060a1a;
  --navy-2: #0c1430;
  --navy-3: #111c40;

  /* Ink */
  --ink: #0a1430;
  --ink-soft: #58637e;
  --ink-faint: #8a94ad;
  --line: #e4ebf7;
  --line-strong: #cdd9f0;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #4f86ff 0%, #2f6bff 46%, #6c5cff 100%);
  --grad-cyan: linear-gradient(135deg, #28d7f0, #2f6bff);
  --grad-dark: linear-gradient(160deg, #0a1130 0%, #0c1738 48%, #070c20 100%);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(10, 20, 48, 0.06);
  --shadow: 0 14px 40px rgba(18, 38, 90, 0.1);
  --shadow-lg: 0 30px 70px rgba(18, 38, 90, 0.16);
  --shadow-float: 0 40px 90px rgba(15, 30, 80, 0.28);
  --glow-brand: 0 18px 50px rgba(47, 107, 255, 0.42);
  --glow-cyan: 0 0 40px rgba(40, 215, 240, 0.35);

  --r-xs: 10px;
  --r-sm: 14px;
  --r: 18px;
  --r-lg: 26px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  color: #fff;
  background: var(--brand);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--brand);
  border-radius: var(--r-xs);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(8, 13, 33, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 180px;
}

.brand-logo {
  width: clamp(168px, 14vw, 198px);
  height: 52px;
  object-fit: contain;
  object-position: left center;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.6rem;
  flex: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
  transition: color 200ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

/* ---------- Buttons ---------- */
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease),
    background 240ms var(--ease),
    border-color 240ms var(--ease),
    filter 240ms var(--ease);
}

.button-primary {
  color: #fff;
  background: var(--grad-brand);
  background-size: 160% 160%;
  box-shadow: var(--glow-brand), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(47, 107, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  filter: brightness(1.05);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

/* Light-context secondary (on white sections) */
.section .button-secondary {
  color: var(--brand-strong);
  border-color: var(--line-strong);
  background: #fff;
}

.section .button-secondary:hover {
  border-color: var(--brand);
  background: var(--bg-tint);
}

.magnetic-cta {
  overflow: hidden;
}

.magnetic-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.45), transparent 80%);
  transform: translateX(-130%);
  animation: sheen 4s var(--ease) infinite;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0 64px;
  color: #fff;
  background: var(--grad-dark);
  perspective: 1400px;
}

/* animated aurora orbs */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.9), transparent 65%);
  animation: float-orb 13s ease-in-out infinite;
}

.hero::after {
  width: 520px;
  height: 520px;
  right: -140px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(108, 92, 255, 0.75), transparent 65%);
  animation: float-orb 16s ease-in-out infinite reverse;
}

/* fine grid + diagonal sheen */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy,
.dashboard-card {
  min-width: 0;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 30px;
  padding: 0 0.95rem;
  margin: 0 0 1.1rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  color: var(--brand-strong);
  background: var(--bg-tint);
}

.hero .pill {
  color: #bcd3ff;
  background: rgba(47, 107, 255, 0.16);
  border: 1px solid rgba(47, 107, 255, 0.34);
  box-shadow: inset 0 0 20px rgba(47, 107, 255, 0.18);
}

.hero .pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.9rem, 5.6vw, 4.9rem);
  line-height: 1.02;
  font-weight: 800;
  text-wrap: balance;
}

.hero h1 span {
  background: linear-gradient(120deg, #7fb0ff 0%, #28d7f0 55%, #a99bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mobile-break {
  display: none;
}

.hero-copy p:not(.pill) {
  max-width: 560px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

/* ---------- Dashboard card (3D float) ---------- */
.dashboard-card {
  position: relative;
  padding: 1.6rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  transform-style: preserve-3d;
  transform:
    perspective(1200px)
    rotateX(var(--ry, 0deg))
    rotateY(var(--rx, 0deg));
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
  animation: float-card 7s ease-in-out infinite;
}

.dashboard-card:hover {
  animation-play-state: paused;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--grad-cyan);
}

.dashboard-card > *,
.tilt-inner > * {
  transform: translateZ(0.01px);
}

.dashboard-head,
.tracker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-head strong {
  font-size: 1.02rem;
}

.dashboard-head span,
.tracker-head span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.metric-grid div {
  padding: 0.95rem;
  background: linear-gradient(170deg, #fbfdff, #eef4ff);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}

.metric-grid span,
.progress-block span,
.metric-grid small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.metric-grid strong,
.progress-block strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.45rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand-strong);
}

.progress-block {
  margin-top: 1.2rem;
}

.progress-bar {
  height: 10px;
  margin: 0.55rem 0 0.3rem;
  overflow: hidden;
  background: #e7efff;
  border-radius: 999px;
}

.progress-bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--grad-cyan);
  box-shadow: 0 0 22px rgba(40, 215, 240, 0.5);
}

.mini-table {
  display: grid;
  gap: 0.15rem;
  margin-top: 1.2rem;
  font-size: 0.78rem;
}

.table-row,
.tracker-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.8fr 0.6fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}

.table-row:not(.table-title):hover,
.tracker-row:not(.tracker-title):hover {
  background: rgba(47, 107, 255, 0.04);
}

.table-row > *,
.tracker-row > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.table-title,
.tracker-title {
  color: var(--ink-faint);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status {
  justify-self: start;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.applied {
  color: #0c7a43;
  background: #e2f8ee;
}

.interview {
  color: #1d4ed8;
  background: #e6efff;
}

.rejected {
  color: #9a6700;
  background: #fff3d1;
}

.dashboard-card > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.88rem;
}

.dashboard-card > a::after {
  content: "→";
  transition: transform 220ms var(--ease);
}

.dashboard-card > a:hover::after {
  transform: translateX(4px);
}

/* ---------- Hero proof strip ---------- */
.hero-proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 0.9rem;
  margin-top: 3.4rem;
}

.hero-proof div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.4rem 0.8rem;
  align-items: center;
  min-height: 74px;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    background 260ms var(--ease);
}

.hero-proof div::before {
  content: "";
  width: 38px;
  height: 38px;
  grid-row: 1 / span 2;
  border-radius: 11px;
  background: var(--grad-cyan);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 18px rgba(40, 130, 255, 0.4);
}

.hero-proof div:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 215, 240, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof strong {
  color: #fff;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.05;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(72px, 8.5vw, 116px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.07;
  font-weight: 800;
}

.section-heading p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.pricing-section,
.included-section,
.faq-section {
  background: linear-gradient(180deg, var(--bg-soft), #fff);
}

.process-section,
.tracking-section,
.choice-section,
.data-section {
  background: #fff;
}

/* shared card surface */
.price-card,
.included-card,
.process-card,
.tracker-card,
.support-grid article,
.questions-card,
.payment-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 980px;
  margin: 0 auto;
  perspective: 1600px;
}

.price-card {
  position: relative;
  padding: 2.2rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 350ms var(--ease),
    border-color 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.price-card::after,
.process-card::after,
.included-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

.price-card:hover,
.process-card:hover,
.included-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.price-card:hover::after,
.process-card:hover::after,
.included-card:hover::after {
  opacity: 1;
}

.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 70px rgba(47, 107, 255, 0.22);
  padding-top: 2.6rem;
}

.popular {
  position: absolute;
  right: 1.6rem;
  top: 1.1rem;
  padding: 0.38rem 0.9rem;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--glow-brand);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-label {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price {
  margin-top: 0.85rem;
  font-size: 3.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price span {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--ink-soft);
}

.price small {
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 600;
}

.price-card > p:not(.plan-label) {
  color: var(--ink-soft);
  margin: 0.45rem 0 0;
}

.save-line {
  margin-top: 0.75rem;
  color: #0c9c63;
  font-weight: 700;
}

.save-line s {
  margin-right: 0.55rem;
  color: var(--ink-faint);
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.price-card li,
.cta-panel li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink-soft);
}

.price-card li::before,
.cta-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background:
    var(--grad-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 10-10'/></svg>") center / 70% no-repeat,
    linear-gradient(#000, #000);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 10-10'/></svg>") center / 70% no-repeat;
}

.cta-panel li::before {
  background: var(--grad-cyan);
}

.price-card .button {
  width: 100%;
}

.price-card > small {
  display: block;
  margin-top: 1rem;
  color: var(--ink-faint);
  text-align: center;
}

.results-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 1px;
  margin-top: 2rem;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}

.results-strip div {
  min-height: 116px;
  padding: 1.3rem;
  background: var(--grad-dark);
}

.results-strip strong {
  display: block;
  font-size: 1.7rem;
  background: linear-gradient(120deg, #8fb6ff, #28d7f0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8fb6ff;
}

.results-strip span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  perspective: 1600px;
}

.process-card,
.included-card {
  position: relative;
  padding: 1.6rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease), border-color 350ms var(--ease);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--grad-brand);
  border-radius: 13px;
  font-weight: 800;
  box-shadow: var(--glow-brand);
}

.process-card h3,
.included-card h3,
.choice-list h3,
.questions-card h3,
.tracker-head h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.process-card p,
.included-card p,
.choice-list p,
.questions-card p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

/* ---------- Included ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.included-card {
  min-height: 214px;
  text-align: center;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  color: var(--brand-strong);
  background: linear-gradient(170deg, #fff, #eaf2ff);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 #fff, 0 12px 26px rgba(47, 107, 255, 0.14);
  transition: transform 350ms var(--ease);
}

.included-card:hover .icon-box {
  transform: translateY(-4px) scale(1.05);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.6rem;
  padding: 1.8rem 2rem;
  color: #fff;
  background: var(--grad-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.quality-callout h3 {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
}

.quality-callout p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.quality-callout span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cyan);
}

.quality-callout span svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 14px rgba(40, 215, 240, 0.5));
}

/* ---------- Tracking ---------- */
.tracker-card {
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tracker-head {
  padding: 1.3rem 1.5rem;
  background: linear-gradient(180deg, #fff, #f5f9ff);
  border-bottom: 1px solid var(--line);
}

.tracker-head span {
  color: #fff;
  background: var(--grad-brand);
  border-radius: 8px;
  padding: 0.38rem 0.65rem;
  font-weight: 700;
}

.tracker-table {
  overflow-x: auto;
}

.tracker-row {
  grid-template-columns: 1fr 1.2fr 1fr 0.85fr 0.8fr;
  min-width: 760px;
  padding: 0.85rem 1.5rem;
  font-size: 0.88rem;
}

.tracker-title {
  color: #fff;
  background: var(--navy-2);
  border-bottom: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.6rem;
}

.support-grid article {
  min-height: 116px;
  padding: 1.35rem;
  text-align: center;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.support-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.support-grid strong,
.support-grid span {
  display: block;
}

.support-grid span {
  margin-top: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* ---------- Choice ---------- */
.choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.choice-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.choice-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}

.choice-list article > span {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-brand);
  box-shadow: var(--glow-brand);
}

.choice-list article > span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 10-10'/></svg>") center / 55% no-repeat;
}

.cta-panel {
  position: relative;
  min-height: 390px;
  padding: 2.4rem;
  overflow: hidden;
  color: #fff;
  background: var(--grad-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.5), transparent 65%);
  filter: blur(40px);
}

.cta-panel h2 {
  position: relative;
  max-width: 480px;
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
}

.cta-panel p {
  position: relative;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel ul {
  position: relative;
  display: grid;
  gap: 0.55rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.cta-panel li {
  color: rgba(255, 255, 255, 0.85);
}

.cta-panel small {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* decorative CTA illustration */
.cta-art {
  position: absolute;
  right: 1.8rem;
  bottom: 1.6rem;
  width: 200px;
  height: 200px;
  opacity: 0.95;
  animation: float-card 8s ease-in-out infinite;
}

.cta-art svg {
  width: 100%;
  height: 100%;
}

/* ---------- Data ---------- */
.data-card {
  padding: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  background: var(--grad-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.data-card h2 {
  margin: 0 0 2rem;
  text-align: center;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.data-grid article {
  padding: 1.5rem;
  text-align: center;
  background: rgba(8, 14, 34, 0.72);
}

.data-grid strong {
  font-size: 1.05rem;
}

.data-grid p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 920px;
  margin: 0 auto;
}

details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

details:hover,
details[open] {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
  padding: 0 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--grad-brand);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 280ms var(--ease);
}

details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.questions-card {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 2rem;
  align-items: center;
  max-width: 950px;
  margin: 3rem auto 0;
  padding: 2.2rem;
  color: #fff;
  background: var(--grad-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.questions-card h3 {
  color: #fff;
  font-size: 1.5rem;
}

.questions-card p {
  color: rgba(255, 255, 255, 0.72);
}

.support-illustration {
  position: relative;
  display: grid;
  place-items: center;
  height: 180px;
}

.support-illustration svg {
  width: 180px;
  height: 180px;
}

.payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  max-width: 950px;
  margin: 1.6rem auto 0;
  padding: 1.4rem;
}

.payment-strip span {
  width: 100%;
  text-align: center;
  color: var(--ink);
  font-weight: 700;
}

.payment-strip strong {
  color: var(--brand-strong);
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 72px 0 30px;
  color: #fff;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(150px, 0.55fr));
  gap: 2.2rem;
}

.site-footer p {
  max-width: 440px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer h3 {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  font-style: normal;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.66);
  transition: color 200ms var(--ease);
}

.site-footer nav a:hover,
.site-footer address a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.social-row a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.social-row a:hover {
  color: #fff;
  background: var(--grad-brand);
  border-color: transparent;
  transform: translateY(-3px);
}

.social-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.copyright {
  margin-top: 3.2rem;
  padding-top: 1.6rem;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #0fae55);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(32, 196, 99, 0.45);
  transition: transform 240ms var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  border-radius: inherit;
  animation: whatsappPulse 2.3s var(--ease) infinite;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ---------- Reveal on scroll (depth) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

*:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.6);
  outline-offset: 3px;
}

/* ---------- Keyframes ---------- */
@keyframes sheen {
  0% { transform: translateX(-130%); }
  45%, 100% { transform: translateX(130%); }
}

@keyframes whatsappPulse {
  from { opacity: 0.85; transform: scale(0.82); }
  to { opacity: 0; transform: scale(1.3); }
}

@keyframes float-card {
  0%, 100% { transform: perspective(1200px) translateY(0) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)); }
  50% { transform: perspective(1200px) translateY(-12px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)); }
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .hero-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    max-width: 680px;
    animation: none;
    transform: none;
  }

  .process-grid,
  .included-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100%, 360px);
    padding-inline: 14px;
    margin-inline: auto;
  }

  .site-header .button {
    flex: 0 0 48px;
    min-width: 48px;
    width: 48px;
    padding: 0;
    font-size: 0;
    border-radius: 50%;
  }

  .site-header .button::after {
    content: "→";
    font-size: 1.15rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 176px;
    height: 46px;
    padding: 0.26rem 0.42rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy,
  .dashboard-card {
    width: 100%;
    max-width: 332px;
  }

  .hero h1 {
    max-width: 332px;
    font-size: clamp(2.5rem, 11vw, 3.4rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .mobile-break {
    display: block;
  }

  .hero-copy p:not(.pill) {
    max-width: 332px;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions .button {
    width: 100%;
  }

  .metric-grid,
  .pricing-grid,
  .included-grid,
  .data-grid,
  .hero-proof,
  .results-strip,
  .process-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    padding: 1.2rem;
  }

  .table-row {
    grid-template-columns: 1fr 1fr;
  }

  .table-title {
    display: none;
  }

  .price-card {
    padding: 1.6rem;
  }

  .price-card.featured {
    padding-top: 2.8rem;
  }

  .quality-callout {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .person-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1.5rem;
  }

  .questions-card {
    grid-template-columns: 1fr;
  }

  .support-illustration {
    display: none;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .dashboard-card {
    transform: none;
  }
}
