:root {
  --bg: #f3ecdf;
  --surface: rgba(255, 250, 245, 0.78);
  --surface-strong: #fffaf4;
  --ink: #1e1914;
  --muted: #655a50;
  --accent: #eb5e28;
  --accent-dark: #a63d1b;
  --accent-soft: rgba(235, 94, 40, 0.14);
  --line: rgba(29, 29, 27, 0.09);
  --line-strong: rgba(29, 29, 27, 0.18);
  --shadow: 0 18px 50px rgba(64, 38, 20, 0.12);
  --shadow-strong: 0 30px 80px rgba(73, 38, 18, 0.16);
  --dark: #241913;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(235, 94, 40, 0.2), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(82, 127, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 50%, #ece2d3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 72%);
  pointer-events: none;
  z-index: -2;
}

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

.page-orb {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.page-orb-left {
  top: 5rem;
  left: -8rem;
  background: rgba(235, 94, 40, 0.22);
}

.page-orb-right {
  top: 18rem;
  right: -8rem;
  background: rgba(50, 96, 255, 0.14);
}

.hero,
.section,
.stats,
.footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1.25rem 0 3rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 1.75rem;
}

.brand,
h1,
h2,
h3,
.card-label,
.process-grid span,
.button {
  font-family: "Space Grotesk", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff8a5c);
  box-shadow: 0 12px 24px rgba(235, 94, 40, 0.26);
}

.brand-logo {
  width: 11rem;
  max-width: 42vw;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.66);
  backdrop-filter: blur(12px);
}

.nav-links a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.service-card,
.feature-grid article,
.process-grid article,
.contact-form,
.section-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  position: relative;
  padding: 2.7rem;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 94, 40, 0.16), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ff7a45);
  color: #fff;
  box-shadow: 0 14px 28px rgba(235, 94, 40, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent);
  margin-right: 0.55rem;
  vertical-align: middle;
}

.hero-card {
  padding: 1.4rem;
  align-self: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 235, 227, 0.9)),
    var(--surface);
  overflow: hidden;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  gap: 1rem;
}

.screen-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.main-panel {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(253, 245, 239, 0.92));
}

.mini-panel {
  position: absolute;
  right: -0.2rem;
  bottom: 4.6rem;
  z-index: 3;
  width: 13rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(36, 25, 19, 0.96), rgba(59, 33, 21, 0.95));
  color: #f6eee8;
  transform: rotate(4deg);
}

.mini-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9rem;
}

.mini-list strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
}

.signal-card {
  position: absolute;
  left: 1rem;
  bottom: 0.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 12.5rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 250, 245, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.signal-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.signal-card p {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
}

.signal-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #1f9d55;
  box-shadow: 0 0 0 8px rgba(31, 157, 85, 0.12);
}

.card-label {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(235, 94, 40, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card h2,
.section-heading h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.hero-card p,
.section-heading p,
.service-card p,
.feature-grid p,
.process-grid p,
.contact-section p,
.footer p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.contact-list-inline {
  margin-top: 1.5rem;
}

.contact-list a,
.contact-list span {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 0 1rem;
}

.stats article {
  position: relative;
  padding: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.82), rgba(255, 245, 237, 0.72));
  border: 1px solid var(--line);
  overflow: hidden;
}

.stats article::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 94, 40, 0.12), transparent 70%);
}

.stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.stats span {
  color: var(--muted);
}

.section {
  padding: 4rem 0 1rem;
}

.section-shell {
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.trust-strip,
.area-strip span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 600;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.trust-strip span,
.area-strip span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 600;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.services-grid,
.feature-grid,
.process-grid,
.contact-section {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.feature-grid article,
.process-grid article {
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

.service-card::before,
.feature-grid article::before,
.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 45%);
  pointer-events: none;
}

.service-card h3,
.feature-grid h3,
.process-grid h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.price-card strong {
  display: block;
  margin-top: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  color: var(--accent-dark);
}

.pricing-shell {
  background:
    linear-gradient(180deg, rgba(255, 247, 241, 0.82), rgba(255, 250, 245, 0.72)),
    var(--surface);
}

.pricing-grid .price-card:nth-child(2),
.pricing-grid .price-card:nth-child(4) {
  transform: translateY(-0.4rem);
}

.pricing-note {
  margin-top: 1rem;
  color: var(--muted);
}

.feature-band {
  position: relative;
}

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

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

.process-grid span {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.contact-section {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 240, 231, 0.92));
}

.contact-shell {
  background:
    radial-gradient(circle at 90% 20%, rgba(235, 94, 40, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.82), rgba(248, 239, 230, 0.72));
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fffdf9;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem 0 5.5rem;
  color: var(--muted);
}

.footer-logo {
  width: 12rem;
  max-width: 100%;
  height: auto;
  display: block;
}

.mobile-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  z-index: 20;
}

.mobile-bar a {
  text-align: center;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.mobile-call {
  background: #222;
}

.mobile-whatsapp {
  background: #1f9d55;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .reveal.is-visible,
  .button {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .services-grid,
  .feature-grid,
  .contact-section,
  .process-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .mini-panel {
    position: static;
    width: auto;
    transform: none;
  }

  .signal-card {
    position: static;
    width: auto;
  }

  .process-grid article:last-child,
  .stats article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .nav,
  .footer,
  .hero-grid,
  .services-grid,
  .feature-grid,
  .contact-section,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-links {
    display: none;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-logo,
  .footer-logo {
    width: 9rem;
  }

  .hero {
    padding-top: 0.8rem;
  }

  .hero-copy,
  .section-shell {
    padding: 1.4rem;
  }

  .hero-copy,
  .hero-card,
  .service-card,
  .feature-grid article,
  .process-grid article,
  .contact-form,
  .stats article {
    border-radius: 22px;
  }

  .process-grid article:last-child,
  .stats article:last-child {
    grid-column: auto;
  }

  .footer {
    padding-top: 2rem;
  }

  .mobile-bar {
    display: grid;
  }

  .page-orb {
    display: none;
  }
}
