:root {
  --plum:#1a062c;
  --night:#12051f;
  --yellow:#ffc400;
  --magenta:#c01e5f;
  --orange:#d34c45;
  --white:#fff;
  --ink:#24152d;
  --muted:#6c6370;
  --line:#e8e1ec;
  --paper:#fff;
  --soft:#faf8fb;
  --success:#176b48;
  --warning:#8a5a00;
  --danger:#9c2343;
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; background:var(--night); }

body {
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 14% 3%,rgba(192,30,95,.18),transparent 24rem),
    linear-gradient(180deg,var(--night) 0 31rem,#f5f1f6 31rem 100%);
}

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

a { color:var(--magenta); text-underline-offset:3px; }
a:hover { text-decoration-thickness:2px; }

.site-header {
  width:min(1180px,calc(100% - 32px));
  margin:auto;
  padding:24px 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  color:var(--white);
}

.brand { display:block; width:min(330px,70vw); }
.brand img { display:block; }
.site-header p {
  margin:0;
  color:var(--yellow);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}

main {
  width:min(1120px,calc(100% - 32px));
  margin:auto;
  padding-bottom:70px;
}

.hero {
  max-width:880px;
  margin:30px auto 36px;
  text-align:center;
  color:var(--white);
}

.eyebrow {
  margin:0 0 12px;
  color:var(--yellow);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.19em;
  text-transform:uppercase;
}

.hero h1 {
  margin:0;
  font-family:"Century Gothic",CenturyGothic,Arial,sans-serif;
  font-size:clamp(2.8rem,8vw,6.2rem);
  line-height:.98;
  letter-spacing:-.055em;
}

.hero-lead {
  max-width:800px;
  margin:22px auto 0;
  font-size:clamp(1.15rem,2.5vw,1.55rem);
  line-height:1.5;
  font-weight:700;
}

.hero-copy {
  max-width:720px;
  margin:15px auto 0;
  color:rgba(255,255,255,.76);
  font-size:1rem;
  line-height:1.7;
}

.service-summary {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  overflow:hidden;
  margin:0 auto 24px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  background:rgba(255,255,255,.13);
  box-shadow:0 24px 70px rgba(18,5,31,.22);
}

.service-summary div {
  min-height:116px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  background:rgba(255,255,255,.96);
}

.service-summary span {
  color:var(--muted);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.service-summary strong { font-size:1.05rem; line-height:1.35; }

.activation-form { display:grid; gap:22px; }

.form-section,
.coverage-panel,
.scope-grid article,
.submit-panel {
  border:1px solid rgba(26,6,44,.09);
  border-radius:28px;
  background:rgba(255,255,255,.98);
  box-shadow:0 22px 65px rgba(31,8,45,.09);
}

.form-section { padding:clamp(24px,4vw,42px); }

.section-heading {
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:28px;
}

.section-heading > span {
  display:grid;
  place-items:center;
  flex:0 0 44px;
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--plum);
  color:var(--yellow);
  font-weight:900;
}

.section-heading h2,
.coverage-panel h2,
.scope-grid h2 {
  margin:0;
  font-family:"Century Gothic",CenturyGothic,Arial,sans-serif;
  font-size:clamp(1.45rem,3vw,2.05rem);
  line-height:1.15;
}

.section-heading p,
.coverage-panel p {
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.6;
}

.field-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.field-wide { grid-column:1 / -1; }
.field-date { display:block; max-width:360px; margin-top:20px; }

.field { display:grid; gap:8px; }
.field > span,
.choice-group legend {
  color:#372b3d;
  font-size:.9rem;
  font-weight:800;
}

input,
select,
button { font:inherit; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="time"],
select {
  width:100%;
  min-height:52px;
  padding:12px 14px;
  border:1px solid #d6ccd9;
  border-radius:14px;
  background:var(--white);
  color:var(--ink);
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}

input:focus,
select:focus {
  border-color:var(--magenta);
  box-shadow:0 0 0 4px rgba(192,30,95,.11);
}

input:user-invalid,
select:user-invalid { border-color:rgba(156,35,67,.7); }

.choice-group {
  margin:0 0 22px;
  padding:0;
  border:0;
}

.choice-group legend { margin-bottom:12px; }
.choice-group label {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 20px 8px 0;
  cursor:pointer;
}

input[type="radio"],
input[type="checkbox"] {
  width:19px;
  height:19px;
  accent-color:var(--magenta);
}

.conditional {
  margin:18px 0 8px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--soft);
}

.check-line {
  display:grid;
  grid-template-columns:22px 1fr;
  gap:12px;
  align-items:start;
  margin-top:22px;
  color:#403447;
  line-height:1.58;
  cursor:pointer;
}

