:root {
  --bg: #f6f3ee;
  --bg-soft: #ebe5d9;
  --dark: #101816;
  --dark-2: #182320;
  --text: #26302c;
  --muted: #6b746f;
  --primary: #c8a24a;
  --primary-dark: #9b792e;
  --green: #20b35b;
  --white: #ffffff;
  --line: rgba(16, 24, 22, 0.12);
  --shadow: 0 24px 70px rgba(16, 24, 22, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  background: var(--primary);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 238, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  color: var(--muted);
}

.main-nav a {
  position: relative;
  padding-block: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  background: var(--dark);
  color: var(--white);
  font-size: 0.9rem;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 162, 74, 0.22), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(200, 162, 74, 0.14);
  filter: blur(4px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 26px;
  max-width: 870px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-dark h2,
.section-dark h1 {
  color: var(--white);
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.section-dark h3 {
  color: var(--white);
}

p {
  color: var(--muted);
}

.section-dark p,
.hero p {
  color: rgba(255, 255, 255, 0.75);
}

.hero-copy > p {
  max-width: 650px;
  font-size: 1.1rem;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 16px 38px rgba(200, 162, 74, 0.28);
}

.btn-primary:hover {
  background: #d5b45f;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--dark);
}

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

.btn-full {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.floating-box {
  position: absolute;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 16px 18px;
}

.floating-box strong {
  font-size: 1.15rem;
}

.floating-box span {
  color: var(--muted);
  font-size: 0.84rem;
}

.box-top {
  top: 46px;
  right: -10px;
}

.box-bottom {
  left: -18px;
  bottom: 48px;
}

.stats-strip {
  margin-top: -1px;
  background: var(--primary);
  color: var(--dark);
  padding: 30px 0;
}

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

.stats-grid div {
  display: grid;
  gap: 2px;
}

.stats-grid strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.stats-grid span {
  font-size: 0.9rem;
  color: rgba(16, 24, 22, 0.72);
}

.split-grid,
.advantages-grid,
.lead-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: start;
}

.section-copy p {
  font-size: 1.04rem;
  max-width: 680px;
}

.feature-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow);
}

.feature-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 24px;
}

.feature-row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.feature-row span,
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--dark);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 900;
}

.feature-row p,
.step-card p,
.service-card p {
  margin-bottom: 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::after {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

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

.service-card,
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(16, 24, 22, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(16, 24, 22, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover,
.step-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(16, 24, 22, 0.13);
}

.service-card img {
  height: 190px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 24px;
  background: #f8f4ea;
}

.service-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--primary-dark);
  font-weight: 900;
}

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

.step-card span {
  margin-bottom: 28px;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.advantage-list div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 24px;
}

.advantage-list p {
  margin-bottom: 0;
}

.testimonials-section {
  overflow: hidden;
}

.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

blockquote {
  width: min(380px, 80vw);
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  color: var(--dark);
  box-shadow: 0 12px 38px rgba(16, 24, 22, 0.08);
  font-weight: 650;
}

cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 10px 32px rgba(16, 24, 22, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--primary-dark);
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 14px 0 0;
}

.lead-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 162, 74, 0.18), transparent 28%),
    var(--bg);
}

.contact-card,
.lead-form,
.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.contact-card {
  margin-top: 34px;
  padding: 28px;
}

.lead-form {
  padding: 30px;
  display: grid;
  gap: 12px;
}

.form-header {
  margin-bottom: 12px;
}

.form-header p,
.form-header h3 {
  margin-bottom: 6px;
}

label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
}

input,
select {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 15px;
  background: #fbfaf7;
  outline: none;
  color: var(--dark);
}

input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.18);
}

.lead-form small {
  color: var(--muted);
  line-height: 1.5;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 12px;
}

.contact-info a,
.contact-info div {
  padding: 22px;
  border-radius: 22px;
  background: #fbfaf7;
  display: grid;
  gap: 6px;
  min-height: 120px;
}

.contact-info strong {
  color: var(--dark);
}

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

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 40px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 44px;
  padding-top: 22px;
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 16px 44px rgba(32, 179, 91, 0.36);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp img {
  width: 31px;
  height: 31px;
}

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

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

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

  .main-nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .main-nav a:hover {
    background: var(--bg-soft);
  }

  .main-nav a::after {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .advantages-grid,
  .lead-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .steps-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card img {
    min-height: 300px;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 74px 0 58px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .trust-list {
    flex-direction: column;
  }

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

  .box-top,
  .box-bottom {
    position: static;
    margin-top: 12px;
  }

  .stats-grid,
  .cards-grid,
  .steps-grid,
  .advantage-list,
  .contact-info,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}
