:root {
  --primary: #ff8c00;
  --secondary: #ffc107;
  --accent: #e53935;
  --dark: #1e293b;
  --text: #253044;
  --muted: #64748b;
  --light: #ffffff;
  --success: #22c55e;
  --surface: #fff7e6;
  --line: rgba(30, 41, 59, 0.1);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 20px 45px rgba(30, 41, 59, 0.12);
  --shadow-strong: 0 30px 70px rgba(229, 57, 53, 0.2);
  --radius: 12px;
  --container: min(1160px, calc(100% - 32px));
  --header-height: 78px;
  --font-heading: "Poppins", Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #ffffff;
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--accent);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(229, 57, 53, 0.35);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: #ffffff;
  background: var(--dark);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 20%, #fff0bf, #ffffff 42%, #fff7ea);
  transition: opacity 260ms ease, visibility 260ms ease;
  animation: loaderOut 900ms ease 700ms forwards;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: var(--shadow-strong);
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.btn .bi,
.header-link .bi,
.float-btn .bi,
.carousel-btn .bi,
.back-to-top .bi {
  font-size: 1.05rem;
  line-height: 1;
}

.icon-box .bi {
  font-size: 1.35rem;
  line-height: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
}

.top-ribbon {
  position: relative;
  z-index: 101;
  color: #ffffff;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  font-size: 0.86rem;
  font-weight: 800;
}

.top-ribbon .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
  padding: 4px 0;
  text-align: center;
}

.top-ribbon a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(30, 41, 59, 0.08);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
  width: var(--container);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 16px 30px rgba(229, 57, 53, 0.23);
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(30, 41, 59, 0.08);
}

.brand strong {
  display: block;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: var(--radius);
  padding: 10px 13px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links > a:hover,
.nav-links > a.is-active {
  color: var(--accent);
  background: rgba(255, 140, 0, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  padding: 9px 12px;
  color: var(--dark);
  background: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(30, 41, 59, 0.06);
}

.header-link.whatsapp {
  color: #ffffff;
  border-color: rgba(34, 197, 94, 0.2);
  background: var(--success);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 14px 26px rgba(229, 57, 53, 0.2);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #ffffff;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 18px 34px rgba(229, 57, 53, 0.24);
}

.btn-primary:hover {
  color: #ffffff;
  box-shadow: 0 24px 42px rgba(229, 57, 53, 0.3);
}

.btn-secondary {
  color: var(--dark);
  border-color: rgba(255, 193, 7, 0.28);
  background: linear-gradient(135deg, #ffffff, #fff7da);
  box-shadow: 0 16px 30px rgba(30, 41, 59, 0.08);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  color: var(--accent);
  background: #ffffff;
}

.btn-nav {
  min-height: 44px;
  padding: 11px 16px;
}

.hero-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 7vw, 86px) 0 clamp(36px, 5vw, 64px);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.68), transparent 22%),
    linear-gradient(135deg, #ff8c00 0%, #ffc107 52%, #fff0b8 100%);
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.46) 25%, transparent 25%);
  background-size: 52px 52px;
}

.hero-premium::after {
  content: "";
  position: absolute;
  inset: auto -20% -48% -20%;
  z-index: -1;
  height: 56%;
  background: rgba(255, 255, 255, 0.38);
  transform: rotate(-3deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  color: #ffffff;
}

.admission-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(30, 41, 59, 0.08);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 16px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.85rem, 6vw, 5.35rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.06rem, 2.2vw, 1.28rem);
  font-weight: 650;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(30, 41, 59, 0.08);
}

.trust-badges i {
  color: var(--success);
}

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

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.94rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-shell {
  position: relative;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 34px 80px rgba(130, 70, 0, 0.28);
}

.hero-image-shell img {
  width: 100%;
  aspect-ratio: 1717 / 916;
  object-fit: cover;
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 57, 53, 0.2), transparent 38%);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card strong {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.float-one {
  top: 14px;
  left: -22px;
}

.float-two {
  right: -20px;
  top: 34%;
  animation-delay: 500ms;
}

.float-three {
  bottom: 18px;
  left: 24px;
  animation-delay: 900ms;
}

.float-four {
  right: 16px;
  bottom: -18px;
  animation-delay: 1300ms;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.trust-bar {
  position: relative;
  margin-top: -20px;
  z-index: 4;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 140, 0, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.trust-stat {
  display: grid;
  gap: 3px;
  min-height: 110px;
  align-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.trust-stat strong {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 900;
  line-height: 1;
}

.trust-stat > span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: clamp(66px, 8vw, 108px) 0;
}

.section-tight {
  padding: clamp(48px, 6vw, 78px) 0;
}

.section-alt {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 193, 7, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff8ea 100%);
}

.section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 193, 7, 0.18), transparent 22%),
    linear-gradient(135deg, var(--dark), #111827);
}

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

.section-head.left {
  margin-inline: 0;
  text-align: left;
}

.section-head .eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  background: #fff4d6;
  box-shadow: none;
}

