:root {
  --navy: #0d3b66;
  --navy-soft: #1d5a91;
  --mint: #10b981;
  --mint-dark: #059669;
  --gold: #f4b942;
  --sand: #fff8eb;
  --sky: #eef6ff;
  --line: #d9e6f2;
  --ink: #14324b;
  --muted: #5f7891;
  --bg: #f7fbff;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(13, 59, 102, 0.08);
  --radius: 22px;
  --font-main: "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(180deg, #fcfeff 0%, var(--bg) 100%);
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 230, 242, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 230, 242, 0.8);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.brand span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  display: grid;
  place-items: center;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.site-nav {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 8px);
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.site-nav a:hover {
  background: var(--sky);
}

.hero {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  margin: 0 0 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: #8d5d00;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-text,
.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions,
.hero-panel-actions,
.summary-actions,
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}

.hero-panel {
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(13, 59, 102, 0.98), rgba(15, 90, 124, 0.96)),
    var(--navy);
  color: var(--white);
}

.hero-panel h2,
.hero-panel p {
  color: var(--white);
}

.qr-slot {
  margin: 20px 0;
  min-height: 220px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18));
}

.qr-slot img {
  width: min(100%, 260px);
  background: #fff;
  padding: 12px;
  border-radius: 18px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: rgba(227, 241, 252, 0.45);
}

.section-head {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.service-grid,
.accessory-grid,
.review-cards {
  display: grid;
  gap: 18px;
}

.service-card,
.accessory-card,
.review-card {
  padding: 22px;
}

.service-card h3,
.accessory-card h3,
.review-card strong {
  margin: 0 0 10px;
}

.service-card p,
.accessory-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.calculator-layout,
.reviews-layout,
.contact-layout {
  display: grid;
  gap: 20px;
}

.calculator-card,
.summary-card {
  padding: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.field span {
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

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

.addons {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
}

.addons label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--ink);
}

.addons input {
  width: 88px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.rate-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.totals {
  display: grid;
  gap: 12px;
  margin: 18px 0 20px;
}

.totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--sky);
}

.totals strong {
  font-size: 1.1rem;
  color: var(--navy);
}

.summary-stat {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  border: 1px solid var(--line);
}

.summary-stat b {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
  margin-top: 8px;
}

.summary-grid {
  display: grid;
  gap: 12px;
}

.micro-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.process-strip {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.process-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.process-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.page-shell {
  padding: 36px 0 72px;
}

.upload-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.upload-aside {
  display: grid;
  gap: 18px;
}

.upload-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--sand);
  border: 1px solid rgba(244, 185, 66, 0.45);
  color: #7b5f19;
}

.upload-note strong {
  display: block;
  color: #5d4500;
  margin-bottom: 6px;
}

.quote-panel {
  padding: 22px;
}

.quote-panel h3,
.queue-card h3,
.success-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.quote-panel p,
.queue-card p,
.success-card p {
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.trust-mini {
  display: grid;
  gap: 12px;
}

.trust-mini div {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fbfdff;
}

.trust-mini strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.file-drop-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: -4px;
  margin-bottom: 16px;
}

.status-error {
  color: #a11b30;
  font-weight: 700;
}

.journey-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.journey-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fbfdff;
  border: 1px solid var(--line);
}

.journey-step b {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
}

.journey-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.journey-step p {
  margin: 0;
  color: var(--muted);
}

.signal-grid,
.review-cta-grid,
.template-grid {
  display: grid;
  gap: 16px;
}

.signal-card,
.review-action-box,
.template-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.signal-card h3,
.review-action-box h3,
.template-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.signal-card p,
.review-action-box p,
.template-card p {
  margin: 0;
  color: var(--muted);
}

.signal-card ul,
.review-action-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.copy-box {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7fbff;
  border: 1px dashed var(--line);
  color: var(--ink);
  white-space: pre-wrap;
  line-height: 1.6;
}

.review-assets {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.review-assets img {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px;
}

.setup-note {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--sand);
  border: 1px solid rgba(244, 185, 66, 0.42);
  color: #6d5200;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.success-card,
.queue-card {
  padding: 24px;
}

.success-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.success-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #10b981, #0d3b66);
  color: #fff;
}

.queue-grid {
  display: grid;
  gap: 16px;
}

.meta-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 16px;
}

.meta-chip {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.meta-chip small {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
}

.meta-chip strong {
  color: var(--navy);
}

.order-file-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.section-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
}

.accessory-banner {
  height: 160px;
  border-radius: 18px;
  margin-bottom: 16px;
}

.accessory-one {
  background: linear-gradient(135deg, #123d74, #1bb39a);
}

.accessory-two {
  background: linear-gradient(135deg, #0f6bb0, #f4b942);
}

.accessory-three {
  background: linear-gradient(135deg, #052f5f, #f76f8e);
}

.pricing-table {
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-head {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.review-shell {
  padding: 28px;
  text-align: center;
}

.review-score {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.review-qr {
  width: min(100%, 220px);
  margin: 14px auto;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.review-poster-card {
  padding: 10px;
}

.review-poster-card img {
  border-radius: 16px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.map-card {
  overflow: hidden;
  min-height: 320px;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  padding: 28px 0 42px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(13, 59, 102, 0.14);
}

.btn-primary,
.btn-upload {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-whatsapp {
  background: var(--mint);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--mint-dark);
}

.floating-wa,
.floating-call {
  position: fixed;
  right: 16px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  z-index: 30;
  box-shadow: 0 20px 40px rgba(13, 59, 102, 0.2);
}

.floating-wa {
  bottom: 88px;
  background: var(--mint);
}

.floating-call {
  bottom: 18px;
  background: var(--navy-soft);
}

@media (min-width: 760px) {
  .hero-grid,
  .calculator-layout,
  .reviews-layout,
  .contact-layout,
  .upload-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .summary-grid,
  .process-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .accessory-grid,
  .review-cards {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav a {
    padding: 10px 12px;
  }
}
