/* ======= THEME ======= */
:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-2: rgba(255, 255, 255, 0.6);
  --ink: #0b0b0b;
  --ink-dim: #4a4a4a;
  --brand: #f5c518; /* Yellow */
  --brand-2: #10b981; /* Mint */
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --glass-blur: blur(12px);
  color-scheme: light;
  accent-color: var(--brand);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

::selection {
  background: rgba(245, 197, 24, 0.35);
  color: var(--ink);
}

body {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ======= TYPE ======= */
h1,
h2,
h3 {
  letter-spacing: -0.02em;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
}

h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

p {
  color: var(--ink-dim);
}

.section-subtitle {
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0.35rem auto 0;
  font-size: 1.1rem;
}

.grey-text {
  color: var(--ink-dim);
}

.yellow-highlight {
  background: linear-gradient(180deg, var(--brand) 40%, transparent 100%);
  color: var(--ink);
  padding: 0 0.4rem;
  border-radius: 4px;
}

/* ======= LINKS ======= */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
.whatsapp-btn:focus-visible,
.preview-link:focus-visible,
.view-live-btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

/* ======= LAYOUT ======= */
section {
  scroll-margin-top: 96px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ======= HEADER ======= */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  backdrop-filter: var(--glass-blur);
  transition: background 0.3s, border-color 0.3s;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* .logo img {
  height: 40px;
} */

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav a {
  color: var(--ink-dim);
  transition: color 0.25s;
}

.nav a:hover {
  color: var(--ink);
}

.nav-button {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
}

.nav-button:hover {
  background: rgba(245, 197, 24, 0.08);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.open .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav.open .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav.open .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    background: var(--surface);
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
  }

  .nav.open {
    padding: 1rem;
    max-height: 340px;
    opacity: 1;
    border-bottom: 1px solid var(--border);
  }

  .nav ul {
    flex-direction: column;
  }
}

/* ======= BUTTONS ======= */
.whatsapp-btn {
  background: linear-gradient(180deg, var(--brand), #e8b70a);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(245, 197, 24, 0.25);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  will-change: transform;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(245, 197, 24, 0.32);
  text-decoration: none;
}

.whatsapp-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: -50% auto auto -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.whatsapp-btn:hover::after {
  transform: translateX(100%);
}

.whatsapp-btn::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%230b0b0b" viewBox="0 0 24 24"><path d="M20.52 3.48A11.9 11.9 0 0 0 12.06 0C5.5 0 .22 5.28 .22 11.84c0 2.08.54 4.1 1.57 5.9L0 24l6.43-1.66a11.76 11.76 0 0 0 5.63 1.44h.01c6.56 0 11.84-5.28 11.84-11.84 0-3.17-1.24-6.15-3.39-8.46zM12.07 21.3c-1.8 0-3.56-.49-5.09-1.41l-.36-.21-3.82.98 1.02-3.72-.24-.38A9.63 9.63 0 0 1 2 11.85c0-5.58 4.54-10.12 10.13-10.12 2.7 0 5.24 1.05 7.15 2.97a9.97 9.97 0 0 1 2.97 7.15c0 5.58-4.54 10.12-10.18 10.45z"/><path d="M17.24 14.09c-.3-.15-1.77-.87-2.05-.97-.27-.10-.47-.15-.67.15-.20.3-.77.97-.95 1.17-.18.2-.35.23-.65.08-.30-.15-1.26-.46-2.4-1.47-.89-.79-1.49-1.76-1.66-2.06-.18-.3-.02-.46.13-.61.13-.13.3-.35.45-.53.15-.18.2-.3.3-.5.10-.2.05-.38-.02-.53-.08-.15-.67-1.62-.92-2.22-.24-.60-.48-.52-.67-.53l-.57-.01c-.2 0-.53.08-.80.38-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.07 2.87 1.22 3.07.15.2 2.1 3.2 5.08 4.49.71.31 1.26.5 1.69.64.71.23 1.36.2 1.88.12.57-.08 1.77-.72 2.02-1.42.25-.70.25-1.3.17-1.42-.08-.12-.28-.2-.58-.35z"/></svg>')
    no-repeat center/contain;
}

@media (max-width: 768px) {
  .mobile-whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
  }
}

/* ======= HERO ======= */
#hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 5% 80px;
  display: flex;
  gap: 72px;
  align-items: center;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.05), transparent);
}

.hero-left-column {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-left-column h1 {
  color: var(--ink);
}

.hero-left-column .whatsapp-btn {
  margin-top: 1rem;
}

.attention-dot {
  position: relative;
  padding-left: 20px;
  color: var(--brand-2);
  font-weight: 600;
  font-size: 0.9rem;
}

.attention-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
}

.proof-stats {
  display: flex;
  gap: 0.6rem 1rem;
  margin: 0.5rem 0 0;
  flex-wrap: wrap;
}