.section-head h2,
.content-block h2,
.cta-panel h2,
.form-card h2,
.contact-card h2 {
  margin: 0 0 12px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-dark .section-head h2,
.section-dark .section-head p {
  color: #ffffff;
}

.section-dark .eyebrow {
  color: #ffffff;
  background: var(--accent);
}

.section-head p,
.content-block p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.premium-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(30, 41, 59, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
}

.premium-card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 57, 53, 0.22);
  box-shadow: var(--shadow);
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 14px 24px rgba(229, 57, 53, 0.2);
}

.icon-box i {
  font-size: 1.35rem;
  line-height: 1;
}

.premium-card h3,
.result-card h3,
.value-card h3,
.journey-step h3,
.review-card h3,
.contact-item h3 {
  margin: 18px 0 8px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}

.premium-card p,
.result-card p,
.value-card p,
.journey-step p,
.contact-item p {
  margin: 0;
  color: var(--muted);
}

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

.result-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  text-align: center;
}

.result-card strong {
  display: block;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.result-card h3,
.result-card p {
  color: #ffffff;
}

.comparison-wrap {
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  text-align: left;
  vertical-align: middle;
}

.comparison-table th {
  color: #ffffff;
  background: linear-gradient(135deg, var(--dark), #334155);
  font-family: var(--font-heading);
}

.comparison-table td {
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.compare-negative,
.compare-positive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
}

.compare-negative {
  color: var(--accent);
}

.compare-positive {
  color: var(--success);
}

.compare-negative .bi,
.compare-positive .bi {
  font-size: 1rem;
  line-height: 1;
}

.hero-actions.is-centered {
  justify-content: center;
}

.footer-whatsapp {
  margin-top: 8px;
}

.journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.journey-step {
  position: relative;
  border: 1px solid rgba(255, 140, 0, 0.18);
  border-radius: var(--radius);
  padding: 24px 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(30, 41, 59, 0.08);
}

.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.step-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  font-family: var(--font-heading);
  font-weight: 800;
}

.demo-band {
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(135deg, var(--accent), var(--primary));
}

.demo-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.demo-content h2 {
  margin: 8px 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 900;
}

.demo-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.demo-content .eyebrow {
  color: var(--accent);
}

.review-shell {
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 300ms ease;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(30, 41, 59, 0.08);
}

.review-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-family: var(--font-heading);
  font-weight: 900;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.stars .bi {
  font-size: 0.82rem;
  line-height: 1;
}

.stars-label {
  margin-left: 6px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
}

.review-card blockquote {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--dark);
  cursor: pointer;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.54fr);
  gap: 34px;
  align-items: start;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(30, 41, 59, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.local-seo-card,
.cta-panel,
.content-block,
.form-card,
.contact-card,
.value-card {
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.local-seo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 5vw, 38px);
}

.local-seo-card h2 {
  margin: 0 0 10px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 900;
}

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

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 56px);
  text-align: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.28), transparent 22%),
    linear-gradient(135deg, #ffffff, #fff4d8);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.58), transparent 22%),
    linear-gradient(135deg, var(--primary), var(--secondary));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: center;
}

.page-hero h1 {
  max-width: 800px;
  font-size: clamp(2.55rem, 6vw, 4.65rem);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.12rem;
  font-weight: 650;
}

.page-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.page-hero-card strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.page-hero-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.content-block {
  padding: clamp(26px, 5vw, 42px);
}

.content-block p + p {
  margin-top: 15px;
}

.value-card {
  min-height: 210px;
  padding: 24px;
}

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

.approach-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 140, 0, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  min-height: 42px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--dark);
  background: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(30, 41, 59, 0.06);
}

.filter-btn.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.gallery-masonry {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  break-inside: avoid;
  cursor: pointer;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img,
.gallery-art {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item img.is-pos-top {
  object-position: center 18%;
}

.gallery-item img.is-pos-mid {
  object-position: center 42%;
}

.gallery-item img.is-pos-low {
  object-position: center 72%;
}

.gallery-item.tall img,
.gallery-item.tall .gallery-art {
  min-height: 390px;
}

.gallery-item:hover img,
.gallery-item:hover .gallery-art {
  transform: scale(1.05);
}

.gallery-art {
  display: block;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.56), transparent 18%),
    linear-gradient(135deg, var(--primary), var(--secondary));
}

.art-red {
  background:
    radial-gradient(circle at 28% 25%, rgba(255, 255, 255, 0.5), transparent 20%),
    linear-gradient(135deg, var(--accent), var(--primary));
}

.art-dark {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 193, 7, 0.28), transparent 24%),
    linear-gradient(135deg, var(--dark), #334155);
}

.gallery-caption {
  position: absolute;
  inset-inline: 16px;
  bottom: 16px;
  border-radius: var(--radius);
  padding: 15px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 26px rgba(30, 41, 59, 0.12);
}

.gallery-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
}

.gallery-caption small {
  color: var(--accent);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.76);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  position: relative;
  width: min(780px, 100%);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.lightbox-close,
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--accent);
  cursor: pointer;
}

