:root {
  --bg: #f4f0e8;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #171717;
  --ink-soft: #505050;
  --line: rgba(23, 23, 23, 0.09);
  --brand: #f28c18;
  --brand-deep: #ca6b05;
  --accent: #111111;
  --whatsapp: #20c35a;
  --shadow-soft: 0 18px 45px rgba(20, 20, 20, 0.08);
  --shadow-strong: 0 28px 70px rgba(20, 20, 20, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-body: "Barlow", sans-serif;
  --font-head: "Sora", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(242, 140, 24, 0.18), transparent 26%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 45%, #f6f1e8 100%);
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section-space {
  padding: 5.5rem 0;
}

.eyebrow,
.mini-label,
.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.eyebrow::before,
.mini-label::before,
.showcase-tag::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.1;
}

p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin-bottom: 1rem;
}

.row-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  max-width: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #111111, #2d2d2d);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(12px);
}

.btn-whatsapp,
.btn-whatsapp-solid {
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #0f9f43);
  box-shadow: 0 14px 35px rgba(32, 195, 90, 0.28);
}

.btn-full {
  width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 242, 0.82);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 4.25rem;
  height: 4.25rem;
  flex: 0 0 4.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.15rem;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.2;
}

.inline-link {
  font-weight: 600;
  text-decoration: none;
}

.hero {
  padding: 2.6rem 0 4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.15rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.hero-highlights span {
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.hero-proof {
  max-width: 52ch;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--brand);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  min-height: 100%;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.84));
  pointer-events: none;
}

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

.hero-card-main {
  min-height: 34rem;
}

.hero-card-side {
  display: flex;
  flex-direction: column;
  min-height: 34rem;
}

.hero-card-copy,
.hero-side-info {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  color: #fff;
}

.hero-card-copy p,
.hero-side-info span {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.35rem;
}

.hero-card-copy strong,
.hero-side-info strong {
  font-size: 1.12rem;
}

.stats-strip {
  padding-bottom: 1rem;
}

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

.stat-item {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.stat-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
  font-size: 1rem;
}

.benefits-grid,
.solutions-grid {
  display: grid;
  gap: 1rem;
}

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

.benefit-card,
.solution-card,
.faq-item,
.authority-box,
.cta-banner,
.final-cta-box {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.benefit-card,
.solution-card {
  padding: 1.5rem;
}

.benefit-card h3,
.solution-card h3,
.authority-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.showcase-panel {
  position: relative;
  overflow: hidden;
  min-height: 29rem;
  border-radius: var(--radius-lg);
}

.showcase-panel-large {
  grid-row: span 2;
  min-height: 100%;
}

.showcase-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70%;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.88));
}

.showcase-copy {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  color: #fff;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.showcase-copy h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  margin-bottom: 0.55rem;
}

.dark-copy .showcase-tag,
.dark-copy .showcase-tag::before {
  color: #ffe7ca;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(242, 140, 24, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.97), rgba(49, 49, 49, 0.95));
}

.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.video-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.video-stack {
  display: grid;
  gap: 1rem;
}

.video-card {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0f0f0f;
}

.video-card-featured {
  min-height: 35rem;
}

.video-launcher,
.video-frame iframe {
  width: 100%;
  height: 100%;
}

.video-launcher {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.82));
}

.video-overlay {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
}

.play-pill {
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.video-frame {
  position: absolute;
  inset: 0;
}

.video-card.is-active .video-launcher {
  display: none;
}

.video-card iframe {
  border: 0;
}

.authority-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
}

.authority-list {
  display: grid;
  gap: 1rem;
}

.authority-item {
  padding: 1.4rem 0 1.4rem 1.2rem;
  border-left: 4px solid rgba(242, 140, 24, 0.72);
}

.authority-box {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(242, 140, 24, 0.22), transparent 30%),
    linear-gradient(180deg, #fffaf1, #ffffff);
}

.authority-box h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.phone-line,
.service-area {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.4rem;
  text-align: left;
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.4rem 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.4rem;
}

.final-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(34, 34, 34, 0.96)),
    #111;
}

.final-cta-box h2,
.final-cta-box p {
  color: #fff;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer {
  padding: 0 0 3rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.footer-layout h3 {
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

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

.brand-footer {
  margin-bottom: 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #0f9f43);
  box-shadow: 0 22px 38px rgba(32, 195, 90, 0.34);
}

.floating-whatsapp-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.floating-whatsapp-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.floating-whatsapp-text {
  display: grid;
  line-height: 1.05;
}

.floating-whatsapp-text small {
  color: rgba(255, 255, 255, 0.82);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .hero-layout,
  .authority-layout,
  .video-layout,
  .showcase-grid,
  .benefits-grid,
  .stats-grid,
  .solutions-grid,
  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-panel-large {
    grid-row: auto;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-card-side {
    min-height: 20rem;
  }
}

@media (max-width: 760px) {
  .section-space {
    padding: 4rem 0;
  }

  .topbar-inner,
  .row-heading,
  .cta-banner,
  .final-cta-box,
  .footer-layout,
  .authority-layout,
  .video-layout,
  .showcase-grid,
  .hero-layout,
  .stats-grid,
  .benefits-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .inline-link {
    display: none;
  }

  .brand {
    align-items: center;
    gap: 0.7rem;
  }

  .brand-mark {
    width: 3.6rem;
    height: 3.6rem;
    flex-basis: 3.6rem;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-card-main,
  .video-card-featured,
  .showcase-panel,
  .showcase-panel-large {
    min-height: 22rem;
  }

  .cta-banner,
  .final-cta-box,
  .authority-box,
  .footer-layout {
    padding: 1.4rem;
  }

  .floating-whatsapp {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }
}
