/* ============================================================
   PigEars.company — Homepage
   Extends saffron.css (loaded first in <head>)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─── Layout ─── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ─── Nav ─── */
.site-header {
  position: sticky; top: 16px; z-index: 900;
  display: flex; justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.nav-wrap {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  padding: 8px 8px 8px 24px;
  display: flex; align-items: center; gap: 24px;
  width: 100%; max-width: 1200px;
  pointer-events: all;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; color: var(--ink-900);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-700);
  text-decoration: none; transition: color var(--dur-base) var(--ease);
}
.nav-links a:hover { color: var(--ink-900); }
.nav-shop-btn { flex-shrink: 0; font-size: 15px; }
.nav-burger {
  display: none; background: var(--ink-900); border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 14px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 18px; height: 2px; background: var(--cream-50);
  border-radius: 2px; transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Overlay ─── */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(27,34,53,0.96); backdrop-filter: blur(8px);
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--dur-base);
}
.mobile-overlay.open { display: flex; opacity: 1; }
.mobile-close {
  position: absolute; top: 20px; right: 20px; background: none; border: none;
  cursor: pointer; padding: 10px; display: flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
}
.mobile-overlay nav { display: flex; flex-direction: column; align-items: center; }
.mobile-overlay ul { list-style: none; text-align: center; margin-bottom: 32px; }
.mobile-overlay ul li { margin: 14px 0; }
.mobile-overlay ul li a {
  font-family: var(--font-display); font-size: 28px; font-weight: 500;
  color: var(--cream-50); text-decoration: none; transition: color var(--dur-base);
}
.mobile-overlay ul li a:hover { color: var(--saffron-500); }
.mobile-shop-btn { font-size: 17px; padding: 16px 36px; }

/* ─── Hero ─── */
.hero {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.32), transparent 70%);
  padding: 72px 0 96px;
  text-align: center;
}
.hero-inner { 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);
  border-radius: var(--radius-pill); padding: 6px 16px 6px 10px;
  font-size: 13px; font-weight: 600; color: var(--ink-700);
  margin-bottom: 32px; box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mint-600); flex-shrink: 0;
  animation: pulse 2.4s ease-out 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);  }
}
.hero-title {
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 1.02; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink-900);
  max-width: 900px; text-wrap: balance;
  margin-bottom: 24px;
}
.swatch {
  background: var(--saffron-500); padding: 0 14px;
  border-radius: 12px; display: inline-block;
  transform: rotate(-1.5deg); transform-origin: center;
}
.hero-sub {
  font-size: 20px; line-height: 1.55; color: var(--ink-700);
  max-width: 640px; margin-bottom: 0; text-align: center;
}
.hero-cta-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin-top: 36px;
}
.btn-hero-yellow {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--saffron-500); color: var(--ink-900);
  font-family: var(--font-sans); font-weight: 700; font-size: 17px;
  padding: 16px 32px; border-radius: var(--radius-pill); border: 0;
  text-decoration: none; box-shadow: var(--shadow-yellow); cursor: pointer;
  transition: background var(--dur-micro) var(--ease), transform 80ms var(--ease);
}
.btn-hero-yellow:hover { background: var(--saffron-600); transform: translateY(-2px); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ink-900);
  font-family: var(--font-sans); font-weight: 600; font-size: 17px;
  padding: 16px 32px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); text-decoration: none; cursor: pointer;
  transition: background var(--dur-micro) var(--ease);
}
.btn-hero-ghost:hover { background: rgba(27,34,53,.04); }
.hero-trust {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px 22px; margin-top: 24px;
  font-size: 15px; color: var(--ink-700); align-items: center;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.trust-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-300); flex-shrink: 0;
}

/* ─── Sections ─── */
.section { padding: 96px 0; background: var(--bg); }
.section-alt { background: var(--cream-100); }
.section-dark { background: var(--charcoal-800); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.eyebrow {
  display: block; font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink-700);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--saffron-500) !important; }
.section-head h2 { font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 16px; }
h2.light { color: var(--cream-50); }
.section-lead { font-size: 19px; color: var(--ink-700); margin: 0; }
.section-lead.light { color: rgba(250,246,236,.75); }

/* ─── Country ─── */
.country-search-row {
  max-width: 440px; margin: 0 auto 40px;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: var(--radius-pill);
  padding: 10px 20px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.country-search-row svg { flex-shrink: 0; }
.country-search-row input {
  border: none; outline: none; background: transparent;
  font-family: var(--font-sans); font-size: 15px; width: 100%; color: var(--ink-900);
}
.country-search-row input::placeholder { color: var(--ink-300); }
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.country-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 36px 24px 28px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base), box-shadow var(--dur-base);
}
.country-card::after {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px; 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); border-color: var(--border-strong); }
.country-card:hover::after { opacity: 0.6; }
.flag-icon { width: 72px; height: 48px; border-radius: 6px; overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.flag-icon svg { width: 100%; height: 100%; display: block; }
.country-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink-900); margin-bottom: 4px; }
.country-url { font-family: var(--font-mono); font-size: 13px; color: var(--ink-500); margin-bottom: 20px; }
.country-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream-100); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-base);
}
.country-card:hover .country-arrow { background: var(--saffron-500); }

