/* =================================================================
   ReviewCroc — One Page Site
   Brand-faithful purple/indigo with yellow accent CTAs.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --indigo-50: #eef0fb;
  --indigo-100: #dde1f5;
  --indigo-200: #b8bfe8;
  --indigo-300: #8d96d6;
  --indigo-400: #635dc2;
  --indigo-500: #4a3fc4;
  --indigo-600: #3d33ad;
  --indigo-700: #2f2886;
  --indigo-800: #221c63;
  --indigo-900: #15103f;

  --yellow-300: #ffe07a;
  --yellow-400: #fdc021;
  --yellow-500: #f5a623;

  --ink-900: #15103f;
  --ink-800: #1a1a2e;
  --ink-700: #2a2a40;
  --ink-500: #6b6b80;
  --ink-400: #9094a8;
  --ink-300: #c4c7d4;
  --ink-200: #e5e7f5;
  --ink-100: #f3f4fa;
  --ink-50: #f7f7f9;

  --bg: #ffffff;
  --bg-muted: var(--ink-50);

  --shadow-sm: 0 2px 6px rgba(21, 16, 63, 0.06);
  --shadow-md: 0 10px 30px rgba(21, 16, 63, 0.08);
  --shadow-lg: 0 24px 60px rgba(21, 16, 63, 0.12);
  --shadow-xl: 0 36px 80px rgba(21, 16, 63, 0.18);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink-900); }
p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--yellow-400); color: var(--ink-900); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section__head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section__head--light { color: #fff; }
.section__head--light .section__title { color: #fff; }
.section__head--light .section__sub { color: rgba(255,255,255,0.8); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-500);
  margin: 0 0 0.75rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: var(--yellow-400); }

.section__title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.section__sub {
  color: var(--ink-500);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn--accent {
  background: var(--yellow-400);
  color: var(--ink-900);
  box-shadow: 0 8px 20px rgba(253, 192, 33, 0.35);
}
.btn--accent:hover {
  background: var(--yellow-300);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(253, 192, 33, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--indigo-500);
  border-color: var(--indigo-200);
}
.btn--outline:hover {
  background: var(--indigo-50);
  border-color: var(--indigo-400);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ---------- Nav (overlay on hero) ---------- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__inner {
  color: #fff;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.9rem;
}

.nav__logo img {
  width: 200px;
  height: auto;
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  color: #fff;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--yellow-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: var(--yellow-400); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__signin {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s var(--ease);
}
.nav__signin:hover { color: var(--yellow-400); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter) 1.5rem;
  gap: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--indigo-500);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav__mobile a {
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__mobile a:hover { color: var(--yellow-400); }
.nav__mobile .nav__signin { color: #fff; }
.nav__mobile .btn { margin-top: 0.75rem; color: var(--ink-900);}
.nav__mobile .btn:hover {color: var(--ink-800);}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #5b4fd1 0%, #4a3fc4 55%, #3a2f9d 100%);
  color: #fff;
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(253, 192, 33, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255, 255, 255, 0.08), transparent 60%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.8vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__title-line { display: block; }
.hero__title-accent {
  color: var(--yellow-400);
  font-style: normal;
  font-weight: 800;
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 1.5rem;
}
.hero__sub strong { color: #fff; font-weight: 600; }

.hero__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-400);
  background: rgba(253, 192, 33, 0.12);
  border: 1px solid rgba(253, 192, 33, 0.35);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__art img {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- How ---------- */
.how {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg);
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how__card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.how__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.how__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}
.how__card:hover .how__icon { transform: scale(1.05) rotate(-3deg); }
.how__icon img { width: 100%; height: 100%; }
.how__title { margin-bottom: 1.25rem !important; }
.how__lead { margin-bottom: 3rem !important; }

.how__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--ink-900);
}
.how__card p {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.6;
  text-align: center;
  text-wrap: pretty;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--indigo-500);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(253, 192, 33, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
}
.pricing .section__title,
.pricing .eyebrow { position: relative; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.plan {
  background: #fff;
  color: var(--ink-800);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan--featured { padding: 2.5rem 1.75rem; }
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan--featured {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border: 2px solid var(--yellow-400);
  transform: translateY(-18px) scale(1.08);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.plan--featured:hover { transform: translateY(-22px) scale(1.08); }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow-400);
  color: var(--ink-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(253, 192, 33, 0.4);
}

.plan__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-900);
  text-align: center;
  margin-bottom: 0.5rem;
}
.plan--featured .plan__name { font-size: 1.3rem; }
.plan__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}
.plan--featured .plan__price { font-size: 3rem; }
.plan__currency { font-size: 1.3rem; vertical-align: top; line-height: 1.6; margin-right: 2px; color: var(--ink-700); font-weight: 700; }
.plan__cents { font-size: 1.3rem; color: var(--ink-500); }

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex: 1;
}
.plan__features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.5;
}
.plan__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3a86ff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.pricing__custom {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  backdrop-filter: blur(8px);
}
.pricing__custom-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.pricing__custom p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.pricing__trust {
  margin-top: 3rem;
  text-align: center;
}
.pricing__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

