:root {
  --bg-dark: #17181d;
  --bg-dark-soft: #23252c;
  --bg-light: #f7f8fb;
  --bg-accent: #ffe7e1;
  --surface: #ffffff;
  --surface-soft: #f1f3f8;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(23, 24, 29, 0.12);
  --text-dark: #17181d;
  --text-light: #f8f9fc;
  --text-muted: #676d78;
  --accent: #d7332f;
  --accent-strong: #ba2724;
  --accent-ink: #fff7f6;
  --teal: #1aa39b;
  --shadow: 0 18px 44px rgba(17, 24, 39, 0.1);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.5;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.topbar {
  background: #17181d;
  color: rgba(248, 249, 252, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-shell,
.topbar-items {
  display: flex;
  align-items: center;
}

.topbar-shell {
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.topbar-items {
  flex-wrap: wrap;
  gap: 10px 18px;
}

.topbar p,
.topbar a,
.topbar span {
  margin: 0;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 251, 0.92);
  border-bottom: 1px solid rgba(23, 24, 29, 0.08);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text-dark);
  font-weight: 800;
}

.brand-logo,
.footer-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo {
  width: clamp(128px, 13vw, 172px);
  max-width: 100%;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: clamp(120px, 11vw, 156px);
  max-width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(23, 24, 29, 0.82);
}

.site-nav a {
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.nav-cta {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(215, 51, 47, 0.2);
  background: rgba(215, 51, 47, 0.08);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(23, 24, 29, 0.12);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text-dark);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 18, 24, 0.34) 0%, rgba(17, 18, 24, 0.76) 100%);
}

.hero-content,
.hero-metrics {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  padding: 124px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-dark {
  color: #b1302b;
}

.hero h1,
.section-head h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 12ch;
  font-size: 4.4rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.15rem;
  color: rgba(243, 247, 239, 0.86);
}

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

.hero-note {
  margin: 16px 0 0;
  color: rgba(248, 249, 252, 0.72);
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--text-light);
}

.button-secondary.dark,
.button-ghost {
  border-color: rgba(23, 24, 29, 0.14);
  color: var(--text-dark);
}

.hero-metrics {
  width: min(100% - 40px, var(--container));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics div {
  min-height: 112px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 26, 34, 0.68);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-metrics span {
  color: rgba(243, 247, 239, 0.76);
}

.value-strip {
  background: #1b1d24;
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.value-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
}

.value-grid p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(243, 247, 239, 0.82);
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.value-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(243, 247, 239, 0.8);
}

.intent-shell {
  display: grid;
  gap: 30px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intent-card {
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intent-card h3,
.support-bar strong,
.footer-copy p {
  margin: 0;
}

.intent-card p {
  margin: 12px 0 16px;
  color: var(--text-muted);
}

.intent-card a {
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-accent {
  background: var(--bg-accent);
}

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

.section-head.compact {
  margin-bottom: 34px;
}

.section-head.narrow {
  max-width: 680px;
}

.section-head h2,
.contact-section h2 {
  max-width: 14ch;
  font-size: 3rem;
  font-weight: 800;
}

.section-head p:not(.eyebrow),
.contact-section p {
  margin: 16px 0 0;
  max-width: 68ch;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.section-dark .section-head p:not(.eyebrow) {
  color: rgba(243, 247, 239, 0.72);
}

.service-grid,
.pricing-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.price-card,
.process-grid article,
.reason-list article {
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  min-height: 280px;
}

.service-card img {
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 28px;
}

.service-card h3,
.delivery-list h3,
.price-card h3,
.process-grid h3,
.reason-list h3,
.faq-list summary {
  margin: 0;
}

.service-card p,
.delivery-list p,
.price-copy,
.process-grid p,
.reason-list p,
.faq-list p {
  margin: 14px 0 0;
}

.service-card ul,
.price-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.service-card li,
.price-card li {
  position: relative;
  margin-top: 12px;
  padding-left: 18px;
  color: var(--text-muted);
}

.service-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.delivery-grid,
.reason-grid,
.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.delivery-list,
.reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.delivery-list article {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--bg-dark-soft);
}

.delivery-list p {
  color: rgba(243, 247, 239, 0.72);
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1.1;
}

.price-label {
  margin: 0;
  font-weight: 700;
  color: #b1302b;
}

.price-copy {
  min-height: 74px;
  color: var(--text-muted);
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card .button {
  margin-top: auto;
}

.price-card.featured {
  background: #1f2027;
  border-color: rgba(215, 51, 47, 0.22);
  color: var(--text-light);
}

.price-card.featured .price-label,
.price-card.featured .price-copy,
.price-card.featured li {
  color: rgba(243, 247, 239, 0.86);
}

.price-card.featured li::before {
  background: var(--accent);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 51, 47, 0.14);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.support-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.support-bar span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.process-grid article {
  min-height: 230px;
  padding: 24px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: rgba(23, 24, 29, 0.08);
  font-weight: 800;
}

.reason-list article {
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--bg-dark-soft);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  color: rgba(243, 247, 239, 0.74);
}

.contact-section {
  background: #fff0eb;
}

.contact-shell {
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.04rem;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.site-footer {
  background: #f7f8fb;
  color: rgba(23, 24, 29, 0.74);
  border-top: 1px solid rgba(23, 24, 29, 0.08);
}

.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-light);
}

.not-found-shell {
  max-width: 720px;
  padding: 72px 0;
}

.not-found-shell h1 {
  margin: 0;
  max-width: 10ch;
  font-size: 3.2rem;
  line-height: 1.02;
}

.not-found-shell p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.not-found-shell .button {
  margin-top: 28px;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 24px 0;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-copy p:last-child {
  color: var(--text-muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1fbe61;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(31, 190, 97, 0.24);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 3.7rem;
  }

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

@media (max-width: 920px) {
  .topbar-shell,
  .topbar-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(247, 248, 251, 0.98);
    border: 1px solid rgba(23, 24, 29, 0.08);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 110px 0 30px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-metrics,
  .value-grid,
  .intent-grid,
  .delivery-grid,
  .reason-grid,
  .contact-shell,
  .service-grid,
  .process-grid,
  .delivery-list,
  .reason-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

  .section-head h2,
  .contact-section h2 {
    font-size: 2.5rem;
  }

  .support-bar {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
    left: 12px;
    right: 12px;
  }

  .hero-content {
    padding: 98px 0 24px;
  }

  .hero h1,
  .section-head h2,
  .contact-section h2,
  .not-found-shell h1 {
    max-width: none;
    font-size: 2rem;
  }

  .hero-copy,
  .section-head p:not(.eyebrow),
  .contact-section p,
  .value-grid p,
  .delivery-list p,
  .service-card p,
  .price-copy,
  .process-grid p,
  .reason-list p,
  .faq-list p {
    font-size: 0.98rem;
  }

  .contact-buttons,
  .support-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .support-bar,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