.check-line input { margin-top:2px; }

.privacy-note {
  margin:22px 0 0;
  padding:16px 18px;
  border-left:4px solid var(--yellow);
  border-radius:0 14px 14px 0;
  background:#fff9df;
  color:#5c4e37;
  line-height:1.6;
}

.coverage-panel {
  display:grid;
  grid-template-columns:1fr minmax(280px,410px);
  gap:34px;
  align-items:center;
  padding:clamp(25px,4vw,42px);
  background:linear-gradient(135deg,var(--plum),#2b0a3f);
  color:var(--white);
}

.coverage-panel .eyebrow { margin-bottom:10px; }
.coverage-panel > div:first-child p:last-child { color:rgba(255,255,255,.73); }

.price-box {
  padding:24px;
  border:1px solid rgba(255,196,0,.32);
  border-radius:22px;
  background:rgba(18,5,31,.52);
}

.price-box > span {
  display:block;
  color:rgba(255,255,255,.72);
  line-height:1.4;
}

.price-box > strong {
  display:block;
  margin:8px 0 12px;
  color:var(--yellow);
  font-size:clamp(2rem,5vw,3.25rem);
  letter-spacing:-.04em;
}

.price-box ul {
  margin:0;
  padding-left:20px;
  color:rgba(255,255,255,.82);
  line-height:1.7;
}

.price-box.manual {
  border-color:rgba(211,76,69,.55);
  background:rgba(211,76,69,.10);
}
.price-box.manual > strong { color:#ffd7ce; font-size:1.35rem; letter-spacing:0; }

.scope-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.scope-grid article { padding:30px; }
.scope-grid ul { margin:18px 0 0; padding-left:20px; line-height:1.75; }
.scope-grid li + li { margin-top:7px; }

.legal-section .check-line {
  padding:18px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--soft);
}

.legal-links {
  display:flex;
  flex-wrap:wrap;
  gap:12px 22px;
  margin-top:24px;
  font-size:.93rem;
}

.submit-panel {
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
  padding:28px 32px;
}

.submit-panel p { margin:0; line-height:1.6; color:var(--muted); }
.submit-panel p + p { margin-top:8px; color:var(--ink); }

#submit-button {
  min-height:58px;
  padding:0 28px;
  border:0;
  border-radius:999px;
  background:var(--yellow);
  color:var(--night);
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(255,196,0,.25);
  transition:transform .18s ease,filter .18s ease,opacity .18s ease;
}

#submit-button:hover:not(:disabled) { transform:translateY(-2px); filter:brightness(1.03); }
#submit-button:disabled { opacity:.42; cursor:not-allowed; box-shadow:none; }
#submit-button.is-loading { opacity:.7; cursor:wait; }