/* ---------- Testimonial ---------- */
.results {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--ink-50);
}
.results__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 2.5rem;
}
.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.quote {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 1px 3px rgba(21, 16, 63, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote__logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.quote__logo svg { height: 40px; width: auto; }
.quote blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-700);
}
.quote__cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--indigo-500);
  margin-top: auto;
  transition: color 0.2s var(--ease);
}
.quote__cta:hover { color: var(--indigo-600); text-decoration: underline; }

/* ---------- Banner CTA ---------- */
.banner {
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-600));
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 90% 50%, rgba(253, 192, 33, 0.12), transparent 60%);
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
}
.banner h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: #fff;
  margin-bottom: 0.25rem;
}
.banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}
.faq__list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}
.faq__item {
  background: transparent;
}
.faq__item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--indigo-500);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.faq__item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-700);
}

/* ---------- SEO Content ---------- */
.content {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #eceef5;
}
.content__lead {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.7;
}
.content__grid {
  max-width: 820px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.content__grid > div {
  padding: 0;
  border: 0;
  background: transparent;
}
.content__grid h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--indigo-500);
  margin-bottom: 0.4rem;
}
.content__grid p {
  color: var(--ink-700);
  font-size: 0.92rem;
  line-height: 1.7;
}
.content__closer {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.7;
}
.content__title { margin-bottom: 1.5rem !important; }
.content__lead--tight { margin-bottom: 1.5rem !important; }
.content__closer--spaced { margin-top: 0.75rem !important; }

/* ---------- Contact ---------- */
.contact {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(135deg, #5b4fd1 0%, #4a3fc4 55%, #3a2f9d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 90%, rgba(253, 192, 33, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(255,255,255,0.05), transparent 60%);
}
.contact__inner {
  position: relative;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}

.contact__info { color: #fff; }
.contact__title {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.contact__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 2rem;
}
.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.contact__perk-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(253, 192, 33, 0.15);
  border-radius: 10px;
}
.contact__perks strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}
.contact__perks span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact__form {
  background: #fff;
  color: var(--ink-800);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 0.25rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 0.4rem;
}
.field label span { color: var(--yellow-500); }
.field input,
.field textarea {
  background: var(--ink-50);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
  color: var(--ink-900);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:hover,
.field textarea:hover { background: #fff; border-color: var(--ink-200); }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-400); }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 4px rgba(74, 63, 196, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.has-err input,
.field.has-err textarea {
  border-color: #ff7a7a;
  background: #fff5f5;
}
.field__err {
  font-size: 0.78rem;
  color: #d64040;
  min-height: 1.1em;
  margin-top: 0.25rem;
  font-weight: 500;
}

.contact__submit {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: var(--yellow-400);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  width: 100%;
  text-transform: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 8px 20px rgba(253, 192, 33, 0.4);
}
.contact__submit:hover {
  background: var(--yellow-300);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(253, 192, 33, 0.55);
}
.contact__arrow {
  font-size: 1.15rem;
  color: var(--ink-900);
  transition: transform 0.25s var(--ease);
  font-style: normal;
  font-weight: 700;
}
.contact__submit:hover .contact__arrow { transform: translateX(4px); }

/* ---------- Footer ---------- */
.footer {
  background: #0c0828;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
}
.footer a { color: var(--yellow-400); }
.footer a:hover { text-decoration: underline; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  background: #fff;
  color: var(--ink-900);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid #22c55e;
  min-width: 280px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.toast__icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  flex: 0 0 32px;
}
.toast strong { display: block; font-size: 0.95rem; }
.toast p { font-size: 0.82rem; color: var(--ink-500); margin: 0; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .hero__art { order: -1; max-width: 420px; margin: 0 auto; }
  .how__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .how__card { display: grid; grid-template-columns: 1fr; text-align: left; gap: 1rem 1.5rem; padding: 1.5rem; background: var(--ink-50); border-radius: var(--radius-lg); }
  .how__card h3, .how__card p { text-align: left; }
  .how__icon { margin: 0; width: 60px; height: 60px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; gap: 2rem; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.is-open { display: flex; }
  .results__grid { grid-template-columns: 1fr; }
  .faq__list { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .nav__inner { padding-block: 0.75rem; }
  .nav__logo img { width: 160px; }
  .hero { padding: 3.5rem 0 4rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .banner__inner { flex-direction: column; align-items: flex-start; }
  .section__head { margin-bottom: 2.5rem; }
  .toast { left: 16px; right: 16px; bottom: 16px; min-width: 0; }
  .field-row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.5rem 1.25rem; }
}
