/* ===== Variables (light theme) ===== */
:root {
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --text: #334155;
  --text-muted: #64748b;
  --accent: #FBB70F;
  --accent-hover: #e0a50d;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space: 1.25rem;
  --container: min(100% - 2rem, 1100px);
  --header-h: 72px;
}

/* ===== Reset & base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / old Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* ===== Intro: car driving in ===== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.intro-overlay.is-done {
  opacity: 0;
  visibility: hidden;
}

.intro-car-wrap {
  position: absolute;
  left: -120px;
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introCarDrive 2s ease-in-out forwards;
}

.intro-smoke {
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 45px;
  pointer-events: none;
  z-index: 0;
}

.intro-smoke-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(251, 183, 15, 0.45) 0%,
    rgba(251, 183, 15, 0.2) 35%,
    rgba(251, 183, 15, 0.06) 60%,
    transparent 75%
  );
  animation: introSmokePuff 2s ease-in-out infinite;
}

.intro-smoke-puff-1 {
  width: 18px;
  height: 18px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 0s;
}

.intro-smoke-puff-2 {
  width: 22px;
  height: 16px;
  left: 12px;
  top: 35%;
  transform: translateY(-50%);
  animation-delay: 0.3s;
}

.intro-smoke-puff-3 {
  width: 20px;
  height: 20px;
  left: 8px;
  top: 65%;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.intro-smoke-puff-4 {
  width: 14px;
  height: 14px;
  left: 22px;
  top: 48%;
  transform: translateY(-50%);
  animation-delay: 0.2s;
}

.intro-smoke-puff-5 {
  width: 16px;
  height: 18px;
  left: 28px;
  top: 55%;
  transform: translateY(-50%);
  animation-delay: 0.4s;
}

@keyframes introSmokePuff {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.15);
  }
}

.intro-car {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 1;
}

@keyframes introCarDrive {
  0% {
    left: -160px;
    opacity: 0.6;
  }
  15% {
    opacity: 1;
  }
  75% {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
  }
  90% {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
  }
  100% {
    left: calc(100% + 160px);
    transform: translateX(-50%);
    opacity: 0.4;
  }
}

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

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

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

ul,
ol {
  list-style: none;
}

/* ===== Layout ===== */
.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #f8fafc;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

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

.nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:not(.btn):hover {
  color: var(--text);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.06);
}

.hero-cta .btn-ghost {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.hero-cta .btn-ghost:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 6rem);
    padding-bottom: 7rem;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-cta .btn-ghost {
    display: none;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(251, 183, 15, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(251, 183, 15, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(251, 183, 15, 0.05), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-badge.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.hero-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-title .accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 32ch;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}

.hero-scroll.animate-in {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero .hero-scroll {
    display: none !important;
  }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* Animate sections */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Services / Cards ===== */
.services {
  background: var(--bg-elevated);
}

.why-us {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: rgba(251, 183, 15, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Videos ===== */
.videos-section {
  background: var(--bg-elevated);
}

.videos-intro {
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  border-color: rgba(251, 183, 15, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}

.video-play:hover {
  background: rgba(0, 0, 0, 0.4);
}

.play-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(251, 183, 15, 0.35);
  transition: transform 0.2s, background 0.2s;
}

.video-play:hover .play-icon {
  transform: scale(1.08);
  background: var(--accent-hover);
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #fff;
}

.video-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  margin: 0;
}

/* Upload card */
.video-card-upload .video-thumb-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.video-file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.upload-options {
  text-align: center;
  width: 100%;
}

.upload-options p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.upload-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.upload-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

.upload-or {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0.5rem;
}

.youtube-url-input {
  width: 100%;
  max-width: 240px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}

.youtube-url-input::placeholder {
  color: var(--text-muted);
}

.youtube-url-input:focus {
  outline: none;
  border-color: var(--accent);
}

.video-play-upload {
  margin-top: 0.75rem;
  position: relative;
  inset: auto;
  display: inline-flex;
  background: transparent;
}

.video-play-upload .play-icon {
  width: 48px;
  height: 48px;
}

.video-play-upload .play-icon::after {
  border-width: 10px 0 10px 18px;
}

/* Video modal – clean player (no YT feel) */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #334155;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}

.video-modal-close:hover {
  background: var(--border);
  color: var(--text);
  border-color: var(--text-muted);
}

.video-modal-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-modal-player iframe,
.video-modal-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 600px) {
  .video-modal-close {
    top: -44px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* ===== Testimonials carousel ===== */
.testimonials-section {
  background: var(--bg-elevated);
}

.testimonials-slider {
  overflow: hidden;
  margin: 0 -0.5rem 1.5rem;
  width: 100%;
  position: relative;
}

.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  --slide-index: 0;
  --slide-page: 0;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 0.5rem;
  min-width: 0;
  box-sizing: border-box;
}

.testimonial-card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.testimonials-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.testimonials-dots button:hover {
  background: var(--text-muted);
}

.testimonials-dots button.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Mobile: 1 card = full width (20% of track), slide one card at a time */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 20%;
  }
  .testimonials-track {
    width: 500%;
    transform: translateX(calc(-1 * var(--slide-index) * 20%));
  }
}

/* Desktop: 3 cards visible (track 500/3 % so 3 cards = viewport), slide by page */
@media (min-width: 769px) {
  .testimonial-card {
    flex: 0 0 20%;
  }
  .testimonials-track {
    width: calc(500% / 3);
    transform: translateX(calc(-1 * var(--slide-page) * 60%));
  }
}

/* ===== Why us / Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 580px;
}

@media (max-width: 600px) {
  .stats {
    gap: 0.5rem;
  }

  .stat-value {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

.stat {
  text-align: left;
}

.stat-value-wrap {
  display: block;
  white-space: nowrap;
}

.stat-value {
  display: inline;
  vertical-align: middle;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-suffix {
  display: inline;
  vertical-align: middle;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: inherit;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  /* margin-top: 0.25rem; */
}

.benefits {
  max-width: 36rem;
}

.benefit {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
}

.benefit:last-child {
  border-bottom: none;
}

.benefit strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 0.25rem;
}


