/* ============================================================
   FLUFFEE.COMPANY — Saffron Design System
   saffron.css (loaded before this) provides: CSS vars, fonts,
   base element styles, and utility button classes.
   ============================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a { color: var(--ink-900); text-decoration: none; }
a:hover { text-decoration: none; }

p { margin-bottom: 1em; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--ink-900);
}
h1 { font-size: clamp(48px, 7.2vw, 96px); line-height: 1.02; }
h2 { font-size: clamp(36px, 4.4vw, 56px); line-height: 1.1; }
h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2; }
h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
  display: block;
  margin-bottom: 12px;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 96px 0; }

.section-intro {
  max-width: 680px;
  color: var(--ink-700);
  font-size: 19px;
  margin-top: 16px;
  line-height: 1.6;
}

/* ---- HERO BUTTONS ---- */
.btn-hero-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--saffron-500);
  color: var(--ink-900);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-yellow);
  transition: background var(--dur-base) var(--ease), transform var(--dur-micro) var(--ease);
}
.btn-hero-yellow:hover { background: var(--saffron-600); transform: translateY(-1px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--border-strong);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  transition: background var(--dur-base) var(--ease);
}
.btn-hero-ghost:hover { background: rgba(27,34,53,0.04); }

/* Remap old button classes */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--saffron-500);
  color: var(--ink-900);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-yellow);
  transition: background var(--dur-base) var(--ease), transform var(--dur-micro) var(--ease);
}
.btn-primary:hover { background: var(--saffron-600); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--border-strong);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  transition: background var(--dur-base) var(--ease);
}
.btn-outline:hover { background: rgba(27,34,53,0.04); }

/* ---- NAV (Saffron Pill) ---- */
#site-nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  pointer-events: none;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px 10px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  gap: 16px;
  pointer-events: all;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; color: var(--ink-900); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color var(--dur-micro) var(--ease);
}
.nav-links a:hover { color: var(--ink-900); }

.nav-cta {
  background: var(--ink-900) !important;
  color: var(--cream-50) !important;
  padding: 10px 22px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  font-family: var(--font-sans) !important;
  letter-spacing: 0 !important;
  transition: background var(--dur-base) var(--ease) !important;
}
.nav-cta:hover { background: var(--ink-700) !important; text-decoration: none !important; }

/* scrolled state — pill always looks the same */
#site-nav.scrolled .nav-logo { color: var(--ink-900); }
#site-nav.scrolled .nav-links a { color: var(--ink-700); }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  background: var(--ink-900);
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE DRAWER ---- */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,34,53,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
#mobile-nav.open { display: flex; }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--dur-micro) var(--ease);
}
.mobile-close:hover { color: var(--white); }

#mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 16px 0;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--dur-micro) var(--ease);
}
#mobile-nav a:hover { color: var(--saffron-500); text-decoration: none; }

#mobile-nav a.mobile-shop-cta {
  margin-top: 32px;
  background: var(--saffron-500);
  color: var(--ink-900);
  border-radius: 999px;
  border: none;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  width: auto;
}
#mobile-nav a.mobile-shop-cta:hover { background: var(--saffron-600); color: var(--ink-900); }

/* Old sticky CTA — hide */
#sticky-cta { display: none !important; }

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 96px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.32), transparent 70%),
    var(--cream-50);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 999px;
  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-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-600);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

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

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

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

.hero-sub {
  font-size: 20px;
  color: var(--ink-700);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 0;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* old hero-actions maps to hero-cta-row behaviour */
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-700);
  font-family: var(--font-sans);
}
.trust-dot { color: var(--ink-300); }

/* old hero elements — hidden */
.hero-bg-img { display: none; }
.hero-bg     { display: none; }
.hero-image-wrap { display: none; }
.hero-stats  { display: none; }
.hero-text   { display: contents; }

/* ---- SHOP BY COUNTRY ---- */
#shop { background: var(--cream-100); }

