/* CreaTech Innovations — sitemojo.net marketing site
   ---------------------------------------------------------------
   Palette (all text pairs verified WCAG AA, see ratios):
   paper      #F6F4EF  warm off-white page ground
   mist       #E7EDF3  alternate section ground
   ink        #22303F  body text            (12.2:1 on paper)
   muted      #4A5A6B  secondary text       ( 6.4:1 on paper, 7.1:1 on white)
   navy-900   #122A44  hero/footer/form ground
   navy-700   #1C3D5F  headings, buttons    (10.2:1 on paper)
   navy-light #E9EEF5  text on navy         (12.5:1 on navy-900)
   navy-soft  #C9D4E0  quiet text on navy   ( 9.7:1 on navy-900)
   gold       #E3B75D  brass accent         ( 7.8:1 on navy-900; navy-900 on gold 7.8:1)
   brass      #8C6A14  dark brass on light  ( 5.0:1 on white — focus rings, kickers)
   link       #155EA2  links on light       ( 6.1:1 on paper)

   Display font: Fraunces (SIL Open Font License 1.1).
   Copyright 2020 The Fraunces Project Authors
   (https://github.com/undercasetype/Fraunces). Licensed under the
   SIL OFL 1.1 — https://openfontlicense.org. Self-hosted, latin
   subset, weight 600 only (~35 KB woff2).
   --------------------------------------------------------------- */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin-600.woff2") format("woff2");
}