/* ─── Benefits ─── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.benefit-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.benefit-card h3 { font-family: var(--font-sans); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--ink-900); letter-spacing: 0; line-height: 1.4; }
.benefit-card p { font-size: 16px; color: var(--ink-700); line-height: 1.6; margin: 0; }

/* ─── Reviews ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 28px;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card p { color: rgba(250,246,236,.85); font-size: 16px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { color: var(--saffron-500); font-size: 13px; font-weight: 600; font-family: var(--font-mono); }

/* ─── Specs ─── */
.specs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.specs-text p { font-size: 17px; color: var(--ink-700); margin-bottom: 24px; }
.specs-list { list-style: none; margin-bottom: 32px; }
.specs-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 16px; color: var(--ink-700); }
.specs-list li svg { flex-shrink: 0; margin-top: 3px; }
.btn-shop-now {
  display: inline-flex; align-items: center;
  background: var(--ink-900); color: var(--cream-50);
  font-family: var(--font-sans); font-size: 16px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-pill);
  text-decoration: none; transition: background var(--dur-micro) var(--ease), transform 80ms var(--ease);
}
.btn-shop-now:hover { background: var(--ink-700); transform: translateY(-2px); }
.specs-card-stack { display: flex; flex-direction: column; gap: 20px; }
.spec-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); padding: 28px 32px;
  transition: transform var(--dur-base);
}
.sc-2 { transform: translateX(20px); }
.sc-3 { transform: translateX(40px); }
.spec-card:hover { transform: translateX(8px) !important; }
.spec-num { font-family: var(--font-display); font-size: 36px; font-weight: 500; color: var(--saffron-600); margin-bottom: 4px; line-height: 1; }
.spec-label { color: var(--ink-500); font-size: 14px; font-weight: 500; font-family: var(--font-sans); }

/* ─── Fifi Team Section ─── */
.fifi-section { background: var(--cream-50); }

.fifi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.fifi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.fifi-card:hover {
  transform: translateY(-4px) rotate(0.4deg);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-400);
}

.fifi-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-100, #f5efe0);
}
.fifi-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s var(--ease);
}
.fifi-card:hover .fifi-photo { transform: scale(1.04); }

.fifi-zzz {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--saffron-600);
  letter-spacing: 0.12em;
  text-shadow: 0 1px 4px rgba(255,210,63,.4);
  pointer-events: none;
  animation: fifi-float 3s ease-in-out infinite;
}
@keyframes fifi-float {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%       { transform: translateY(-6px); opacity: 1; }
}

.fifi-card-body {
  padding: 20px 22px 24px;
}
.fifi-name-badge {
  display: inline-block;
  background: var(--saffron-500);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.fifi-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.fifi-bio {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

/* Fifi Seal */
.fifi-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px dashed var(--border);
  text-align: center;
}
.fifi-seal-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  opacity: 0.82;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  animation: fifi-stamp-wobble 4s ease-in-out infinite;
}
.fifi-seal-img:hover {
  opacity: 1;
  transform: scale(1.1) rotate(-3deg);
}
@keyframes fifi-stamp-wobble {
  0%, 100% { transform: rotate(-2deg); }
  50%       { transform: rotate(2deg); }
}
.fifi-seal-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 420px;
}
.fifi-seal-text em { color: var(--ink-400, #8a96a3); }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color var(--dur-base);
}
.faq-item:hover:not(.open) { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--ink-900); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; min-height: 52px;
}
.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; text-align: left;
}
.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream-100); border-radius: 50%; color: var(--ink-700);
  transition: transform var(--dur-base) var(--ease), background var(--dur-micro) var(--ease), color var(--dur-micro);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--saffron-500); color: var(--ink-900);
}
.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer-inner { padding: 4px 22px 22px; color: var(--ink-700); font-size: 16px; line-height: 1.6; }
.faq-answer-inner p { margin: 0 0 8px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner a { color: var(--ink-900); border-bottom: 2px solid var(--saffron-500); text-decoration: none; }
.faq-answer-inner a:hover { background: rgba(255,210,63,.12); }

/* ─── Buying Guide ─── */
.buying-guide-card {
  max-width: 980px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-xl);
  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-card h2 {
  font-size: clamp(34px, 4vw, 48px); color: var(--ink-900); margin-bottom: 20px;
}
.buying-guide-card h2 + p { font-size: 20px; line-height: 1.55; color: var(--ink-700); }
.buying-guide-card h3 {
  margin: 1.6em 0 0.5em; padding-top: 0.6em;
  border-top: 1px solid var(--border);
  font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500; color: var(--ink-900);
}
.buying-guide-card h4 {
  font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-900); margin: 1em 0 0.4em; line-height: 1.4;
}
.buying-guide-card p { margin-bottom: 16px; }
.buying-guide-card a { color: var(--ink-900); border-bottom: 2px solid var(--saffron-500); text-decoration: none; }
.buying-guide-card a:hover { background: rgba(255,210,63,.10); }
.buying-guide-card ul { list-style: none; padding: 0; display: grid; gap: 8px; margin-bottom: 24px; }
.buying-guide-card ul li {
  position: relative; padding: 12px 16px 12px 44px;
  background: var(--cream-50); border-left: 3px solid var(--saffron-500);
  border-radius: 6px; font-size: 16px;
}
.buying-guide-card 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-card ul li strong { color: var(--ink-900); }

