:root {
  --navy-950: #100e28;
  --navy-900: #171339;
  --navy-800: #211c4d;
  --navy-700: #2c2564;
  --gold-500: #f2b100;
  --gold-400: #ffc933;
  --cream: #f4efe4;
  --cream-dim: #cfc9ba;
  --line: rgba(244, 239, 228, 0.12);
  --radius: 18px;
  --font-display: "Fraunces", "Manrope", serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ---------- header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 72px);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  height: 34px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-name .dot {
  color: var(--gold-400);
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.header-call:hover {
  border-color: var(--gold-500);
  transform: translateY(-1px);
}

.call-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
}

.call-number {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-400);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(20px, 4vw, 40px) clamp(20px, 6vw, 72px) 80px;
  align-items: start;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(242, 177, 0, 0.16), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: clamp(10px, 4vw, 48px);
  animation: rise 0.7s ease both;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  font-weight: 700;
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}

.hero h1 .accent {
  color: var(--gold-400);
}

.lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 46ch;
  margin: 0 0 36px;
}

.trust-row {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.trust-row li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-row strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-400);
}

.trust-row span {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

/* ---------- form ---------- */
.hero-form-wrap {
  position: relative;
  z-index: 1;
  animation: rise 0.7s 0.12s ease both;
}

.quote-form {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.6);
  transform: rotate(0.4deg);
}

.form-head h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.form-head p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
}

.field input,
.field select,
.field textarea {
  background: rgba(16, 14, 40, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.field textarea {
  resize: vertical;
  font-family: var(--font-body);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 239, 228, 0.32);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  background: rgba(16, 14, 40, 0.85);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%23f4efe4' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field select option {
  color: #111;
}

.submit-btn {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(242, 177, 0, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-hint {
  margin: 10px 0 0;
  font-size: 0.74rem;
  color: var(--cream-dim);
  text-align: center;
}

.form-hint.error {
  color: #ff9d7a;
}

/* ---------- how it works ---------- */
.how {
  padding: 40px clamp(20px, 6vw, 72px) 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 40px;
  font-weight: 700;
}

.section-title.light {
  color: var(--navy-950);
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: var(--navy-900);
}

.how-steps li:nth-child(2) {
  transform: translateY(18px);
}

.step-num {
  font-family: var(--font-display);
  color: var(--gold-500);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.how-steps h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 14px 0 10px;
}

.how-steps p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- coverage ---------- */
.coverage {
  margin: 60px clamp(16px, 4vw, 40px);
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500));
  border-radius: 28px;
  padding: clamp(36px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  color: var(--navy-950);
}

.coverage-text p {
  color: rgba(16, 14, 40, 0.78);
  line-height: 1.6;
  font-size: 1rem;
  max-width: 46ch;
}

.coverage-note {
  font-weight: 700;
  color: var(--navy-950);
}

.coverage-visual {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-visual .ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(16, 14, 40, 0.25);
}

.ring-1 {
  width: 120px;
  height: 120px;
}

.ring-2 {
  width: 190px;
  height: 190px;
  border-style: dashed;
}

.ring-3 {
  width: 260px;
  height: 260px;
  opacity: 0.6;
}

.coverage-mark {
  height: 60px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(16, 14, 40, 0.25));
}

/* ---------- contact ---------- */
.contact {
  padding: 20px clamp(20px, 6vw, 72px) 60px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  background: var(--navy-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  margin-bottom: 8px;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-value.small {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

/* ---------- footer ---------- */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px clamp(20px, 6vw, 72px) 32px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--cream-dim);
}

/* ---------- floating whatsapp ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #0c1a10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.6);
  z-index: 50;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-steps li:nth-child(2) {
    transform: none;
  }

  .coverage {
    grid-template-columns: 1fr;
  }

  .coverage-visual {
    height: 160px;
  }

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

@media (max-width: 560px) {
  .field-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 18px 20px;
  }

  .header-call {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
