:root {
  --bg: #f6f1e8;
  --surface: rgba(255, 252, 247, 0.8);
  --surface-strong: #fffaf2;
  --line: rgba(25, 52, 84, 0.11);
  --text: #16304b;
  --muted: #55667a;
  --deep-blue: #17314c;
  --deep-blue-soft: #274867;
  --sand: #e8dcc8;
  --warm: #c88f58;
  --shadow: 0 24px 60px rgba(19, 42, 68, 0.12);
  --radius-xl: 32px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(230, 214, 187, 0.5), transparent 30%),
    linear-gradient(180deg, #fbf7f0 0%, #f5efe5 100%);
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.background-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
}

.orb-one {
  top: 80px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: rgba(33, 77, 116, 0.15);
}

.orb-two {
  top: 620px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(200, 143, 88, 0.14);
}

.background-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 72%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 49, 76, 0.08);
}

.header-inner,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(23, 49, 76, 0.08);
  box-shadow: 0 12px 28px rgba(19, 42, 68, 0.08);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-text strong {
  font-family: "Marcellus", serif;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.header-cta {
  padding: 10px 18px;
  border: 1px solid rgba(23, 49, 76, 0.1);
  background: linear-gradient(135deg, var(--deep-blue), #285478);
  color: #fff;
  box-shadow: 0 18px 30px rgba(23, 49, 76, 0.16);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.section {
  padding: 36px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding-top: 72px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(23, 49, 76, 0.08);
  color: var(--deep-blue-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.2vw, 4.55rem);
  max-width: 11.5ch;
}

.hero-text,
.section-heading p,
.info-card p,
.offer-positioning,
.offer-list,
.timeline-content p,
.cta-panel p,
.hero-card p,
.hero-card li {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-text strong {
  color: var(--deep-blue);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 56px;
  padding: 0 24px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--deep-blue), #285478);
  color: #fff;
  box-shadow: 0 18px 36px rgba(23, 49, 76, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(200, 143, 88, 0.2);
  background: linear-gradient(135deg, rgba(200, 143, 88, 0.18), rgba(241, 225, 204, 0.9));
  color: #7a4c22;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(200, 143, 88, 0.12);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-pill,
.offer-badge,
.pill,
.signal-badge,
.table-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-pill {
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid rgba(23, 49, 76, 0.07);
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding-left: 10px;
  align-self: start;
  padding-top: 10px;
}

.hero-card,
.info-card,
.offer-card,
.table-card,
.cta-panel,
.timeline-content {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(255, 248, 239, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 28px;
}

.metric-card h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.metric-card ul {
  padding-left: 18px;
  margin: 20px 0 0;
}

.signal-card {
  background: linear-gradient(160deg, rgba(23, 49, 76, 0.95), rgba(42, 79, 110, 0.92));
  color: #fff;
}

.signal-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 14px 0 0;
}

.signal-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: none;
}

.offers .section-heading {
  margin-bottom: 44px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
}

.section-heading p {
  margin: 14px 0 22px;
}

.quick-grid,
.offers-grid {
  display: grid;
  gap: 20px;
}

.quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 26px;
}

.info-index,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(23, 49, 76, 0.08);
  color: var(--deep-blue);
  font-weight: 800;
}

.info-card h3,
.offer-card h3,
.timeline-content h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
}

.offers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.offer-card {
  position: relative;
  padding: 28px;
}

.featured {
  transform: translateY(-16px) scale(1.03);
  border-color: rgba(200, 143, 88, 0.46);
  background:
    radial-gradient(circle at top right, rgba(200, 143, 88, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.99), rgba(243, 232, 217, 0.97));
  box-shadow: 0 38px 76px rgba(23, 49, 76, 0.18);
}

.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(200, 143, 88, 0.5), rgba(23, 49, 76, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.offer-top h3 {
  margin-top: 12px;
}

.pill {
  background: rgba(23, 49, 76, 0.08);
  color: var(--deep-blue);
}

.pill.warm {
  background: rgba(200, 143, 88, 0.16);
  color: #9e6530;
}

.offer-price {
  color: var(--deep-blue-soft);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.offer-positioning {
  margin: 18px 0;
}

.offer-list {
  margin: 0;
  padding-left: 18px;
}

.offer-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.offer-badge {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(23, 49, 76, 0.08);
}

.comparison-card {
  overflow: auto;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(243, 236, 226, 0.92));
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: center;
  border: 0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table thead th {
  color: var(--deep-blue);
  font-size: 0.95rem;
  background: rgba(235, 238, 243, 0.84);
}

.comparison-table thead th:nth-child(3) {
  background: linear-gradient(135deg, rgba(200, 143, 88, 0.18), rgba(235, 238, 243, 0.95));
  color: #7a4c22;
}

.comparison-table thead th:first-child {
  border-radius: 16px 0 0 16px;
}

.comparison-table thead th:last-child {
  border-radius: 0 16px 16px 0;
}

.comparison-table tbody td {
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
}

.comparison-table tbody td:nth-child(3) {
  background: rgba(249, 242, 233, 0.92);
}

.comparison-table tbody tr td:first-child {
  color: var(--text);
  font-weight: 700;
  border-radius: 16px 0 0 16px;
  min-width: 240px;
}

.comparison-table tbody tr td:last-child {
  border-radius: 0 16px 16px 0;
}

.status {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}

.status.yes {
  background: rgba(40, 167, 69, 0.14);
  color: #15803d;
  box-shadow: inset 0 0 0 1px rgba(40, 167, 69, 0.12);
}

.status.no {
  background: rgba(220, 38, 38, 0.12);
  color: #b42318;
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.1);
}

.status.na {
  background: rgba(23, 49, 76, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.timeline-horizontal {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 6px;
}

.timeline-horizontal::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 49, 76, 0.12), rgba(200, 143, 88, 0.45));
  border-radius: 999px;
}

.timeline-horizontal::after {
  display: none;
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-rows: auto 1fr;
}

.timeline-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(237, 231, 221, 0.92));
  border: 1px solid rgba(23, 49, 76, 0.08);
  box-shadow: 0 10px 24px rgba(19, 42, 68, 0.08);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--warm), #e3c4a5);
  border: 3px solid rgba(255, 248, 239, 1);
  box-shadow: 0 6px 16px rgba(200, 143, 88, 0.2);
}

