/* ============================================================
   VerifiCar — premium static site
   Archetype: Glassmorphism Modern
   ============================================================ */

:root {
  --bg:        #f4f6fb;
  --bg-2:      #e6ecf6;
  --ink:       #0f1e3a;
  --ink-soft:  #1f3358;
  --ink-mute:  #5a6b8a;
  --paper:     #ffffff;
  --glass:     rgba(255,255,255,0.60);
  --glass-strong: rgba(255,255,255,0.78);
  --glass-border: rgba(255,255,255,0.7);
  --line:      rgba(15,30,58,0.10);

  --accent:        #2563eb;   /* royal blue (primary) */
  --accent-2:      #0ea5e9;   /* sky blue */
  --accent-3:      #1e40af;   /* deep navy */
  --accent-green:  #059669;   /* trust green */
  --accent-green-soft: #d1fae5;
  --accent-lilac:  #8b5cf6;   /* lilac */
  --accent-lilac-soft: #ede9fe;
  --ok:            #10b981;
  --warn:          #f59e0b;

  --nav-h:     72px;
  --r-sm:      10px;
  --r:         16px;
  --r-lg:      24px;
  --r-xl:      32px;

  --ease-out:  cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.4,.2,.2,1);

  --shadow-sm: 0 1px 2px rgba(15,30,58,.06), 0 1px 6px rgba(15,30,58,.04);
  --shadow:    0 6px 24px rgba(15,30,58,.08), 0 2px 6px rgba(15,30,58,.04);
  --shadow-lg: 0 24px 60px rgba(15,30,58,.18), 0 8px 20px rgba(15,30,58,.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ------------ Layout ------------ */
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
@media (min-width: 900px) {
  .container { width: min(1180px, calc(100% - 80px)); }
}

section {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0;
  z-index: 1;
}

/* ------------ Splash ------------ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f4f6fb 0%, #e8edf7 100%);
  transition: opacity 0.6s ease, visibility 0s linear 0s;
}
.splash.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}
.splash-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Fraunces", "Inter", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  animation: splashFadeIn 0.5s ease both;
}
.splash-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  animation: splashPulse 1.4s ease-in-out infinite;
}
.splash-name {
  display: inline-flex;
  align-items: baseline;
}
@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@keyframes splashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); transform: scale(1); }
  50%      { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .splash-mark, .splash-dot { animation: none; }
  .splash { transition: opacity 0.2s ease; }
}

/* ------------ Mesh BG ------------ */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.mesh-blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  filter: blur(90px) saturate(140%);
  opacity: 0.55;
  will-change: transform;
}
.mesh-blob-1 { background: #bfdbfe; top: -15%; left: -15%; animation: drift1 22s ease-in-out infinite; }
.mesh-blob-2 { background: #ddd6fe; top: 10%; right: -20%; animation: drift2 28s ease-in-out infinite; } /* lilac */
.mesh-blob-3 { background: #a7f3d0; bottom: -25%; left: 10%; animation: drift3 26s ease-in-out infinite; } /* green */
.mesh-blob-4 { background: #a5f3fc; bottom: -10%; right: -10%; animation: drift4 30s ease-in-out infinite; }

@keyframes drift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(8vw,5vw) scale(1.1); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-6vw,4vw) scale(1.15); }
}
@keyframes drift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(5vw,-4vw) scale(1.08); }
}
@keyframes drift4 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-7vw,-6vw) scale(1.12); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ------------ Glass ------------ */
.glass {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
@supports not (backdrop-filter: blur(1px)) {
  .glass { background: rgba(255,255,255,0.92); }
}

/* ------------ Nav ------------ */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  height: var(--nav-h);
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 50;
  border-radius: 999px;
  transition: top .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.nav.is-scrolled {
  top: 8px;
  box-shadow: var(--shadow-lg);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", "Inter", serif;
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1;
}
.nav-logo { width: 38px; height: 38px; flex-shrink: 0; }
.nav-brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.brand-prefix {
  font-weight: 500;
  color: var(--ink);
}
.brand-accent {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 1px;
}
@media (max-width: 640px) {
  .nav-brand { font-size: 1.3rem; gap: 10px; }
  .nav-logo { width: 32px; height: 32px; }
}
.nav-links {
  margin-left: auto;
  display: none;
  gap: 22px;
  font-size: .94rem;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding: 4px 2px;
  transition: color .2s var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
@media (min-width: 860px) {
  .nav-links { display: inline-flex; }
}
.nav-cta { padding: 9px 16px; font-size: .9rem; }
@media (max-width: 540px) {
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px; }
}

/* ------------ Buttons ------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -0.005em;
  border: 0;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s, color .25s;
  white-space: nowrap;
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 50%, var(--accent-2) 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: white;
  box-shadow: 0 10px 24px rgba(37,99,235,.32), 0 4px 8px rgba(14,165,233,.20);
}
.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 14px 32px rgba(37,99,235,.42), 0 6px 12px rgba(14,165,233,.28);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.8);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: white;
  border-color: rgba(15,30,58,0.2);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ------------ Hero ------------ */
.hero {
  padding-top: clamp(140px, 17vh, 200px);
  padding-bottom: clamp(60px, 9vw, 110px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 38%, rgba(255,255,255,0.35) 62%, rgba(255,255,255,0.05) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 60%, var(--bg) 100%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 55%, rgba(255,255,255,0.55) 80%, var(--bg) 100%);
  }
}
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.kicker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}
.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 22px 0 18px;
  color: var(--ink);
  text-wrap: balance;
  max-width: 16ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-lilac) 70%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 30px;
}
/* Prominent form */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 22px;
  max-width: 540px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 22px;
  box-shadow:
    0 24px 48px rgba(15,30,58,0.10),
    0 6px 14px rgba(15,30,58,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.form-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.form-headline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-lilac));
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.form-field-major {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label-major {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.form-field-major input,
.form-field-major select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid #d6dcea;
  border-radius: 12px;
  font: inherit;
  font-size: 1.02rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
  font-weight: 500;
}
.form-field-major input::placeholder {
  color: #9aa3b5;
  font-weight: 400;
}
.form-field-major input:hover,
.form-field-major select:hover {
  border-color: #b9c2d6;
  background: #fbfcfe;
}
.form-field-major input:focus,
.form-field-major select:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}
.form-field-major input:invalid:not(:placeholder-shown) {
  border-color: #f87171;
  background: #fff5f5;
}
.form-hint {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: -2px;
  line-height: 1.4;
}
.form-hint a { color: var(--accent); text-decoration: none; }
.form-hint a:hover { text-decoration: underline; text-underline-offset: 3px; }

