:root {
  --bg: #f6fbfb;
  --card: #ffffff;
  --accent: #0b7fa6;
  /* teal-blue */
  --accent-2: #ff8a00;
  /* orange */
  --muted: #6b7280;
  --radius: 12px;
  --container-padding: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, Arial !important;
  background: var(--bg);
  color: #0b2340;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Shimmer button (place inside header where the button lives) */
.btn-shimmer {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, #00a8ff 0%, #0077c2 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 120, 200, 0.18);
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-shimmer:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 120, 200, 0.28);
}

.btn-shimmer:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 138, 255, 0.18);
}

/* moving light bar */
.btn-shimmer::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  transform: skewX(-25deg);
  animation: shimmer 2200ms linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -60%;
  }

  100% {
    left: 160%;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .btn-shimmer,
  .btn-shimmer::before {
    transition: none;
    animation: none;
    transform: none;
  }
}

/* Ensure icon aligns nicely */
.btn-shimmer svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Layout container */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 0 18px; */
}

/* Header styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-inline: 10px;
}

/* HERO */
.hero {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbff 100%);
  box-shadow: 0 6px 24px rgba(11, 127, 166, 0.06);
  margin-top: 0;
}

.hero-left {
  padding-inline-end: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: baseline;
}

@media (max-width: 467px) {
  .hero-left {
    padding-inline-end: 0;
  }
}

.hero-cta {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.eyebrow {
  display: inline-block;
  background: #e8f7fb;
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

h1 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.4;
}

p.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

/* Form */
form.card {
  background: var(--card);
  padding: 30px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(11, 127, 166, 0.06);
  width: 380px;
}

form.card .form-title {
  margin-top: 0px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 8px;
}

.field {
  margin-bottom: 10px;
}

.field label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

select option:first-child {
  color: #888; /* gray placeholder color */
}
select:invalid {
  color: #888; /* apply same color when placeholder is visible */
}
select:not(:invalid) {
  color: #000; /* normal color once user selects */
}
input[type="text"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e6eef2;
  font-size: 14px;
  background: white;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.btn {
  display: flex;
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  font-family: "Poppins";
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #0a91b8);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgb(11 127 166 / 29%);
  color: var(--accent);
  text-decoration: none;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

/* stats */
.stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.stat {
  flex: 1;
  min-width: 120px;
  gap: 12px;
  background: linear-gradient(180deg, #fff, #f9ffff);
  padding: 14px 12px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
  display: flex;
  align-items: center;
}

.stat-text {
  text-align: left;
}

.stat strong {
  display: block;
  font-size: 18px;
}

.stat small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

/* sections */
section {
  margin: 70px 0;
  padding-inline: 10px;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.section-title h2 {
  margin: 0;
  font-size: 22px;
  color: var(--accent);
  text-align: center;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* About section */
.about-content {
  background: var(--card);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(11, 127, 166, 0.04);
}

.about-card {
  background: var(--card);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(11, 127, 166, 0.04);
}

@media (max-width: 467px) {
  .about-content {
    padding: 10px;
  }
}

.about-card h3 {
  margin-top: 0;
}

.about-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 127, 166, 0.1);
}

/* Services carousel */
.service-section .section-title h2 {
  text-align: left;
}
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* thin custom scrollbar for modern browsers */
.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-track {
  background: transparent;
}

.carousel::-webkit-scrollbar-thumb {
  background: rgba(11, 127, 166, 0.18);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.carousel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--accent), #0a91b8);
}

/* Firefox */
.carousel {
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 127, 166, 0.18) transparent;
}

/* Each card snaps into place */
.svc-card {
  scroll-snap-align: start;
}

/* Small aesthetic progress bar under carousel */
.carousel-track {
  height: 6px;
  background: rgba(11, 127, 166, 0.06);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
  width: 260px;
  /* small, cute track */
  margin-left: auto;
  margin-right: auto;
}

.carousel-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #0a91b8);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(11, 127, 166, 0.08);
  transition: width 160ms linear;
}

/* make the progress track compact and centered; smaller on mobile */
@media (max-width: 900px) {
  .carousel-track {
    width: 180px;
  }
}

/* controls placed to the right inside section title */

.section-title .carousel-controls {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-prev,
.carousel-next {
  appearance: none;
  border: 0;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
  box-shadow: 0 2px 6px rgba(11, 127, 166, 0.06);
}

.carousel-prev:hover,
.carousel-next:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.08);
}

.carousel-prev:active,
.carousel-next:active {
  transform: translateY(0);
}

/* reduce the native scrollbar visual weight while the tiny track is visible */
.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Make the track slightly smaller on mobile to keep it cute */
@media (max-width: 899px) {
  .carousel-track {
    height: 5px;
  }
}