.search-wrap {
  margin: 32px 0 40px;
  position: relative;
  max-width: 520px;
}
.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-500);
  width: 20px;
  height: 20px;
}
#country-search {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 16px;
  font-family: var(--font-sans);
  background: var(--white);
  outline: none;
  color: var(--ink-900);
  transition: border-color var(--dur-micro) var(--ease);
  box-shadow: var(--shadow-sm);
}
#country-search:focus { border-color: var(--ink-500); }
#country-search::placeholder { color: var(--ink-500); }

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--ink-900);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.country-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--saffron-300);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.country-card:hover::after { opacity: 0.5; }

.country-flag {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.country-flag svg { width: 32px; height: 32px; }

.country-info { position: relative; z-index: 1; }
.country-info strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
  font-family: var(--font-sans);
}
.country-info span {
  font-size: 13px;
  color: var(--ink-500);
  font-family: var(--font-mono);
}
.country-arrow { margin-left: auto; color: var(--ink-500); flex-shrink: 0; position: relative; z-index: 1; }

/* ---- BENEFITS ---- */
#benefits { background: var(--cream-50); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease);
}
.benefit-card:hover { box-shadow: var(--shadow-md); }

.benefit-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--saffron-600); }

.benefit-card h3 { font-size: 20px; margin-bottom: 10px; }
.benefit-card p { font-size: 15px; color: var(--ink-700); margin: 0; line-height: 1.6; }

/* ---- REVIEWS ---- */
#reviews { background: var(--charcoal-800); color: var(--cream-50); }
#reviews .section-label { color: var(--saffron-500); }
#reviews h2 { color: var(--cream-50); }
#reviews .section-intro { color: rgba(250,246,236,.7); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: background var(--dur-base) var(--ease);
}
.review-card:hover { background: rgba(255,255,255,.09); }

.review-stars { color: var(--saffron-500); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }

.review-card blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,246,236,.85);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { font-size: 14px; color: rgba(250,246,236,.55); }
.review-author strong { color: rgba(250,246,236,.9); display: block; }

/* ---- SPECS ---- */
#specs { background: var(--cream-100); }

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: center;
}

.spec-list { list-style: none; }
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.spec-list li:last-child { border-bottom: none; }
.spec-icon { color: var(--saffron-600); flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; }
.spec-list strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink-900); font-family: var(--font-sans); }
.spec-list span { font-size: 14px; color: var(--ink-700); }
.specs-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }

/* ---- MASCOT (Fifi) ---- */
#mascot { background: var(--mint-200); }

.mascot-badge {
  display: inline-block;
  background: var(--mint-600);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.mascot-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.mascot-header h2 { margin-bottom: 16px; }
.mascot-intro { font-size: 18px; color: var(--ink-700); line-height: 1.6; margin: 0; }

/* Role badge used on each Fifi card */
.fifi-role-badge {
  display: inline-block;
  background: var(--saffron-400);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---- Featured CEO card ---- */
.fifi-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.fifi-featured-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fifi-featured-body {
  padding: 44px 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fifi-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--ink-900);
  font-style: italic;
  margin: 0 0 20px;
}
.fifi-detail {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
}

/* ---- 4-card photo grid ---- */
.fifi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.fifi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.fifi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.fifi-card-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fifi-card-body { padding: 20px 22px 24px; }
.fifi-card-body p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
}

/* ---- Stamp of approval ---- */
.fifi-stamp-wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.fifi-stamp-img img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  transform: rotate(-8deg);
  filter: drop-shadow(0 4px 8px rgba(27,34,53,0.12));
}
.fifi-stamp-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 12px;
  display: block;
}
.fifi-stamp-text p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 10px;
}
.fifi-stamp-fine {
  font-size: 14px !important;
  color: var(--ink-500) !important;
  font-style: italic;
  margin: 0 !important;
}

/* ---- FAQ ---- */
#faq { background: var(--cream-50); }

.faq-list {
  margin-top: 48px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.faq-item:hover { border-color: var(--border-strong); }

.faq-item:has(.faq-btn[aria-expanded="true"]) {
  border-color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* override global h3 scale for FAQ questions */
.faq-btn 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;
  text-wrap: auto;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--ink-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease), background var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease);
}