.form-field-major input.input-error,
.form-field-major select.input-error {
  border-color: #ef4444;
  background: #fff5f5;
  animation: inputShake 0.4s var(--ease-out);
}
.form-hint-error {
  color: #ef4444 !important;
  font-weight: 500;
}
@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
}

/* Select wrapper for custom caret */
.select-wrap {
  position: relative;
}
.select-wrap select {
  padding-right: 44px;
  cursor: pointer;
}
.select-caret {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 14px;
  height: 10px;
  color: var(--ink-soft);
  pointer-events: none;
  transform: translateY(-50%);
  transition: color .2s, transform .25s var(--ease-out);
}
.select-wrap select:focus + .select-caret {
  color: var(--accent);
  transform: translateY(-50%) rotate(180deg);
}

.form-cta-major {
  width: 100%;
  justify-content: center;
  padding: 16px 22px;
  font-size: 1.05rem;
  margin-top: 4px;
  letter-spacing: -0.005em;
}
.form-cta-major.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 540px) {
  .hero-form { padding: 18px 16px; gap: 12px; }
  .form-headline { font-size: 1rem; }
  .form-field-major input,
  .form-field-major select { padding: 13px 14px; font-size: 1rem; }
  .form-cta-major { padding: 15px 18px; }
}

.hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.trust-item span {
  font-size: .82rem;
  color: var(--ink-mute);
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}
@media (max-width: 480px) {
  .trust-divider { display: none; }
}

