:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d7dce4;
  --paper: #f8fafc;
  --panel: #ffffff;
  --dark: #0b1220;
  --accent: #12b981;
  --accent-dark: #087f5b;
  --warn: #f59e0b;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

.top-strip {
  position: relative;
  z-index: 25;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 185, 129, 0.16), rgba(245, 158, 11, 0.1)),
    #050b14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-strip-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 42px;
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  gap: 10px;
  align-items: center;
  margin: 0 auto;
}

.top-pill,
.top-whatsapp {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 30px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 850;
}

.top-pill {
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.top-pill i {
  color: var(--accent);
}

.top-whatsapp {
  justify-self: end;
  padding: 0 12px;
  color: #052e22;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(18, 185, 129, 0.24);
}

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

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #fff;
  background: rgba(11, 18, 32, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--dark);
  background: linear-gradient(135deg, #ffffff, #a7f3d0);
  border-radius: var(--radius);
  font-size: 13px;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a,
.button,
.header-cta,
.trust-list li,
.card span {
  gap: 8px;
  align-items: center;
}

.main-nav a,
.card span {
  display: inline-flex;
}

.main-nav i,
.header-cta i,
.button i {
  font-size: 0.95em;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #052e22;
  background: var(--accent);
  box-shadow: 0 12px 25px rgba(18, 185, 129, 0.28);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 4800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  animation: heroKenBurns 6s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.95) 0%, rgba(11, 18, 32, 0.72) 38%, rgba(11, 18, 32, 0.15) 100%),
    linear-gradient(0deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 54px;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions,
.trust-list,
.hero-controls {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content .eyebrow {
  animation-delay: 120ms;
}

.hero-content h1 {
  animation-delay: 220ms;
}

.hero-copy {
  animation-delay: 340ms;
}

.hero-actions {
  animation-delay: 460ms;
}

.trust-list {
  animation-delay: 580ms;
}

.hero-controls {
  animation-delay: 700ms;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 8vw, 84px);
}

.hero h1 {
  position: relative;
}

.hero h1::after {
  position: absolute;
  inset: auto 0 -10px 0;
  width: min(360px, 70%);
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
  transform-origin: left;
  animation: heroLineIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 720ms both;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.hero-actions.compact {
  margin-top: 22px;
}

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

.trust-list li {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 14px;
}

.hero-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 24px;
}

.hero-controls button {
  min-height: 38px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.hero-controls button.is-active {
  color: #052e22;
  background: var(--accent);
  border-color: var(--accent);
}

.marquee-band {
  overflow: hidden;
  color: #fff;
  background: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

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

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.split p {
  margin-top: 18px;
  max-width: 720px;
  font-size: 18px;
}

.service-panel,
.card,
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.service-panel {
  padding: 26px;
}

.service-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.service-panel li::before {
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  content: "✓";
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 12px;
  font-size: 17px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stats-band div {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: #fff;
}

.stats-band i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #052e22;
  background: #d1fae5;
  border-radius: var(--radius);
  font-size: 20px;
}

.stats-band strong {
  color: #101827;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.stats-band span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

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

.card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card span {
  font-size: 21px;
  font-weight: 900;
}

.card span i {
  color: var(--accent-dark);
}

.card small {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.45;
}

.brand-section {
  padding-top: 46px;
}

.brand-strip,
.product-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-strip span {
  min-width: 130px;
  flex: 1 1 130px;
  padding: 18px 16px;
  color: #182131;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  transition: transform 180ms ease, border-color 180ms ease;
}

.brand-strip span:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.product-strip {
  margin-top: 12px;
}

.product-strip span {
  padding: 10px 12px;
  color: #064e3b;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
}

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

.feature-card {
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #052e22;
  background: #d1fae5;
  border-radius: var(--radius);
  font-size: 20px;
}

.feature-card h3 {
  font-size: 21px;
}

.feature-card p {
  margin-top: 14px;
}

.showcase-section {
  padding-top: 50px;
}

.slider-shell {
  position: relative;
}

.showcase-track {
  display: grid;
  grid-auto-columns: minmax(280px, 36%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #d7dce4;
}

.showcase-card div {
  padding: 20px;
}

.showcase-tag {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 10px;
  color: #064e3b;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-card h3 {
  font-size: 22px;
}

.showcase-card p {
  margin-top: 12px;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #052e22;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.slider-button.prev {
  left: -14px;
}

.slider-button.next {
  right: -14px;
}

.dark-band {
  width: min(1180px, calc(100% - 32px));
  margin-top: 26px;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 185, 129, 0.22), rgba(245, 158, 11, 0.12)),
    #0b1220;
  border-radius: var(--radius);
}

.dark-band .section-heading {
  margin-bottom: 24px;
}

.dark-band h2,
.dark-band h3 {
  color: #fff;
}

.dark-band p {
  color: rgba(255, 255, 255, 0.72);
}

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

.step {
  min-height: 210px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.step > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: #052e22;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 18px;
}

.step h3 {
  font-size: 20px;
}

.step p {
  margin-top: 12px;
}

.testimonial-section {
  padding-top: 56px;
}

.testimonial-slider {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 185, 129, 0.28), rgba(245, 158, 11, 0.1)),
    #101827;
  border-radius: var(--radius);
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(26px, 5vw, 54px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.testimonial.is-active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
  max-width: 860px;
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 850;
}

.testimonial strong {
  color: var(--accent);
}

.packages-section {
  padding-top: 46px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.package-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.package-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #052e22;
  background: #d1fae5;
  border-radius: var(--radius);
  font-size: 19px;
}

.package-card h3 {
  margin-top: 4px;
  font-size: 21px;
}

.package-card p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
}

.package-copy span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 185, 129, 0.2), rgba(255, 255, 255, 0)),
    #111827;
  border-radius: var(--radius);
}