/* ─── Company ─── */
.company-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.company-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 24px;
}
.co-icon { margin-bottom: 16px; }
.company-block h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: var(--ink-900); margin-bottom: 10px; letter-spacing: 0; line-height: 1.4; }
.company-block p { color: var(--ink-700); font-size: 15px; line-height: 1.6; margin-bottom: 6px; }
.company-block a { color: var(--ink-900); border-bottom: 1px solid var(--saffron-500); text-decoration: none; }
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 24px;
  background: var(--ink-900); border-radius: var(--radius-xl); padding: 28px 32px;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(250,246,236,.8); font-size: 15px; font-weight: 600; }

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.contact-card {
  background: var(--cream-100); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 24px;
}
.cc-icon { margin-bottom: 16px; }
.contact-card h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: var(--ink-900); margin-bottom: 10px; letter-spacing: 0; line-height: 1.4; }
.contact-card p { color: var(--ink-700); font-size: 15px; line-height: 1.65; margin-bottom: 6px; }
.contact-link { display: block; color: var(--ink-900); font-weight: 600; margin-bottom: 10px; text-decoration: none; word-break: break-all; border-bottom: 2px solid var(--saffron-500); padding-bottom: 2px; }
.contact-link:hover { background: rgba(255,210,63,.10); }

/* ─── Final CTA ─── */
.cta-strip { padding: 96px 0; text-align: center; background: var(--ink-900); }
.cta-strip h2 { font-size: clamp(32px, 4vw, 52px); color: var(--cream-50); margin-bottom: 16px; }
.cta-strip p { color: rgba(250,246,236,.7); max-width: 520px; margin: 0 auto 40px; font-size: 18px; }

/* ─── Footer ─── */
.site-footer { background: var(--charcoal-800); padding: 80px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 60px;
}
.footer-wordmark {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--cream-50); margin-bottom: 14px;
}
.footer-blurb { color: rgba(250,246,236,.7); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.footer-delivery-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,210,63,.12); border: 1px solid rgba(255,210,63,.2);
  border-radius: var(--radius-pill); padding: 4px 12px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--saffron-400);
}
.footer-delivery-tag .badge-dot { width: 8px; height: 8px; background: var(--saffron-500); animation: none; }
.footer-col h4 {
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--saffron-500); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(250,246,236,.85); text-decoration: none;
  font-size: 15px; margin-bottom: 9px; transition: color var(--dur-base);
}
.footer-col a:hover { color: var(--cream-50); }
.footer-col p { color: rgba(250,246,236,.7); font-size: 14px; line-height: 1.65; margin-bottom: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(250,246,236,.55); font-size: 13px;
}
.footer-bottom a { color: rgba(250,246,236,.4); text-decoration: none; transition: color var(--dur-base); }
.footer-bottom a:hover { color: var(--cream-50); }

/* ─── Responsive ─── */
@media (max-width: 880px) {
  .nav-links, .nav-shop-btn { display: none; }
  .nav-burger { display: flex; }
  .nav-wrap { padding: 8px 8px 8px 18px; gap: 12px; }
  .nav-brand { font-size: 18px; }
  .specs-layout { grid-template-columns: 1fr; gap: 48px; }
  .sc-2, .sc-3 { transform: none; }
  .fifi-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .wrap { padding: 0 16px; }
  .cta-strip { padding: 64px 0; }
}
@media (max-width: 560px) {
  .country-search-row { padding: 8px 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .fifi-grid { grid-template-columns: 1fr; }
  .nav-brand { font-size: 16px; }
  .hero-trust { gap: 10px 16px; font-size: 14px; }
  .trust-sep { display: none; }
}