.lightbox-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 360px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.lightbox-media img,
.lightbox-media .gallery-art {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.lightbox-panel h2 {
  margin: 18px 8px 4px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 900;
}

.lightbox-panel p {
  margin: 0 8px 6px;
  color: var(--muted);
}

.contact-card,
.form-card {
  padding: clamp(24px, 5vw, 36px);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: var(--radius);
  padding: 17px;
  background: #fff9ea;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(30, 41, 59, 0.14);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--dark);
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-grid textarea {
  min-height: 126px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.13);
}

.form-grid .is-invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--accent);
  font-weight: 800;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-section {
  padding: 0;
}

.map-frame {
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  border: 0;
}

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

.directions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateY(-34px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 140, 0, 0.12), transparent 22%),
    #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.95fr 0.85fr 1.05fr;
  gap: 26px;
  padding: 56px 0;
}

.footer-brand strong {
  color: #ffffff;
}

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

.site-footer h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0 0 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover {
  color: var(--secondary);
}

.footer-links,
.course-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links a[aria-label="WhatsApp"] {
  background: var(--success);
}

body.nav-open {
  overflow: hidden;
}

.footer-map {
  overflow: hidden;
  min-height: 170px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-map iframe {
  width: 100%;
  height: 170px;
  border: 0;
  filter: saturate(0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 16px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 220;
  display: grid;
  gap: 10px;
}

.float-btn,
.back-to-top {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(30, 41, 59, 0.22);
}

.float-btn {
  width: 56px;
  height: 56px;
}

.float-wa {
  background: var(--success);
}

.float-call {
  background: var(--accent);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 221;
  width: 56px;
  height: 52px;
  opacity: 0;
  pointer-events: none;
  background: var(--dark);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 250;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.mobile-sticky-cta .btn {
  flex: 1;
  min-height: 46px;
  padding-inline: 10px;
  font-size: 0.84rem;
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.72);
}

.exit-popup[hidden] {
  display: none;
}

.popup-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 22px;
  width: min(860px, 100%);
  border-radius: var(--radius);
  padding: 24px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 193, 7, 0.24), transparent 25%),
    #ffffff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.popup-copy {
  align-self: center;
}

.popup-copy h2 {
  margin: 10px 0;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
}

.popup-copy p {
  color: var(--muted);
}

.popup-panel .form-grid {
  grid-template-columns: 1fr;
  margin: 0 0 14px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 540ms ease var(--reveal-delay, 0ms), transform 540ms ease var(--reveal-delay, 0ms);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

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

@media (max-width: 1120px) {
  .grid-4,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
  }

  @media (max-width: 480px) {
    .trust-strip {
      grid-template-columns: 1fr;
    }

    .trust-stat {
      min-height: auto;
      padding: 14px;
    }
  }

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

@media (max-width: 940px) {
  :root {
    --header-height: 72px;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-right: 58px;
  }

  .nav-toggle {
    position: fixed;
    top: 52px;
    right: 12px;
    z-index: 240;
    display: inline-grid;
    flex: 0 0 auto;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 190ms ease, transform 190ms ease;
  }

  .nav-links.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links > a {
    justify-content: flex-start;
    width: 100%;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .contact-grid,
  .faq-grid,
  .local-seo-card,
  .popup-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 4.4rem);
  }

  .hero-visual {
    max-width: 720px;
  }

  .float-one,
  .float-two,
  .float-three,
  .float-four {
    position: static;
    margin-top: 10px;
    animation: none;
  }

  .hero-visual {
    display: grid;
  }

  .demo-content,
  .directions-bar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .journey {
    grid-template-columns: 1fr;
  }

  .journey-step:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 38px;
    bottom: -16px;
    width: 2px;
    height: 16px;
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 680px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, 1160px);
  }

  .top-ribbon .container {
    min-height: 34px;
    font-size: 0.78rem;
    display: grid;
    gap: 0;
    line-height: 1.35;
  }

  .top-ribbon a,
  .top-ribbon span {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }

  .brand strong {
    max-width: 210px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-premium {
    padding-top: 42px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 9.8vw, 3.1rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .demo-content .btn,
  .local-seo-card .btn {
    width: 100%;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .results-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 620px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .gallery-masonry {
    columns: 1;
  }

  .gallery-item img,
  .gallery-art,
  .gallery-item.tall img,
  .gallery-item.tall .gallery-art {
    min-height: 280px;
  }

  .lightbox-media,
  .lightbox-media img,
  .lightbox-media .gallery-art {
    min-height: 260px;
  }

  .floating-actions {
    right: 12px;
    bottom: 78px;
  }

  .float-btn,
  .back-to-top {
    width: 50px;
    height: 50px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .back-to-top {
    display: none;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 178px;
    font-size: 0.9rem;
  }

  .brand-mark,
  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }
}

/* Testimonials Carousel Buttons Disabled State */
.carousel-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

/* Form Success state transition */
.form-success-state {
  display: none;
  text-align: center;
  padding: 38px 20px;
  animation: formSuccessScaleIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes formSuccessScaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-submitted > *:not(.form-success-state) {
  display: none !important;
}

.form-submitted .form-success-state {
  display: block !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