.form-message {
  padding:20px 22px;
  border-radius:18px;
  border:1px solid var(--line);
  background:var(--white);
  line-height:1.6;
}
.form-message.error { border-color:rgba(156,35,67,.28); background:#fff3f6; color:var(--danger); }
.form-message.manual { border-color:rgba(138,90,0,.28); background:#fff8e7; color:var(--warning); }
.form-message.success { border-color:rgba(23,107,72,.28); background:#effbf5; color:var(--success); }

.honeypot {
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  clip:rect(1px,1px,1px,1px) !important;
  white-space:nowrap !important;
}

footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:min(1120px,calc(100% - 32px));
  margin:auto;
  padding:30px 0 40px;
  color:rgba(255,255,255,.7);
  font-size:.9rem;
}
footer p { margin:0; }
footer nav { display:flex; flex-wrap:wrap; gap:16px; }
footer a { color:rgba(255,255,255,.78); }

@media (max-width:900px) {
  .site-header { justify-content:center; text-align:center; flex-direction:column; }
  .service-summary { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .coverage-panel,
  .submit-panel { grid-template-columns:1fr; }
  .scope-grid { grid-template-columns:1fr; }
  #submit-button { width:100%; }
}

@media (max-width:640px) {
  body { background:linear-gradient(180deg,var(--night) 0 29rem,#f5f1f6 29rem 100%); }
  main { width:min(100% - 20px,1120px); }
  .site-header { width:min(100% - 24px,1180px); padding-top:18px; }
  .hero { margin-top:16px; }
  .service-summary { grid-template-columns:1fr; border-radius:20px; }
  .service-summary div { min-height:auto; padding:18px 20px; }
  .form-section,
  .coverage-panel,
  .scope-grid article,
  .submit-panel { border-radius:22px; }
  .field-grid { grid-template-columns:1fr; }
  .field-wide { grid-column:auto; }
  .conditional { padding:18px; }
  .section-heading { gap:12px; }
  .section-heading > span { flex-basis:38px; width:38px; height:38px; }
  footer { flex-direction:column; text-align:center; }
}

@media (prefers-reduced-motion:reduce) {
  * { scroll-behavior:auto !important; transition:none !important; }
}

.submit-actions {
  display:grid;
  gap:10px;
  min-width:min(100%,310px);
}

.manual-contact {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border:1px solid var(--magenta);
  border-radius:999px;
  background:var(--white);
  color:var(--magenta);
  font-weight:900;
  text-align:center;
  text-decoration:none;
}

.manual-contact[hidden] { display:none; }


/* RV-002 UX V1.1 --------------------------------------------------------- */
.floating-price-summary {
  position:sticky;
  top:12px;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  margin:0 0 20px;
  padding:14px 20px;
  border:1px solid rgba(255,196,0,.38);
  border-radius:18px;
  background:rgba(26,6,44,.96);
  color:var(--white);
  box-shadow:0 14px 36px rgba(18,5,31,.24);
  backdrop-filter:blur(12px);
}

.floating-price-summary > div {
  display:flex;
  align-items:baseline;
  gap:14px;
  white-space:nowrap;
}

.floating-price-summary span {
  color:rgba(255,255,255,.72);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.floating-price-summary strong {
  color:var(--yellow);
  font-family:"Century Gothic",CenturyGothic,Arial,sans-serif;
  font-size:clamp(1.35rem,3vw,2rem);
  letter-spacing:-.035em;
}

.floating-price-summary p {
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:.88rem;
  line-height:1.4;
  text-align:right;
}

.floating-price-summary.manual {
  border-color:rgba(211,76,69,.72);
  background:rgba(79,15,43,.97);
}

.section-heading {
  position:relative;
}

.section-heading > div {
  flex:1 1 auto;
}

.section-status {
  flex:0 0 auto;
  align-self:center;
  padding:7px 11px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--soft);
  color:var(--muted);
  font-size:.72rem;
  line-height:1;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
}

.form-section.is-complete {
  border-color:rgba(23,107,72,.32);
}

.form-section.is-complete .section-status {
  border-color:rgba(23,107,72,.25);
  background:#effbf5;
  color:var(--success);
}

.form-section.is-attention {
  border-color:rgba(156,35,67,.48);
  box-shadow:0 22px 65px rgba(156,35,67,.10);
}

.form-section.is-attention .section-status {
  border-color:rgba(156,35,67,.25);
  background:#fff3f6;
  color:var(--danger);
}

.conditional-note {
  margin:0;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(26,6,44,.045);
  color:var(--muted);
  font-size:.9rem;
  line-height:1.55;
}

.conditional.is-locked {
  border-color:#ddd7e1;
  background:#f1eef3;
}

.conditional.is-locked input {
  border-color:#d7d1db;
  background:#e5e1e8;
  color:#665d6b;
  cursor:not-allowed;
  box-shadow:none;
}

.field.field-valid > span::after,
.check-line.field-valid > span::after,
.choice-group.field-valid legend::after {
  content:" ✓";
  color:var(--success);
  font-weight:900;
}

.field.field-valid input:not([readonly]),
.field.field-valid select {
  border-color:rgba(23,107,72,.55);
  box-shadow:0 0 0 3px rgba(23,107,72,.07);
}

.field.has-error input,
.field.has-error select,
.check-line.has-error,
.choice-group.has-error {
  border-color:rgba(156,35,67,.82) !important;
  box-shadow:0 0 0 4px rgba(156,35,67,.10) !important;
}

.check-line.has-error,
.choice-group.has-error {
  padding:14px;
  border:1px solid rgba(156,35,67,.82);
  border-radius:14px;
  background:#fff3f6;
}

.attention-pulse {
  animation:rv-attention-pulse .75s ease-in-out 2;
}

@keyframes rv-attention-pulse {
  0%,100% { transform:translateZ(0); }
  50% { box-shadow:0 0 0 6px rgba(192,30,95,.16); }
}

#submit-button.is-unavailable:not(.is-loading) {
  opacity:.72;
  box-shadow:0 8px 22px rgba(255,196,0,.16);
}

#submit-button.is-unavailable:not(.is-loading):hover {
  transform:none;
}

@media (max-width:760px) {
  .floating-price-summary {
    top:6px;
    align-items:flex-start;
    flex-direction:column;
    gap:4px;
    padding:12px 16px;
  }

  .floating-price-summary p {
    text-align:left;
    font-size:.8rem;
  }

  .section-heading {
    flex-wrap:wrap;
  }

  .section-status {
    margin-left:50px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .attention-pulse { animation:none; }
}