/* ===== Process ===== */
.process {
  background: var(--bg);
}

.process-list {
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.step-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-elevated);
  padding-top: 0;
}

.faq-heading-wrap {
  padding: 2.5rem 0 2rem;
}

.faq-section .faq-heading-wrap .container {
  display: block;
}

.faq-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}

.faq-section .section-label,
.faq-section .section-title {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.faq-section .faq-list {
  width: 100%;
  max-width: 760px;
  text-align: left;
}

.faq-section .section-label {
  color: var(--accent);
}

.faq-section .section-title {
  color: var(--text);
}

.faq-list {
  margin-inline: auto;
}

@media (max-width: 768px) {
  .faq-section .container {
    padding-inline: 0;
  }

  .faq-heading-wrap {
    padding-inline: 1rem;
  }

  .faq-section .section-label,
  .faq-section .section-title {
    padding-inline: 0;
  }

  .faq-list {
    max-width: 100%;
    padding-inline: 1rem;
    text-align: left;
  }

  .faq-question {
    text-align: left;
  }
}

.faq-item {
  display: grid;
  grid-template-rows: auto 0fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
}

.faq-item[open] {
  grid-template-rows: auto 1fr;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(251, 183, 15, 0.4);
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-wrap {
  min-height: 0;
  overflow: hidden;
}

.faq-answer {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

/* ===== CTA / Contact ===== */
.cta {
  padding: 5rem 0;
  background: var(--bg);
}

.cta-inner {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.cta-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-success-msg {
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-success-msg.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form .form-error {
  font-size: 0.85rem;
  color: #dc2626;
  min-height: 1.25rem;
}

.contact-form input.is-error,
.contact-form textarea.is-error {
  border-color: #dc2626;
}

.contact-form input.is-error::placeholder,
.contact-form textarea.is-error::placeholder {
  color: #dc2626;
}

.contact-form .phone-wrap {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-form .phone-wrap:focus-within {
  border-color: var(--accent);
}

.contact-form .phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  user-select: none;
  pointer-events: none;
}

.contact-form .phone-wrap input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  margin: 0;
}

.contact-form .phone-wrap input:focus {
  border: none;
  box-shadow: none;
}

.contact-form .phone-wrap.is-error {
  border-color: #dc2626;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== WhatsApp sticky button ===== */
@keyframes whatsapp-zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: whatsapp-zoom 1.5s ease-in-out infinite;
  transition: box-shadow 0.2s;
}

.whatsapp-float:hover {
  animation: whatsapp-zoom 1.5s ease-in-out infinite;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float:active {
  animation: none;
  transform: scale(0.98);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
