/* Homepage-specific Saffron styles */

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 96px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.32), transparent 70%),
              var(--cream-50);
  text-align: center;
  overflow: hidden;
}
.hero-img, .hero-bg { display: none; }
.hero-content { position: relative; z-index: 1; }
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.hero-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint-600);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(90,148,102,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(90,148,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(90,148,102,0); }
}

/* Title */
.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.2vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: var(--tracking-tight);
  color: var(--ink-900);
  margin-bottom: 24px;
  text-wrap: balance;
}

.swatch {
  background: var(--saffron-500);
  padding: 0 14px;
  border-radius: 12px;
  display: inline-block;
  transform: rotate(-1.5deg);
}

/* Sub-paragraph */
.hero > .hero-content p,
.hero-inner > p {
  font-size: 20px;
  color: var(--ink-700);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Hide old stats */
.hero-stats { display: none; }

/* CTA row */
.hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-btns .btn-accent {
  background: var(--saffron-500);
  color: var(--ink-900);
  border-radius: 999px;
  box-shadow: var(--shadow-yellow);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  padding: 16px 28px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background var(--dur-micro) var(--ease);
}
.hero-btns .btn-accent:hover { background: var(--saffron-600); color: var(--ink-900); }

.hero-btns .btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  padding: 16px 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background var(--dur-micro) var(--ease);
}
.hero-btns .btn-outline:hover { background: var(--cream-100); color: var(--ink-900); }

/* Trust strip */
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-700);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-item svg { flex-shrink: 0; }
.trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-300);
  flex-shrink: 0;
}

/* ── Country search + grid ────────────────────────── */
.search-section {
  background: transparent;
  padding: 48px 0 0;
}
.search-box {
  max-width: 540px;
  margin: 0 auto 48px;
  position: relative;
  background: white;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 20px;
}
.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-900);
  outline: none;
  padding: 10px 0;
}
.search-box input::placeholder { color: var(--ink-300); }
.search-box button {
  background: var(--ink-900);
  border: none;
  border-radius: 999px;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-micro) var(--ease);
}
.search-box button:hover { background: var(--ink-700); }

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.country-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.country-card::after {
  content: "";
  position: absolute;
  right: -32px; bottom: -32px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--saffron-300);
  filter: blur(24px);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.country-card:hover::after { opacity: 0.6; }
.country-flag { width: 60px; height: 40px; border-radius: 6px; margin-bottom: 16px; overflow: hidden; border: 1px solid var(--border); }
.country-name { font-family: var(--font-sans); font-weight: 600; font-size: 16px; color: var(--ink-900); margin-bottom: 4px; }
.country-cta { font-size: 14px; color: var(--ink-500); }

/* ── Benefits / product cards ─────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.benefit-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
}
.benefit-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--ink-700); }
.benefit-card h3 { font-size: 20px; margin-bottom: 8px; }
.benefit-card p { font-size: 16px; color: var(--ink-700); margin: 0; }

/* ── Reviews ──────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: white; border: 1px solid var(--border); border-radius: 28px; padding: 28px; }
.stars { color: var(--saffron-500); font-size: 1.1rem; margin-bottom: 12px; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-50);
  font-weight: 600;
  font-family: var(--font-sans);
  flex-shrink: 0;
}
.reviewer strong { color: var(--ink-900); font-family: var(--font-sans); }
.reviewer small { color: var(--ink-500); font-size: 13px; }

/* ── Fifi / Mascot section ────────────────────────── */
.mascot-section { background: var(--mint-200); }
.fifi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fifi-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.fifi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fifi-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.fifi-badge {
  display: inline-block;
  background: var(--saffron-300);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin: 16px auto 8px;
}
.fifi-caption {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.55;
  padding: 0 20px 24px;
  margin: 0;
}
.fifi-tagline {
  text-align: center;
  margin-top: 52px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-900);
}

/* ── Company details (dark section) ──────────────── */
.details-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.detail-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 24px;
}
.detail-card h4 {
  color: var(--saffron-500);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 8px;
}
.detail-card p { color: rgba(250,246,236,0.80); font-size: 15px; margin: 0; line-height: 1.7; }
.detail-card a { color: var(--saffron-400); }

.trust-row { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(250,246,236,0.80); }
.trust-badge svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── FAQ (homepage) ───────────────────────────────── */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--dur-micro) var(--ease);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--ink-900); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--ink-900);
  margin: 0;
  flex: 1;
}
.faq-icon {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border-radius: 50%;
  color: var(--ink-700);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease),
              background var(--dur-micro) var(--ease),
              color var(--dur-micro) var(--ease);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--saffron-500);
  color: var(--ink-900);
}

.faq-answer { display: none; }
.faq-answer.open { display: block; }
.faq-answer-inner {
  padding: 4px 24px 22px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.6;
}
.faq-answer-inner p { margin-bottom: 0.5rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ── Buying guide ─────────────────────────────────── */
.buying-guide {
  max-width: 980px;
  margin: 0 auto;
  background: white;
  border-radius: 28px;
  padding: clamp(32px, 5vw, 72px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}
.buying-guide > h2:first-of-type {
  font-size: clamp(34px, 4vw, 48px);
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.buying-guide > h2:first-of-type + p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-700);
}
.buying-guide h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 1.6em 0 0.5em;
  padding-top: 0.6em;
  border-top: 1px solid var(--border);
}
.buying-guide h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
}
.buying-guide h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-900);
}
.buying-guide ul { list-style: none; padding: 0; display: grid; gap: 8px; margin-bottom: 1.2rem; }
.buying-guide ul li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: var(--cream-50);
  border-left: 3px solid var(--saffron-500);
  border-radius: 6px;
}
.buying-guide ul li::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron-500);
}
.buying-guide strong { color: var(--ink-900); }
.buying-guide p { margin-bottom: 1rem; }

/* ── Final CTA ────────────────────────────────────── */
.final-cta {
  background: var(--saffron-500);
  text-align: center;
  padding: 96px 0;
}
.final-cta h2 { color: var(--ink-900); font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.final-cta p { color: var(--ink-800); margin-bottom: 36px; font-size: 19px; }
.final-cta .btn, .final-cta a.btn {
  background: var(--ink-900);
  color: var(--cream-50);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  padding: 16px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  transition: background var(--dur-micro) var(--ease);
}
.final-cta .btn:hover, .final-cta a.btn:hover { background: var(--ink-700); color: var(--cream-50); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .fifi-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .faq-cols { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 72px; }
}
@media (max-width: 560px) {
  .fifi-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .search-box { margin: 0 0 40px; }
  .hero-inner { padding: 0 20px; }
}