/* Hero illustration */
.hero-illustration {
  display: none;
  position: absolute;
  right: max(40px, calc(50% - 560px));
  top: 50%;
  transform: translateY(-46%);
  width: 460px;
  height: 520px;
  pointer-events: none;
}
@media (min-width: 1100px) {
  .hero-illustration { display: block; }
}
/* Real photo in hero */
.hero-photo {
  position: absolute;
  top: 8%;
  left: -10px;
  width: 380px;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(15,30,58,0.20),
    0 8px 16px rgba(15,30,58,0.10);
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(139,92,246,0.10));
  animation: heroPhoto 9s ease-in-out infinite;
  z-index: 0;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.hero-photo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 9px;
  background: rgba(16,185,129,0.96);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(16,185,129,0.35);
}
.hero-photo-badge svg {
  width: 14px; height: 14px;
}
@keyframes heroPhoto {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-card {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 290px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--r-lg);
  transform: rotate(-2deg);
  z-index: 2;
  font-size: 0.94rem;
}
.hero-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.hero-card-tag {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.hero-card-stamp {
  padding: 4px 8px;
  border: 1.5px solid var(--ok);
  border-radius: 6px;
  color: var(--ok);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: rotate(-6deg);
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--ink-soft);
}
.hero-card-row strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-card-row.ok strong { color: var(--ok); }
.hero-card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ok);
  font-weight: 600;
  font-size: .9rem;
}
.hero-card-foot svg { width: 18px; height: 18px; }

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.chip-1 { top: 5%; right: -20px; }
.chip-2 { bottom: 28%; left: -40px; }
.chip-3 { bottom: 4%; right: -10px; }
.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ok);
}
.chip-dot.warn { background: var(--warn); }

.float {
  animation: float 7s ease-in-out infinite;
}
.float-slow {
  animation: float 11s ease-in-out infinite;
}
.float-slow.chip-2 { animation-delay: -3s; }
.float-slow.chip-3 { animation-delay: -6s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(-3deg); }
}
.hero-chip.float-slow { animation-name: floatChip; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ------------ Section titles ------------ */
.section-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 18px 0 16px;
  text-wrap: balance;
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-lilac) 70%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 60ch;
}

/* ------------ Why grid ------------ */
.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.why-card {
  padding: 24px 22px 22px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(14,165,233,.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-2);
}
.why-ico svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.why-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.55;
}

/* ------------ Trust strip (real photos) ------------ */
.trust-strip { padding: clamp(40px, 6vw, 80px) 0; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 760px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
.trust-photo {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15,30,58,0.14), 0 4px 10px rgba(15,30,58,0.06);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(14,165,233,0.10));
}
.trust-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15,30,58,0.18), 0 6px 12px rgba(15,30,58,0.08);
}
.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out);
}
.trust-photo:hover img { transform: scale(1.04); }
.trust-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 22px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(15,30,58,0.85) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-photo-kicker {
  font-size: .78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 500;
}
.trust-photo figcaption strong {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.3;
}
/* Accent stripes per card */
.trust-photo::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--accent);
  z-index: 1;
}
.trust-photo-lilac::before { background: var(--accent-lilac); }
.trust-photo-green::before { background: var(--accent-green); }