.quality-section h2 {
  color: #fff;
}

.quality-section p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.quality-list {
  display: grid;
  gap: 10px;
}

.quality-list span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 850;
}

.text-block {
  padding-top: 56px;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.text-columns p {
  font-size: 18px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: #111827;
  border-radius: var(--radius);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 44px);
}

.cta-band p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  padding-top: 36px;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #052e22;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 18px 35px rgba(18, 185, 129, 0.42);
  font-size: 25px;
  font-weight: 950;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 31;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-cta a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #052e22;
  background: var(--accent);
  border-radius: var(--radius);
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.24);
}

.mobile-cta a:last-child {
  color: #fff;
  background: #111827;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
}

.footer-cta,
.footer-main,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
}

.footer-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 34px 0;
}

.footer-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-logo {
  color: #fff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 760;
}

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

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.footer-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .top-strip-inner {
    grid-template-columns: auto auto 1fr;
    min-height: 42px;
  }

  .top-pill {
    font-size: 11px;
  }

  .top-pill.hide-small {
    display: none;
  }

  .top-whatsapp {
    font-size: 11px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 620px;
  }

  .split,
  .card-grid,
  .feature-grid,
  .steps,
  .text-columns,
  .cta-band,
  .stats-band,
  .quality-section {
    grid-template-columns: 1fr;
  }

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

  .card {
    min-height: 116px;
  }

  .dark-band,
  .cta-band,
  .quality-section {
    padding: 26px;
  }

  .feature-card,
  .step {
    min-height: auto;
  }

  .showcase-track {
    grid-auto-columns: minmax(260px, 82%);
  }

  .slider-button {
    display: none;
  }
}

@media (max-width: 560px) {
  .top-strip-inner {
    width: min(100% - 20px, 1180px);
    grid-template-columns: 1fr auto;
    gap: 8px;
    min-height: 44px;
  }

  .top-pill:nth-child(2),
  .top-pill.hide-small {
    display: none;
  }

  .top-pill,
  .top-whatsapp {
    min-height: 32px;
    padding: 0 9px;
  }

  .top-whatsapp {
    max-width: 175px;
    overflow: hidden;
    justify-self: end;
    text-overflow: ellipsis;
  }

  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    font-size: 13px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
  }

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

  .package-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .package-icon {
    width: 42px;
    height: 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(11, 18, 32, 0.96) 0%, rgba(11, 18, 32, 0.66) 62%, rgba(11, 18, 32, 0.22) 100%);
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-controls button {
    flex: 1 1 100%;
  }

  .marquee-track {
    animation-duration: 28s;
  }

  .footer-cta,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    display: grid;
    padding-bottom: 94px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-panel {
    padding: 18px;
  }

  .footer-cta {
    padding: 30px 0;
  }
}