.faq-item:has(.faq-btn[aria-expanded="true"]) .faq-icon {
  transform: rotate(45deg);
  background: var(--saffron-500);
  color: var(--ink-900);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p {
  padding: 4px 22px 22px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ---- BUYING GUIDE ---- */
#buying-guide { background: var(--cream-50); }

.guide-content {
  max-width: 980px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: clamp(32px, 5vw, 72px);
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.7;
}
.guide-content .section-label { margin-bottom: 8px; }
.guide-content h2 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 24px; color: var(--ink-900); }
.guide-content h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 2em 0 0.5em;
  padding-top: 0.6em;
  border-top: 1px solid var(--border);
  color: var(--ink-900);
}
.guide-content h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-700);
  margin: 1.5em 0 0.4em;
}
.guide-content p { color: var(--ink-700); }

.guide-content ul { list-style: none; padding: 0; display: grid; gap: 8px; margin: 16px 0; }
.guide-content ul li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: var(--cream-50);
  border-left: 3px solid var(--saffron-500);
  border-radius: 6px;
  color: var(--ink-700);
}
.guide-content ul li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron-500);
}
.guide-content ul li strong { color: var(--ink-900); }

/* ---- COMPANY ---- */
#company { background: var(--white); }

.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.company-info-block h3 { margin-bottom: 20px; font-size: 22px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-icon { color: var(--saffron-600); flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
.info-row span { font-size: 15px; color: var(--ink-700); }
.info-row a { color: var(--ink-700); }
.info-row a:hover { color: var(--ink-900); }

.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust-badge {
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-badge svg { color: var(--saffron-600); flex-shrink: 0; width: 24px; height: 24px; }
.trust-badge strong { display: block; font-size: 15px; color: var(--ink-900); font-family: var(--font-sans); }
.trust-badge span { font-size: 13px; color: var(--ink-700); }

/* ---- CONTACT ---- */
#contact { background: var(--cream-100); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow var(--dur-base) var(--ease);
}
.contact-card:hover { box-shadow: var(--shadow-sm); }
.contact-card svg { color: var(--saffron-600); width: 28px; height: 28px; margin-bottom: 16px; }
.contact-card h3 { font-size: 18px; margin-bottom: 8px; }
.contact-card a {
  color: var(--ink-700);
  font-size: 15px;
  border-bottom: 2px solid var(--saffron-500);
  padding-bottom: 1px;
  transition: background var(--dur-micro) var(--ease);
}
.contact-card a:hover { background: rgba(255,210,63,.15); }
.contact-card span { font-size: 15px; color: var(--ink-700); }

/* ---- FINAL CTA ---- */
#final-cta { background: var(--ink-900); color: var(--cream-50); text-align: center; }
#final-cta .section-label { color: rgba(250,246,236,.5); }
#final-cta h2 { color: var(--cream-50); margin-bottom: 16px; }
#final-cta p { color: rgba(250,246,236,.7); max-width: 560px; margin: 0 auto 36px; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--saffron-500);
  color: var(--ink-900);
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-yellow);
  transition: background var(--dur-base) var(--ease), transform var(--dur-micro) var(--ease);
}
.btn-hero:hover { background: var(--saffron-600); transform: translateY(-2px); text-decoration: none; color: var(--ink-900); }

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal-800);
  color: rgba(250,246,236,.7);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h2 {
  font-family: var(--font-display);
  color: var(--cream-50);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(250,246,236,.7); }
.footer-brand a { color: rgba(250,246,236,.6); }
.footer-brand a:hover { color: var(--cream-50); }

footer h4 {
  font-family: var(--font-sans);
  color: var(--saffron-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(250,246,236,.7); font-size: 15px; transition: color var(--dur-micro) var(--ease); }
footer ul a:hover { color: var(--cream-50); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250,246,236,.55);
}
.footer-bottom a { color: rgba(250,246,236,.55); margin-right: 16px; }
.footer-bottom a:last-child { margin-right: 0; }
.footer-bottom a:hover { color: var(--cream-50); }

/* ---- BLOG INDEX ---- */
.blog-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.20), transparent 70%),
    var(--cream-50);
  color: var(--ink-900);
  padding: 140px 0 60px;
}
.blog-hero .section-label { color: var(--ink-700); }
.blog-hero h2 { color: var(--ink-900); }

