:root {
  --max-width: 1100px;
  --text-dark: #111;
  --text-muted: #555;
  --bg-light: #f7f7f7;
  --border-radius: 14px;
  --cta-color: #FBB345;
  --section-bg: #F3F4F6;
  --icon-color: #FBB345;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}

section { 
  padding: 40px 0; 
}

/* Tighten space below floating hero CTA */
.trust-strip {
  padding-top: 12px;
}

.hero-link { display: block; width: 100%; }

.hero-image {
  width: 100%;
  min-height: unset;
}

/* Reserve white space below floating hero CTA */
.hero-wrapper {
  margin-bottom: 24px;
}

/* TRUST */
.trust-strip { padding: 12px 0 16px; }

.trust-headline {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

.trust-headline .highlight { color: var(--cta-color); }

.trust-subline {
  margin: 8px 0 0;
  font-size: 15px;
  text-align: center;
  opacity: 0.75;
}

/* CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--cta-color);
  color: #111;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero-cta span { font-size: 18px; }

/* BENEFITS */
.benefits-section { background: var(--section-bg); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.benefit-column {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.benefit-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.benefit-icon-lg {
  width: 22px;
  height: 22px;
  stroke: var(--icon-color);
  fill: none;
  stroke-width: 2;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 15px;
}

.benefit-icon {
  width: 18px;
  height: 18px;
  stroke: var(--icon-color);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* CTA VERTICAL CENTRE FIX */
.benefit-cta {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 12px;
}

/* ACCORDION — FIXED */
.accordion-item {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 12px;
}

.accordion-header {
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-chevron {
  transition: transform 0.25s ease;
}

.accordion-content {
  padding: 0 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 18px 16px;
  max-height: 500px;
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

/* FAQ CHOICE CARDS */
.faq-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.faq-choice-card {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.faq-choice-icon {
  width: 22px;
  height: 22px;
  stroke: var(--icon-color);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.faq-choice-text { flex: 1; }

.faq-choice-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.faq-choice-desc {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.35;
}

.faq-choice-chevron {
  transition: transform 0.25s ease;
  font-size: 18px;
  line-height: 1;
}

.faq-choice-card.open .faq-choice-chevron {
  transform: rotate(180deg);
}

.faq-section {
  display: none;
  margin-top: 8px;
}

.faq-section.active { display: block; }

footer {
  background: #f3f3f3;
  padding: 32px 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.footer-dot { color: #999; }

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .faq-choice-grid { grid-template-columns: 1fr 1fr; }
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.05); }

@media (min-width: 1024px) {
  .whatsapp-float { display: none; }
}

/* 🔒 MOBILE COLOR SAFEGUARD — DO NOT REMOVE */
@media (max-width: 767px) {
  :root {
    --cta-color: #FBB345;
    --icon-color: #FBB345;
  }
}

@media (min-width: 640px) {
  .hero-overlay h1 {
    font-size: 26px;
    max-width: 420px;
  }

  .hero-overlay img {
    width: 220px;
  }
}