:root {
  --paper: #F6F4EF;
  --mist: #E7EDF3;
  --ink: #22303F;
  --muted: #4A5A6B;
  --navy-900: #122A44;
  --navy-800: #16324F;
  --navy-700: #1C3D5F;
  --navy-light: #E9EEF5;
  --navy-soft: #C9D4E0;
  --gold: #E3B75D;
  --gold-soft: #F3E3BE;
  --gold-line: #D4B36A;
  --brass: #8C6A14;
  --link: #155EA2;
  --line: #DAD5C9;
  --card-line: #D8DEE6;
  --radius: 10px;
  --shadow-soft: 0 1px 2px rgba(18, 42, 68, 0.06), 0 8px 24px rgba(18, 42, 68, 0.08);
  --shadow-lift: 0 2px 4px rgba(18, 42, 68, 0.08), 0 14px 34px rgba(18, 42, 68, 0.13);
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  /* hand-drawn brass underline stroke, reused across the site */
  --brush: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M4 10.5 C 45 4.5, 118 3.2, 196 7.6' fill='none' stroke='%23E3B75D' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  border-top: 4px solid var(--gold);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow { max-width: 760px; }

/* ---- Skip link ---- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #FFFFFF;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ---- Header ---- */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { display: block; height: 52px; width: auto; }

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-list a {
  color: var(--navy-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-list a:not(.nav-cta):hover,
.nav-list a:not(.nav-cta):focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-cta {
  display: inline-block;
  background: var(--navy-700);
  color: #FFFFFF !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav-cta:hover, .nav-cta:focus-visible { background: var(--navy-900); }

/* ---- Kickers, headings, brush strokes ---- */

.kicker {
  color: var(--brass);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.kicker-on-navy { color: var(--gold); }

h1, h2, h3, .price-num {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.h2-brush {
  position: relative;
  display: inline-block;
}

.h2-brush::after {
  content: "";
  display: block;
  width: 72px;
  height: 8px;
  margin-top: 0.45rem;
  background: var(--brush) no-repeat center / 100% 100%;
}

/* hand-drawn underline behind key hero words */
.u-brush {
  background: var(--brush) no-repeat 0 100% / 100% 0.32em;
  padding-bottom: 0.16em;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% 10%, rgba(28, 61, 95, 0.85), transparent 70%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 10px),
    var(--navy-900);
  color: var(--navy-light);
  padding: 4.5rem 0 4.75rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.12;
  color: #FFFFFF;
  max-width: 21ch;
  margin-bottom: 1.2rem;
}

.hero-sub {
  max-width: 56ch;
  font-size: 1.13rem;
  margin-bottom: 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.3rem;
}

.hero-secondary {
  color: var(--navy-light);
  font-weight: 600;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-note {
  color: var(--navy-soft);
  font-size: 0.95rem;
}

/* ---- Hero illustration: browser windows (pure CSS, decorative) ---- */

.hero-art {
  position: relative;
  padding: 1.6rem 0 0 1.6rem;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(closest-side, rgba(227, 183, 93, 0.14), transparent 72%);
  pointer-events: none;
}

.browser {
  border-radius: 12px;
  background: #FFFFFF;
}

.browser-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 3.2rem;
  bottom: 3rem;
  transform: rotate(-2.2deg);
  opacity: 0.45;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.chrome {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  background: #EDEAE2;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid #DDD8CC;
  border-radius: 12px 12px 0 0;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #C9CFD6;
  flex: none;
}

.dot-r { background: #C9756B; }
.dot-y { background: #E3B75D; }
.dot-g { background: #7FA173; }

.urlbar {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  background: #FFFFFF;
  border: 1px solid #DDD8CC;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 0.16rem 0.7rem;
  white-space: nowrap;
  overflow: hidden;
}

.urlbar-back { height: 1.1rem; }

.lock {
  flex: none;
  width: 0.6rem;
  height: 0.6rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Crect x='2' y='5' width='8' height='6' rx='1.2' fill='%234A5A6B'/%3E%3Cpath d='M4 5V3.8a2 2 0 0 1 4 0V5' fill='none' stroke='%234A5A6B' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center / contain;
}

.back-body {
  padding: 0.9rem;
  display: block;
}

.ph {
  display: block;
  background: #E2E6EB;
  border-radius: 5px;
}

.ph-nav { height: 0.9rem; margin-bottom: 0.7rem; }
.ph-hero { height: 3.4rem; margin-bottom: 0.7rem; }
.ph-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.ph-row .ph { height: 2.2rem; }

.browser-front {
  position: relative;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
  outline: 1px solid rgba(18, 42, 68, 0.3);
}

.mini-site {
  position: relative;
  overflow: hidden;
  background: #FDFCF9;
  padding: 0.9rem;
}

.mini-nav {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.mini-logo {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 3px;
  background: var(--navy-900);
  box-shadow: inset 0 0 0 2.5px var(--navy-900), inset 0 0 0 4px var(--gold);
}

.mini-links { display: flex; }

.mini-links i {
  display: inline-block;
  width: 1.55rem;
  height: 0.32rem;
  border-radius: 999px;
  background: #C4CCD5;
  margin-left: 0.45rem;
}

.mini-btn {
  margin-left: auto;
  width: 2.6rem;
  height: 0.95rem;
  border-radius: 4px;
  background: var(--gold);
}

.mini-hero {
  background: linear-gradient(120deg, var(--navy-700), var(--navy-900) 70%);
  border-radius: 6px;
  padding: 0.95rem 0.85rem 1.05rem;
  margin-bottom: 0.75rem;
}

.mini-line {
  display: block;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.45rem;
}

.mini-line.lg { width: 78%; }
.mini-line:not(.lg) { width: 52%; height: 0.4rem; background: rgba(255, 255, 255, 0.45); }

.mini-cta {
  display: block;
  width: 2.9rem;
  height: 0.9rem;
  border-radius: 4px;
  background: var(--gold);
  margin-top: 0.6rem;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.mini-card {
  background: #FFFFFF;
  border: 1px solid #E4E1D7;
  border-radius: 6px;
  padding: 0.55rem 0.5rem 0.6rem;
  box-shadow: 0 1px 2px rgba(18, 42, 68, 0.05);
}

.mc-ico {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: inset 0 0 0 2px var(--gold);
  margin-bottom: 0.45rem;
}

.mc-t {
  display: block;
  height: 0.36rem;
  width: 72%;
  border-radius: 999px;
  background: #A9B4C0;
  margin-bottom: 0.32rem;
}

.mc-l {
  display: block;
  height: 0.3rem;
  width: 100%;
  border-radius: 999px;
  background: #DFE4E9;
  margin-bottom: 0.28rem;
}

.mc-l.short { width: 62%; margin-bottom: 0; }

.watermark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.4rem;
  height: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-9deg);
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  color: rgba(18, 42, 68, 0.13);
  pointer-events: none;
  user-select: none;
}

.approve-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  background: var(--navy-900);
  padding: 0.5rem 0.8rem;
  border-radius: 0 0 12px 12px;
}

.approve-text {
  color: var(--navy-soft);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.approve-pill {
  flex: none;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

/* ---- Buttons ---- */

.button {
  display: inline-block;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.button-gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 3px 0 var(--brass), 0 10px 22px rgba(0, 0, 0, 0.18);
}

.button-gold:hover, .button-gold:focus-visible {
  background: #EFCB7E;
}

/* ---- Sections ---- */

.section { padding: 4.75rem 0; }

.section-mist {
  background:
    radial-gradient(rgba(18, 42, 68, 0.045) 1px, transparent 1.5px) 0 0 / 22px 22px,
    var(--mist);
  border-top: 1px solid #DCE3EA;
  border-bottom: 1px solid #DCE3EA;
}

.section h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--navy-700);
  margin-bottom: 1.9rem;
  line-height: 1.18;
}

.section-navy h2 { color: #FFFFFF; }

.section-intro {
  max-width: 58ch;
  margin-bottom: 2.25rem;
}

/* ---- Steps: a numbered path ---- */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 0.75rem;
}

.step-head {
  position: relative;
  margin-bottom: 1.1rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 0 var(--gold-line), var(--shadow-soft);
  color: var(--navy-700);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  padding-top: 0.1em;
}

/* dashed connecting line with arrowhead, step to step */
.step:not(:last-child) .step-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(3.4rem + 1rem);
  right: 0.9rem;
  border-top: 2px dashed var(--gold-line);
}

.step:not(:last-child) .step-head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid var(--gold-line);
  border-right: 2px solid var(--gold-line);
  transform: translateY(-58%) rotate(45deg);
}

.step h3 {
  font-size: 1.3rem;
  color: var(--navy-700);
  margin-bottom: 0.5rem;
}

.step p:last-child { color: var(--muted); }

/* ---- What's included / pricing cards ---- */

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.card {
  background: #FFFFFF;
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.price-card { padding: 0; overflow: hidden; }

.price-head {
  padding: 1.5rem 1.85rem 1.25rem;
  border-bottom: 1px solid #ECEFF3;
  background: linear-gradient(180deg, #FBFAF7, #FFFFFF);
}

.price-card .checklist { padding: 1.5rem 1.85rem 1.75rem; }

.price-card h3 {
  color: var(--navy-700);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.price-num {
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy-900);
}

.price-per {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.price-card-featured {
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-lift);
}

.price-card:not(.price-card-featured) { border-top: 4px solid var(--navy-700); }

.checklist {
  list-style: none;
}

.checklist li {
  padding-left: 1.85rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.checklist li:last-child { margin-bottom: 0; }

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.6 8.6 6.5 11.4 12.4 4.8' fill='none' stroke='%231C3D5F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 62%;
  box-shadow: inset 0 0 0 1px var(--gold-line);
}

.fine-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 68ch;
  border-left: 3px solid var(--gold-line);
  padding-left: 1rem;
}

/* ---- FAQ ---- */

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 3.5rem;
  margin-top: 0.5rem;
}

.faq-item dt {
  font-weight: 700;
  color: var(--navy-700);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.faq-item dt::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  margin-bottom: 0.55rem;
}

.faq-item dd { color: var(--ink); }

/* ---- Request form ---- */

.section-navy {
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 10px),
    var(--navy-900);
  color: var(--navy-light);
}

.request-form {
  background: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  overflow: hidden;
}

.form-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  background: linear-gradient(120deg, var(--navy-700), var(--navy-900));
  border-bottom: 3px solid var(--gold);
  padding: 1rem 2rem;
}

.form-head-title {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.form-head-sub {
  color: var(--navy-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.form-body { padding: 2rem; }

.field { margin-bottom: 1.25rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy-700);
}

.req { color: #A32A2A; }

.opt { font-weight: 400; color: var(--muted); font-size: 0.9rem; }

.field-hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #FDFCFA;
  border: 1.5px solid #9AA7B4;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
}

.field input::placeholder,
.field textarea::placeholder { color: #5D6B7A; opacity: 1; }

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 0;
  border-color: var(--brass);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(227, 183, 93, 0.32);
}

.field textarea { resize: vertical; }

/* Honeypot — hidden from humans, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 1rem 1.7rem;
  font-size: 1.12rem;
}

.form-note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* ---- Links & focus ---- */

main a:not(.button):not(.nav-cta):not(.hero-secondary) { color: var(--link); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.request-form :focus-visible { outline-color: var(--brass); }

/* ---- Footer ---- */

.site-footer {
  background: var(--navy-900);
  border-top: 1px solid #2A466A;
  color: var(--navy-soft);
  padding: 2.75rem 0;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-name {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.site-footer a { color: var(--gold); }

/* ---- Thanks page ---- */

.thanks-main {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.thanks-card {
  max-width: 640px;
  background: #FFFFFF;
  border: 1px solid var(--card-line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem 2.25rem;
}

.thanks-check {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.6 8.6 6.5 11.4 12.4 4.8' fill='none' stroke='%231C3D5F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 58%;
  box-shadow: inset 0 0 0 2px var(--gold);
  margin-bottom: 1.25rem;
}

.thanks-card h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--navy-700);
  margin-bottom: 1rem;
}

.thanks-card p { margin-bottom: 1rem; }
.thanks-card p:last-child { margin-bottom: 0; }

/* ---- Motion (hover lifts + scroll reveal) — motion-safe only ---- */

@media (prefers-reduced-motion: no-preference) {
  .button,
  .nav-cta,
  .card {
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  }

  .button-gold:hover, .button-gold:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 var(--brass), 0 14px 26px rgba(0, 0, 0, 0.2);
  }

  .button-gold:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 var(--brass), 0 6px 14px rgba(0, 0, 0, 0.18);
  }

  .nav-cta:hover, .nav-cta:focus-visible { transform: translateY(-1px); }

  .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
  .price-card-featured:hover { box-shadow: 0 4px 8px rgba(18, 42, 68, 0.1), 0 20px 44px rgba(18, 42, 68, 0.16); }

  /* scroll reveal — only when JS has added .reveal-on to <html> */
  .reveal-on .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

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

  .reveal-on .steps .reveal:nth-child(2),
  .reveal-on .included-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
  .reveal-on .steps .reveal:nth-child(3) { transition-delay: 0.24s; }
}

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

/* ---- Responsive ---- */

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-art {
    max-width: 460px;
    margin: 3rem auto 0;
    padding: 1.4rem 0 0 1.4rem;
  }
  .browser-back { right: 2.4rem; bottom: 2.4rem; }
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step {
    position: relative;
    padding: 0 0 2.25rem 4.7rem;
  }
  .step:last-child { padding-bottom: 0; }
  .step-head {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
  .step:not(:last-child) .step-head::before,
  .step:not(:last-child) .step-head::after { content: none; }
  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 1.62rem;
    top: 3.7rem;
    bottom: 0.35rem;
    border-left: 2px dashed var(--gold-line);
  }
  .included-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; gap: 1.9rem; }
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .header-inner { justify-content: center; text-align: center; }
  .nav-list { justify-content: center; gap: 0.9rem 1.1rem; }
  .brand-logo img { height: 42px; }
  .hero { padding: 3rem 0 3.25rem; }
  .hero-art { margin-top: 2.5rem; padding: 1.1rem 0 0 1.1rem; }
  .browser-back { right: 1.8rem; bottom: 1.8rem; }
  .watermark { font-size: 1.9rem; }
  .section { padding: 3rem 0; }
  .form-head { padding: 0.9rem 1.25rem; }
  .form-body { padding: 1.5rem 1.1rem; }
  .thanks-card { padding: 1.75rem 1.25rem; }
}