.proof-stats span {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.proof-stats span::before {
  content: "✓ ";
  color: var(--brand);
  font-weight: 800;
}

.hero-right-column {
  flex: 1;
  position: relative;
}

.hero-media {
  position: relative;
  min-height: 440px;
  perspective: 1000px;
}

.hero-card {
  position: absolute;
  width: 56%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  transition: transform 0.5s ease-out;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.hero-card.a {
  left: 2%;
  top: 6%;
  transform: translate3d(0, 0, 0) rotate(-6deg);
}

.hero-card.b {
  right: 4%;
  top: 14%;
  transform: translate3d(0, 0, 0) rotate(5deg);
}

@media (max-width: 900px) {
  #hero {
    flex-direction: column;
    gap: 32px;
    padding: 120px 5% 64px;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-card {
    width: 64%;
  }
}

@media (max-width: 400px) {
  .hero-card {
    width: 70%;
  }
  .hero-card.a {
    left: 0;
    top: 0;
  }
  .hero-card.b {
    right: 0;
    top: 20%;
  }
}

/* ======= GLASS/ANIMATIONS ======= */
.glass-card {
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

/* ======= INDUSTRIES ======= */
#industries {
  --ticker-gap: 4rem;
  --ticker-speed: 28s;
  --ticker-bg: var(--bg, #ffffff);
  --ticker-fg: var(--ink-dim);
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface-2);
}

#industries p {
  position: relative;
  display: block;
  margin: 0;
  padding: 10px 0;
  color: transparent;
  white-space: nowrap;
}

#industries p::before {
  content: var(
    --industries-items,
    "Tech • E-commerce • Service Businesses • Agencies • Hospitality • Real Estate • Fintech • Healthcare • Logistics • Education • SaaS • Creators • NGOs • Web3 • AI Tools • Gaming • Travel • Food & Beverage • Events • Fashion • Beauty • Fitness • Media • Telecom • Finance • Energy • Agriculture"
  );
  position: absolute;
  left: 0;
  top: 0;
  padding-inline: 2rem;
  color: var(--ticker-fg);
  white-space: nowrap;
  will-change: transform;
  animation: industries-marquee var(--ticker-speed) linear infinite;
}

#industries p::after {
  animation-delay: calc(var(--ticker-speed) / -2);
}

#industries:hover p::before,
#industries:hover p::after {
  animation-play-state: paused;
}

#industries::before,
#industries::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  z-index: 1;
}

#industries::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--surface-2),
    rgba(255, 255, 255, 0)
  );
}

#industries::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--surface-2),
    rgba(255, 255, 255, 0)
  );
}

@keyframes industries-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #industries p {
    color: var(--ticker-fg);
    padding: 10px 2rem;
    white-space: normal;
  }
  #industries p::before,
  #industries p::after {
    content: none;
    animation: none;
  }
  #industries {
    overflow: auto;
  }
}

/* ======= REVELATION ======= */
#revelation {
  padding: 80px 5%;
  background: var(--bg);
}

.revelation-container {
  text-align: center;
}

.revelation-closer {
  margin-bottom: 2rem;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2.2rem 0;
  text-align: left;
}

.example-item {
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.example-item::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  vertical-align: -1px;
  background: radial-gradient(
      circle at 30% 30%,
      var(--brand) 0 40%,
      transparent 41%
    ),
    radial-gradient(circle at 70% 70%, var(--brand-2) 0 40%, transparent 41%);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }
}

/* ======= SHOW OF WORK ======= */
#show-of-work {
  padding: 80px 5%;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), transparent);
}

.show-of-work-container {
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.work-item {
  overflow: hidden;
  padding: 1rem;
}

.work-screenshot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.work-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.35s ease;
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.view-live-btn {
  display: inline-block;
  background: var(--surface);
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.view-live-btn:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.work-screenshot:hover img {
  transform: scale(1.04);
}

.work-screenshot:hover .work-overlay {
  opacity: 1;
}

.work-details {
  text-align: left;
  padding: 0.8rem 0.2rem 0;
}

.work-result {
  color: var(--ink);
  font-weight: 600;
}

.work-description {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

/* ======= BEFORE / AFTER ======= */
.before-after-section {
  margin-top: 5rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 4rem;
}

.comparison-item {
  padding: 1rem;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.before,
.after {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.before h4,
.after h4 {
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-weight: 600;
}

.before img,
.after img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.before:hover img,
.after:hover img {
  transform: scale(1.02);
}

.before::before,
.after::before {
  content: attr(data-label);
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand);
  color: var(--ink);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.before::before {
  content: "Before";
}

.after::before {
  content: "After";
  background: var(--brand-2);
}

.before p,
.after p {
  font-size: 0.95rem;
  color: var(--ink-dim);
}

.after p strong {
  color: var(--ink);
}

@media (max-width: 720px) {
  .before-after {
    grid-template-columns: 1fr;
  }

  .before img,
  .after img {
    max-height: 250px;
  }
}

/* ======= SOCIAL PROOF ======= */
#social-proof {
  padding: 80px 5%;
  background: var(--bg);
}

.social-proof-container {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.4rem;
  margin: 2.2rem 0;
}

.testimonial-card {
  padding: 1.6rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
}

.testimonial-author {
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--ink-dim);
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.6rem 0;
  flex-wrap: wrap;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ink-dim);
}

/* ======= OUTCOMES (VALUE PROP) ======= */
#value-prop {
  padding: 80px 5%;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.05), transparent);
}