/* ------------ Informes (plans) ------------ */
.informes-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 820px) {
  .informes-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
}
.plan {
  position: relative;
  padding: 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.plan-featured {
  background: linear-gradient(180deg, rgba(255,122,89,0.10), rgba(255,255,255,0.75) 60%);
  border: 1.5px solid rgba(255,122,89,0.35);
  transform: scale(1.02);
}
@media (min-width: 820px) {
  .plan-featured { transform: scale(1.04); }
  .plan-featured:hover { transform: translateY(-5px) scale(1.04); }
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: linear-gradient(120deg, var(--accent), var(--accent-lilac));
  color: white;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(139,92,246,.40);
}
.plan-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.plan-ico svg { width: 36px; height: 36px; }

.plan-head { padding-bottom: 4px; }
.plan-name {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.plan-tag {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
}
.plan-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.plan-amount {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.plan-currency {
  font-size: 1.4rem;
  font-weight: 500;
  vertical-align: top;
  margin-right: 2px;
  color: var(--ink-soft);
}
.plan-note {
  font-size: .82rem;
  color: var(--ink-mute);
}
.plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li {
  position: relative;
  padding-left: 26px;
  font-size: .94rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,122,89,.18), rgba(99,102,241,.18)),
    white;
}
.plan-features li::after {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 9px; height: 5px;
  border-left: 1.8px solid var(--accent-2);
  border-bottom: 1.8px solid var(--accent-2);
  transform: rotate(-45deg);
}
.plan-cta {
  width: 100%;
  justify-content: center;
}

.informes-foot {
  margin-top: 32px;
  text-align: center;
  font-size: .98rem;
  color: var(--ink-soft);
}
.informes-foot a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ------------ How it works ------------ */
.steps {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 740px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.step {
  padding: 26px 22px 24px;
  position: relative;
}
.step-num {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 500;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-lilac) 70%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ------------ Quote ------------ */
.quote-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 40px 36px;
  text-align: center;
  position: relative;
}
.quote-mark {
  width: 36px; height: 36px;
  margin: 0 auto 14px;
  color: var(--accent);
  opacity: 0.7;
}
.quote-card blockquote {
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .92rem;
}
.quote-figcaption {
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 14px !important;
  text-align: left;
}
.quote-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: 0 4px 14px rgba(15,30,58,0.18);
  background: linear-gradient(135deg, var(--accent), var(--accent-lilac));
}
.quote-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote-card figcaption strong { color: var(--ink); font-weight: 600; }
.quote-card figcaption span { color: var(--ink-mute); }

/* ------------ FAQ ------------ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 920px) {
  .faq-wrap { grid-template-columns: 1fr 1.4fr; gap: 60px; }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  padding: 0;
  overflow: hidden;
  transition: box-shadow .25s var(--ease-out);
}
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 22px; height: 22px;
  flex-shrink: 0;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 12px no-repeat;
  transition: transform .35s var(--ease-out);
  color: var(--ink-soft);
}
.faq-item[open] summary::after {
  background: linear-gradient(currentColor, currentColor) center / 12px 1.5px no-repeat;
  transform: rotate(180deg);
}
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
}
.faq-item p a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ------------ CTA final ------------ */
.cta-card {
  padding: clamp(34px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255,122,89,0.10), rgba(99,102,241,0.10));
}
.cta-card .kicker { background: rgba(255,255,255,0.85); }
.cta-card .section-title { margin: 14px 0 0; max-width: 22ch; }
.cta-btn { padding: 16px 28px; font-size: 1rem; }

/* ------------ Footer ------------ */
.footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}
.footer-tag {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: .92rem;
  max-width: 26ch;
  line-height: 1.5;
}
.footer-col h4 {
  margin: 0 0 16px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.footer-col a, .footer-col span {
  display: block;
  margin-bottom: 8px;
  font-size: .94rem;
  color: var(--ink-soft);
  transition: color .2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-muted { color: var(--ink-mute); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  font-size: .82rem;
  color: var(--ink-mute);
}

/* Inline footnote asterisk */
.asterisk {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-left: 1px;
}
.asterisk:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Footer disclaimer */
.footer-disclaimer {
  margin: 28px auto 0;
  padding-top: 22px;
  font-size: .82rem;
  color: var(--ink-mute);
  font-style: italic;
  max-width: 920px;
  line-height: 1.55;
  border-top: 1px solid var(--line);
}

/* Footer Argentina mark */
.footer-argentina {
  margin: 22px auto 0;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 520px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ar-sol {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}
.ar-flag {
  width: 78px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(15,30,58,0.18), 0 1px 2px rgba(15,30,58,0.10);
  overflow: hidden;
}
.ar-divider {
  width: 1px;
  height: 38px;
  background: var(--line);
}
.ar-mark {
  display: flex;
  flex-direction: column;
}
.ar-word {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-siz