.timeline-content {
  padding: 24px 26px;
  min-height: 220px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline-content h3 {
  margin: 0 0 10px;
}

.final-cta {
  padding-bottom: 64px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: end;
  gap: 18px 28px;
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(200, 143, 88, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(23, 49, 76, 0.96), rgba(37, 73, 103, 0.92));
  color: #fff;
}

.cta-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 54ch;
}

.cta-panel .btn-primary {
  background: linear-gradient(135deg, #fffaf2, #f2dfcc);
  color: var(--deep-blue);
  box-shadow: none;
}

.cta-inline {
  align-self: end;
  justify-self: start;
  white-space: nowrap;
}

.contact-page {
  padding-top: 96px;
  padding-bottom: 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.contact-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 10ch;
}

.contact-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(255, 248, 239, 0.84));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-card h2 {
  margin: 0;
  font-size: 1.9rem;
}

.contact-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  margin-top: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.field span em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 49, 76, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(200, 143, 88, 0.45);
  box-shadow: 0 0 0 4px rgba(200, 143, 88, 0.12);
}

.field textarea {
  resize: vertical;
}

.field-full {
  margin-top: 16px;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.form-success {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.16);
  color: #166534;
}

.form-error {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.14);
  color: #991b1b;
}

.form-warning {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(200, 143, 88, 0.1);
  border: 1px solid rgba(200, 143, 88, 0.18);
  color: #8a5a2b;
}

.recaptcha-wrap {
  margin-top: 20px;
}

.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.site-footer {
  margin-bottom: 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.76);
  border: 1px solid rgba(23, 49, 76, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 24px rgba(19, 42, 68, 0.06);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  background: #1f9d63;
  color: #fff;
  box-shadow: 0 18px 30px rgba(31, 157, 99, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-button svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1080px) {
  .hero,
  .offers-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .field-span-2 {
    grid-column: auto;
  }

  .featured {
    transform: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .cta-inline {
    justify-self: start;
  }

  .timeline-horizontal {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-horizontal::before {
    display: none;
  }

  .timeline-horizontal::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 8px 0;
  }

  .brand-text small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section,
  .site-footer {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 28px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

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

  .hero-card,
  .info-card,
  .offer-card,
  .timeline-content,
  .cta-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .btn,
  .cta-inline {
    width: 100%;
  }

  .timeline-horizontal {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-wrap: wrap;
  }
}