.value-container {
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 2.2rem 0;
}

.value-item {
  padding: 1.8rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.value-proof {
  margin-top: 0.65rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
}

.value-closer {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* ======= SERVICES (CAPABILITIES) ======= */
#capabilities {
  padding: 80px 5%;
  background: var(--bg);
}

.capabilities-container {
  text-align: center;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin: 2.2rem 0;
}

.capability-item {
  padding: 1.8rem;
  text-align: left;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.capability-proof {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-dim);
}

.preview-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--brand);
  transition: border-color 0.2s;
}

.preview-link:hover {
  border-color: var(--brand-2);
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

/* Mid-page CTA */
.work-cta {
  text-align: center;
  margin-top: 24px;
}

.work-cta p {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.work-cta .whatsapp-btn {
  margin-top: 1rem;
}

/* ======= URGENCY / CAPACITY ======= */
#urgency {
  padding: 60px 5%;
  text-align: center;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.1), transparent);
  border-top: 1px solid var(--border);
}

.urgency-container {
  max-width: 800px;
  margin: 0 auto;
}

.spots-counter {
  padding: 2rem;
  margin: 2rem 0;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.spots-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.5px;
}

.spots-label {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.next-opening {
  font-size: 0.9rem;
  color: var(--ink-dim);
  margin-top: 1rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.timer-unit {
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  min-width: 70px;
}

.timer-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}

.timer-label {
  font-size: 0.8rem;
  color: var(--ink-dim);
}

/* ======= FAQ ======= */
#faq {
  padding: 80px 5%;
  background: var(--bg);
}

.faq-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-grid {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.3rem;
  cursor: pointer;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.faq-item[open] .faq-question {
  margin-bottom: 0.8rem;
}

.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: var(--ink-dim);
  text-align: left;
  font-size: 0.95rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--brand);
  font-weight: 700;
  transition: transform 0.2s;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

/* ======= FINAL CTA ======= */
#final-cta {
  padding: 80px 5%;
  text-align: center;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.1), transparent);
}

#final-cta h2 {
  margin-bottom: 1rem;
}

#final-cta .whatsapp-btn {
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .sitemap {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .sitemap .area {
    text-align: center;
  }
}

/* ======= UTILITIES ======= */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* ======= MOBILE ======= */
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }

  .spots-number {
    font-size: 2.4rem;
  }
}

/* ======= THEMED CARDS ======= */
.example-item,
.testimonial-card,
.value-item,
.capability-item,
.faq-item,
.spots-counter,
.stats-bar {
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ======= REDUCED MOTION ======= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .attention-dot::before {
    animation: none;
  }
}

/* Footer Container */
#footer {
  background-color: var(--color-primary-bg, #212529);
  color: #fff;
  padding: 3rem 1rem;
}

#footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.logo-text {
  font-family: "Anton SC", sans-serif;
  font-size: 5rem;
  color: #fff;
  font-weight: normal;
}

#footer p {
  max-width: 600px;
  color: #ccc;
}

#footer form {
  position: relative;
  width: 100%;
  /* max-width: 400px; */
  margin-top: 0;
  display: flex;
  flex-direction: row;
  background-color: var(--color-primary-bg, #212529);
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 0.3rem;
  max-width: 100%;
}

#footer input[type="email"] {
  width: 100%;
  /* padding: 0.75rem 6rem 0.75rem 1rem; */
  border-radius: 6px;
  background-color: var(--color-primary-bg, #212529);
  color: #fff;
  border: none;
      padding: 0.75rem 1rem;
}

#footer button[type="submit"] {
  /* position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  bottom: 0.25rem; */
  padding: 0 1.25rem;
  background-color: var(--color-button-bg, #f5c518);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
}

/* Sitemap Full Width */
.sitemap {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  gap: 3rem;
}

.sitemap .area {
  min-width: 150px;
}

.sitemap .area h4 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.sitemap .area ul {
  list-style: none;
  padding: 0;
}

.sitemap .area li {
  margin-bottom: 0.5rem;
}

.sitemap .area a {
  color: #ccc;
  text-decoration: none;
}

.sitemap .area a:hover {
  color: var(--color-button-bg, #f5c518);
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom .scroll-up {
  cursor: pointer;
  text-decoration: underline;
  color: var(--color-button-bg, #f5c518);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  #footer .footer-content {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  #footer form {
    align-self: flex-start;
  }

  #footer form {
    max-width: 50%;
  }
}