.blog-search-bar { margin: 32px 0; max-width: 500px; position: relative; }
.blog-search-bar svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-500);
  width: 20px;
  height: 20px;
}
#blog-search {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 16px;
  font-family: var(--font-sans);
  background: var(--white);
  outline: none;
  color: var(--ink-900);
  transition: border-color var(--dur-micro) var(--ease);
  box-shadow: var(--shadow-sm);
}
#blog-search:focus { border-color: var(--ink-500); }

.blog-grid-wrap { background: var(--cream-50); padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-date { font-family: var(--font-mono); font-size: 13px; color: var(--ink-500); margin-bottom: 10px; }
.blog-card h2 { font-size: 20px; margin-bottom: 12px; }
.blog-card a { color: var(--ink-900); }
.blog-card a:hover { color: var(--ink-700); }
.blog-card p { font-size: 14px; color: var(--ink-700); margin: 0; line-height: 1.6; }

/* ---- BLOG POST ---- */
.post-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.20), transparent 70%),
    var(--cream-50);
  padding: 140px 0 60px;
  color: var(--ink-900);
}
.post-hero .section-label { color: var(--ink-700); }
.post-hero .section-label a { color: var(--ink-700); }
.post-hero h2 {
  font-family: var(--font-display);
  color: var(--ink-900);
  max-width: 820px;
  font-size: clamp(28px, 3.5vw, 48px);
}
.post-meta { font-family: var(--font-mono); font-size: 14px; color: var(--ink-500); margin-top: 16px; }

.post-body { background: var(--cream-50); padding: 60px 0; }
.post-content { max-width: 820px; }
.post-content h1, .post-content h2 { margin: 36px 0 14px; color: var(--ink-900); }
.post-content h1 { font-size: clamp(28px, 3vw, 40px); font-family: var(--font-display); }
.post-content h3 { margin: 28px 0 10px; color: var(--ink-900); }
.post-content p { color: var(--ink-700); font-size: 17px; line-height: 1.7; }
.post-content ul, .post-content ol { margin: 16px 0 16px 24px; }
.post-content li { margin-bottom: 8px; font-size: 16px; color: var(--ink-700); }
.post-content a {
  color: var(--ink-900);
  border-bottom: 2px solid var(--saffron-500);
  padding-bottom: 1px;
  transition: background var(--dur-micro) var(--ease);
}
.post-content a:hover { background: rgba(255,210,63,.15); }
.post-back { margin-top: 48px; }
.post-back a { color: var(--ink-700); font-weight: 600; font-size: 15px; border-bottom: 2px solid var(--saffron-500); }

/* ---- LEGAL PAGES ---- */
.legal-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.20), transparent 70%),
    var(--cream-50);
  padding: 140px 0 60px;
  color: var(--ink-900);
}
.legal-hero h2 { color: var(--ink-900); }
.legal-body { padding: 60px 0; max-width: 820px; }
.legal-body h2 { margin: 40px 0 14px; font-size: clamp(20px, 2.5vw, 28px); }
.legal-body h3 { margin: 28px 0 10px; font-size: 22px; }
.legal-body p, .legal-body li { color: var(--ink-700); font-size: 16px; }
.legal-body ul { margin: 12px 0 16px 24px; }
.legal-body li { margin-bottom: 6px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .specs-grid { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fifi-featured { grid-template-columns: 1fr; }
  .fifi-featured-img img { height: 300px; }
  .fifi-featured-body { padding: 28px 28px 32px; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 12px; padding: 8px 8px 8px 18px; }
  .nav-logo { font-size: 18px; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero-cta-row, .hero-actions { flex-direction: column; align-items: center; }
  .trust-dot { display: none; }
  .hero-trust { flex-direction: column; align-items: center; gap: 8px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .search-wrap, .blog-search-bar { max-width: 100%; }
  #country-search { font-size: 15px; padding: 12px 14px 12px 44px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-badges { grid-template-columns: 1fr; }
  .hero-content { padding: 0 20px; }
  .fifi-stamp-wrap { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .fifi-stamp-img { display: flex; justify-content: center; }
  .fifi-stamp-img img { width: 120px; height: 120px; }
}

@media (max-width: 420px) {
  .nav-logo { font-size: 16px; }
  #site-nav { padding: 0 12px; }
}