.svc-card {
  min-width: 240px;
  background: var(--card);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(11, 127, 166, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-thumb {
  height: 96px;
  border-radius: 8px;
  background: linear-gradient(180deg, #eaf8ff, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  gap: 5px;
}

.svc-title {
  font-weight: 600;
  padding: 8px 0 8px 0px;
  border-bottom: 1px solid #d8d8d8;
}

.svc-content {
  margin-bottom: 12px;
}

.svc-list {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  padding-left: 14px;
}

.svc-list li {
  padding-left: 5px;
}

.svc-list li::marker {
  content: "✓";
  color: var(--accent-2);
  font-size: 1.2em;
  font-weight: 600;
  position: absolute;
  left: 0px;
  top: 0px;
  line-height: 1.5;
  padding-right: 5px;
}

.svc-bottom {
  display: flex;
  padding: 15px 0px 0px 0px;
  align-items: center;
  border-top: 1px solid #d8d8d8;
  justify-content: center;
}
.svc-bottom .btn {
  padding: 7px 14px;
  font-size: 14px;
}
.price {
  font-weight: 600;
  color: var(--accent-2);
  font-size: 13px;
}

/* Process Steps - Modern 50/50 Layout */
.process-section {
  padding: 6rem 0;
  background: var(--light);
  overflow: hidden;
}

.process-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.step {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.step :hover.step-content::before,
.step-media:hover + .step-content::before {
  color: rgb(50 147 180 / 36%);
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.06);
  z-index: 0;
  line-height: 1;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-media {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.step:hover .step-media img {
  transform: translateY(-8px);
}

.step-content {
  flex: 1;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  color: var(--accent);
  background-color: rgb(241, 241, 241);
  border-radius: 100%;
  padding: 15px;
}

.step-icon img {
  width: 100%;
}

.step h4 {
  font-size: 25px;
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 700;
}

.step p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 768px) {
  .process-section {
    padding: 4rem 0;
  }

  .steps {
    gap: 4rem;
    padding: 0 1rem;
  }

  .step {
    flex-direction: column !important;
    text-align: center;
    gap: 2rem;
  }

  .step::before {
    font-size: 8rem;
  }

  .step-media {
    width: 100%;
  }

  .step-content {
    padding: 1rem;
  }

  .step-icon {
    margin: 0 auto 1rem;
  }
}

/* Hide the native horizontal scrollbar but keep carousel functionality and our small track */
.carousel {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.carousel::-webkit-scrollbar {
  height: 0;
  display: none;
}

/* Cursor affordance for dragging */
.carousel {
  cursor: grab;
  user-select: none;
}

.carousel.is-dragging {
  cursor: grabbing;
}

/* CTA Section - refreshed */
.cta-section {
  position: relative;
  padding: 64px 0;
  /* subtle background image with dark overlay for contrast */
  background: linear-gradient(
      180deg,
      rgba(6, 12, 20, 0.06),
      rgba(6, 12, 20, 0.06)
    ),
    url("/images/bg-cta.webp") no-repeat center/cover;
  color: #fff;
  overflow: hidden;
  border-radius: 12px;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgb(0 0 0 / 74%), rgba(2, 6, 23, 0.35));
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: center;
}

.cta-grid .cta-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-copy h2 {
  font-size: 2.25rem;
  line-height: 1.05;
  margin: 0 0 0.5rem;
  color: #fff;
}

.cta-copy .lead {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-features li::before {
  content: ">";
  color: #fff;
  display: inline-block;
  width: 1ch;
  margin-right: 0.6rem;
}

.cta-features li strong {
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-buttons a {
  text-decoration: none;
}

.btn.cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.14);
}

.btn.cta-primary svg {
  opacity: 0.95;
}

.btn.cta-whatsapp {
  background: #25d366;
  color: #082017;
  padding: 12px 18px;
  border-radius: 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.cta-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(6px);
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.contact-info .contact-phone {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.contact-info .contact-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.trust {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.trust-item strong {
  font-size: 1.05rem;
}

.trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 920px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    order: 2;
  }

  .cta-copy {
    order: 1;
  }

  .cta-copy h2 {
    font-size: 1.85rem;
  }

  .cta-card {
    margin-top: 1rem;
  }
}

/* Generic CTA */
.cta {
  position: relative;
  border-radius: 12px;
  padding: 22px;
  color: #fff;
  background-image: linear-gradient(
    180deg,
    rgba(6, 12, 20, 0.55),
    rgba(6, 12, 20, 0.55)
  );
  background-size: cover;
}

.cta .inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.cta h2 {
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  flex: 1;
}

/* Machine Types Section */
.machine-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.machine-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.machine-card:hover {
  transform: translateY(-5px);
}

.machine-card img {
  margin: auto;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.machine-card h3 {
  color: #2b7c85;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.machine-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.machine-card .tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.machine-card .tags span {
  background: #e8f5f6;
  color: #2b7c85;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

/* Service Locations Section */
.service-locations {
  background: #f8fbfd;
  padding: 3rem 1rem;
  margin: 2rem 0;
}

.locations-grid {
  margin: 0 auto;
}

.location-links {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.location-links p {
  color: #666;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

/* Inline city list */
.location-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}

.location-list li {
  display: inline-block;
  background: #f1fbfb;
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(11, 127, 166, 0.04);
}

@media (max-width: 640px) {
  .location-list li {
    font-size: 0.9rem;
    padding: 6px 10px;
  }
}

/* Why choose us */
/* Why choose us - redesigned */
.why-choose {
  margin: 0 auto 40px;
  padding: 20px 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: center;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 10px 25px rgba(11, 127, 166, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(11, 127, 166, 0.06);
}

.why-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eef9fe, #ffffff);
  border-radius: 12px;
}

.why-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.why-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(11, 127, 166, 0.06);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.why-cta {
  text-align: center;
}

.why-cta .muted-small {
  margin-bottom: 8px;
}

@media (max-width: 920px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .why-visual {
    order: 2;
  }
}

@media (max-width: 520px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 14px;
  }
}

/* FAQ - accordion with smooth open/close and rotating arrow */
.faq {
  /* max-width: 900px; */
  margin: 0 auto;
}

.faq .q {
  background: var(--card);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(11, 127, 166, 0.04);
}

.q button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}

.q button .q-text {
  flex: 1;
  text-align: left;
  font-family: "poppins";
}

.q button .arrow {
  display: inline-block;
  transition: transform 260ms ease;
  color: var(--accent-2);
  font-size: 18px;
  line-height: 1;
  margin-left: 12px;
}

.q.open button .arrow {
  transform: rotate(180deg);
}

.q .a {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
  will-change: max-height;
  padding-left: 2px;
}

.q:hover {
  transform: translateY(-2px);
}

.q button:focus {
  outline: 3px solid rgba(37, 99, 235, 0.12);
  border-radius: 8px;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border-top: 1px solid rgba(11, 127, 166, 0.06);
  color: var(--muted);
  font-size: 14px;
  padding: 28px 10px 89px 10px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1rem;
}

.footer-brand {
  max-width: 360px;
}
.footer-brand img {
  margin: auto;
}

.footer-brand .footer-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.footer-nav h4,
.footer-contact h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contact a {
  display: block;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 6px;
  font-weight: 600;
}

.footer-contact .footer-social a {
  display: inline-block;
  margin-top: 6px;
  background: #25d366;
  color: #082017;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 16px;
  color: #9aa2ac;
  font-size: 13px;
}

@media (max-width: 840px) {
  .footer-inner {
    flex-direction: row;
    gap: 18px;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .footer-nav ul {
    align-items: start;
  }

  .footer-contact a {
    font-weight: 600;
  }
}

/* Mobile fixed bar */
.fixed-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 12px;
  justify-content: center;
  z-index: 99;
}

.fixed-btn {
  width: 200px;
  max-width: 100%;
  padding: 14px 12px;
  border-radius: 999px !important;
  text-align: center;
  background: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-family: "Poppins";
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(11, 127, 166, 0.18);
}
@media (max-width: 467px) {
  .fixed-btn {
    width: 145px;
    padding: 12px 12px;
    font-size: 16px;
  }
  .cta-buttons {
    gap: 5;
    flex-wrap: nowrap;
  }
  .btn.cta-primary {
    padding: 12px 12px;
  }
}

.fixed-ws {
  background: #25d366;
}

/* Utility classes */
.muted-small {
  color: var(--muted);
  font-size: 13px;
}

.logo {
  display: inline-block;
  padding: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
}

.center {
  text-align: center;
}

/* Honeypot field */
.honeypot {
  display: none;
}

/* Responsive */
@media (min-width: 900px) {
  .hero {
    padding: 55px 35px;
  }

  h1 {
    font-size: 36px;
  }

  .card-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .why {
    grid-template-columns: 1fr 1fr;
  }
  .section-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 899px) {
  /* .wrap {
    padding: 12px;
  } */

  .hero {
    flex-direction: column;
  }

  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .card-row {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .stat {
    min-width: 45%;
  }
}

.policy-links {
  display: flex;
  justify-content: center;
}
.policy-links ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}
.policy-links ul li a {
  text-decoration: none;
  color: #9aa2ac;
}
