/* ============================================================
   Magnetic Screens Company — Shared Asset Styles
   ============================================================ */

:root {
  --blue-dark:   #0a2a5e;
  --blue-mid:    #1557a0;
  --blue-light:  #2980d9;
  --blue-pale:   #e8f2fc;
  --accent:      #f0a500;
  --accent-dark: #c07d00;
  --white:       #ffffff;
  --off-white:   #f8faff;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-light:  #6b7280;
  --border:      #dde6f5;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 20px rgba(10,42,94,0.10);
  --shadow-lg:   0 12px 48px rgba(10,42,94,0.16);
}

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

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-mid); text-decoration: none; }
a:hover { color: var(--blue-light); }

/* ---- Typography ---- */
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; color: var(--blue-dark); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; color: var(--blue-dark); margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.4rem; }
p  { margin-bottom: 1rem; color: var(--text-mid); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; font-size: 1rem; font-weight: 700;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.2s ease; text-decoration: none;
  min-height: 52px;
}
.btn-primary { background: var(--blue-mid); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent  { background: var(--accent); color: var(--blue-dark); }
.btn-accent:hover  { background: var(--accent-dark); color: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); }

/* ---- Site nav ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(10,42,94,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-text { font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: var(--blue-dark); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a { color: var(--white); font-size: 1.4rem; font-weight: 700; }
.mobile-nav-overlay a:hover { color: var(--accent); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; cursor: pointer; color: var(--white); font-size: 2rem; line-height: 1; }

/* ---- Sections ---- */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--blue-dark); }
.container { max-width: 1180px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 0.5rem; }
.section-intro { font-size: 1.1rem; color: var(--text-light); max-width: 640px; }

/* ---- Country cards ---- */
.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 0; }
.country-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 2rem 1.5rem 1.5rem; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); background: var(--white);
  transition: all 0.22s ease; color: var(--text-dark);
}
.country-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.country-flag { font-size: 3rem; line-height: 1; margin-bottom: 0.25rem; }
.country-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.country-domain { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem; }
.country-btn {
  width: 100%; justify-content: center; border-radius: 8px;
  padding: 0.7rem 1rem; font-size: 0.82rem; letter-spacing: 0.05em;
  min-height: 44px; margin-top: 0.25rem;
}

/* ---- Search bar ---- */
.search-wrap { position: relative; max-width: 420px; margin: 2rem 0 0; }
.search-wrap input {
  width: 100%; padding: 0.9rem 1.2rem 0.9rem 3rem;
  border: 1.5px solid var(--border); border-radius: 50px;
  font-size: 1rem; outline: none; background: var(--white);
  transition: border-color 0.2s;
}
.search-wrap input:focus { border-color: var(--blue-light); }
.search-wrap svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-light); width: 18px; height: 18px; }

/* ---- Benefits ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.benefit-card { padding: 2rem 1.5rem; border-radius: var(--radius-lg); background: var(--white); border: 1.5px solid var(--border); }
.benefit-icon { width: 48px; height: 48px; background: var(--blue-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.benefit-icon svg { width: 24px; height: 24px; color: var(--blue-mid); }

/* ---- Reviews ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.review-card { padding: 1.75rem; border-radius: var(--radius-lg); background: var(--white); border: 1.5px solid var(--border); }
.review-stars { display: flex; gap: 3px; margin-bottom: 0.75rem; }
.review-stars svg { width: 16px; height: 16px; fill: var(--accent); }
.review-author { font-weight: 700; font-size: 0.9rem; margin-top: 1rem; color: var(--blue-dark); }
.review-location { font-size: 0.8rem; color: var(--text-light); }

/* ---- FAQ Accordion ---- */
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: 1.05rem; font-weight: 700; color: var(--blue-dark);
  min-height: 52px;
}
.faq-question .icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.faq-question .icon svg { width: 14px; height: 14px; color: var(--blue-mid); }
.faq-question[aria-expanded="true"] .icon { transform: rotate(180deg); background: var(--blue-mid); }
.faq-question[aria-expanded="true"] .icon svg { color: var(--white); }
.faq-answer { display: none; padding: 0 0 1.25rem; }
.faq-answer.open { display: block; }
.faq-answer p { margin: 0; color: var(--text-mid); }

/* ---- Blog cards ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.blog-card { border-radius: var(--radius-lg); border: 1.5px solid var(--border); overflow: hidden; background: var(--white); transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-body { padding: 1.25rem 1.5rem; }
.blog-card-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--blue-dark); }
.blog-card h3 a:hover { color: var(--blue-light); }
.blog-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.read-more { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.75rem; font-size: 0.85rem; font-weight: 700; color: var(--blue-mid); }

/* ---- Sticky CTA ---- */
.sticky-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
  display: none;
}
.sticky-cta.visible { display: block; }

/* ---- Post page ---- */
/* ---- Blog post header ---- */
.post-hero {
  background: #0b1e3d;
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.post-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; font-size: 0.85rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.post-breadcrumb a { color: var(--blue-light); font-weight: 500; }
.post-breadcrumb a:hover { color: var(--accent); }
.post-breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.post-breadcrumb .current { color: rgba(255,255,255,0.65); }
.post-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.15;
  color: var(--white);
  max-width: 860px; margin: 0 auto 1.5rem;
  letter-spacing: -0.01em;
}
.post-meta {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  margin-top: 0; text-align: center;
}

/* ---- Blog post body ---- */
.post-body {
  max-width: 780px; margin: 0 auto;
  padding: 4rem 2rem 4rem;
}
.post-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; line-height: 1.2;
  color: var(--text-dark); margin-top: 2.5rem; margin-bottom: 0.75rem;
}
.post-body h3 { margin-top: 2rem; margin-bottom: 0.6rem; color: var(--text-dark); }
.post-body p { margin-bottom: 1.3rem; color: var(--text-mid); font-size: 1rem; line-height: 1.8; }
.post-body ul, .post-body ol { margin: 1rem 0 1.3rem 1.5rem; }
.post-body li { margin-bottom: 0.5rem; color: var(--text-mid); line-height: 1.7; }
.post-body strong { color: var(--text-dark); }
.post-body a { color: var(--blue-mid); text-decoration: underline; text-underline-offset: 3px; }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ---- Footer ---- */
.site-footer {
  background: var(--blue-dark); color: rgba(255,255,255,0.78);
  padding: 4rem 2rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .country-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { bottom: 1rem; right: 1rem; }
}
@media (max-width: 480px) {
  html { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .country-card { padding: 1.5rem 1.25rem 1.25rem; }
  .country-flag { font-size: 2.5rem; }
  .search-wrap { max-width: 100%; }
}
/* style.css — Homepage-specific overrides */

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1a1a2e;
  padding-top: 0; /* nav sits over image */
}

/* Full-bleed photo — covers entire hero */
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/hero.png') center center / cover no-repeat;
  opacity: 1;
}

/* Left-side dark scrim only — photo stays visible on right */
.hero-blend {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,20,50,0.82) 0%,
    rgba(10,20,50,0.68) 42%,
    rgba(10,20,50,0.28) 65%,
    rgba(10,20,50,0.08) 100%
  );
}

/* Content sits in middle of hero vertically */
.hero-content {
  position: relative; z-index: 2;
  max-width: 660px;
  padding: 10rem 2rem 5rem 5%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Solid amber pill badge — matches screenshot */
.hero-tagline {
  display: inline-block;
  background: var(--accent);
  color: var(--blue-dark);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.38rem 1rem; border-radius: 6px; margin-bottom: 1.5rem;
  width: fit-content;
}

/* Large bold heading — screenshot uses heavy weight, no accent colour split */
.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-heading span { color: var(--white); } /* no accent split on heading */

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.88);
  margin-bottom: 2rem; max-width: 540px; line-height: 1.65;
}

/* Buttons — amber solid + white outline, both rounded-rect like screenshot */
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-accent {
  border-radius: 8px; font-size: 0.85rem; letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem; display: inline-flex; align-items: center; gap: 0.5rem;
}
.hero-actions .btn-outline {
  border-radius: 8px; font-size: 0.85rem; letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem; border-width: 2px;
  color: white; border-color: white;
}
.hero-actions .btn-outline:hover { background: white; color: var(--blue-dark); }

/* Trust bar — sits at the bottom of the hero content, inline icons */
.hero-trust {
  display: flex; gap: 1.75rem; margin-top: 2.5rem; flex-wrap: wrap; align-items: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.82);
}
.hero-trust-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* Floating SHOP NOW pill — bottom-right corner, matches screenshot */
.hero-float-cta {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 10;
  background: var(--accent); color: var(--blue-dark);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 1.5rem; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(240,165,0,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-float-cta:hover {
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,165,0,0.55);
  color: var(--blue-dark);
}
.hero-float-cta svg { width: 16px; height: 16px; }

/* ---- Country section ---- */
#shop-by-country { scroll-margin-top: 80px; }

/* ---- Fifi Mascot Section ---- */
.fifi-section {
  background: linear-gradient(160deg, #fffbf0 0%, #fff9e6 50%, #f0f7ff 100%);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.fifi-header {
  display: flex; gap: 3rem; align-items: flex-start;
  margin-bottom: 4rem; flex-wrap: wrap;
}
.fifi-stamp {
  width: 180px; height: 180px; object-fit: contain; flex-shrink: 0;
  border-radius: 50%; background: white; padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(240,165,0,0.2);
}
.fifi-header-text { flex: 1; min-width: 280px; }
.fifi-tagline {
  font-size: 0.95rem; font-weight: 700; color: var(--blue-mid);
  letter-spacing: 0.04em; margin-bottom: 1rem; margin-top: 0.25rem;
}
.fifi-roles {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem; margin-bottom: 4rem;
}
.fifi-role-card {
  background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.fifi-role-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.fifi-role-img-wrap {
  width: 100%; background: #f8f8f8;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; max-height: 280px;
}
.fifi-role-img-wrap img {
  width: 100%; height: auto; display: block;
  object-fit: contain; max-height: 280px;
}
.fifi-role-badge {
  background: var(--accent); color: var(--blue-dark);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.3rem 1rem; text-align: center;
}
.fifi-role-card h3 { padding: 1rem 1.25rem 0.25rem; font-size: 1rem; color: var(--blue-dark); }
.fifi-role-card p { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); margin: 0; flex: 1; }
.fifi-role-card em { color: var(--blue-mid); font-style: italic; }
.fifi-role-card--quote {
  background: var(--blue-dark); border-color: var(--blue-dark);
  align-items: center; text-align: center; padding: 2.5rem 1.75rem; justify-content: center;
}
.fifi-role-card--quote h3 { color: white; padding: 0; margin-bottom: 1rem; }
.fifi-role-card--quote p { color: rgba(255,255,255,0.75); padding: 0; }
.fifi-role-card--quote p strong { color: white; }
.fifi-big-paw { font-size: 3.5rem; margin-bottom: 0.75rem; }
.fifi-role-card--quote blockquote {
  font-size: 2.5rem; color: var(--accent); font-weight: 800;
  margin: 0 0 0.75rem; line-height: 1; font-family: 'Poppins', sans-serif;
}
.fifi-quote-credit { font-size: 0.85rem !important; color: rgba(255,255,255,0.55) !important; margin-bottom: 0 !important; }
.fifi-signoff {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  padding: 2rem; border-left: 5px solid var(--accent);
}
.fifi-signoff-stamp { width: 90px; height: 90px; object-fit: contain; flex-shrink: 0; border-radius: 50%; }
.fifi-signoff p { margin: 0 0 0.5rem; color: var(--text-mid); font-size: 0.95rem; }
.fifi-signoff p:last-child { margin: 0; }

/* ---- Product specs ---- */
.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.spec-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.spec-card strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--blue-mid); }
.spec-card span { font-size: 0.85rem; color: var(--text-light); }

/* ---- Company details ---- */
.company-details { background: var(--blue-dark); color: rgba(255,255,255,0.8); padding: 4rem 2rem; }
.company-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; max-width: 1180px; margin: 2rem auto 0; }
.company-item { display: flex; flex-direction: column; gap: 0.25rem; }
.company-item strong { color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; }
.company-item span { font-size: 0.95rem; }

/* ---- CTA final ---- */
.final-cta {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  color: var(--white); text-align: center; padding: 5rem 2rem;
}
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.final-cta p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0.75rem auto 2rem; }

/* ---- Buying guide ---- */
.buying-guide { max-width: 820px; }
.buying-guide h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.buying-guide h3 { margin-top: 1.75rem; margin-bottom: 0.6rem; color: var(--blue-mid); }
.buying-guide h4 { margin-top: 1.25rem; margin-bottom: 0.4rem; }
.buying-guide p, .buying-guide li { color: var(--text-mid); }
.buying-guide ul { margin: 0.75rem 0 1rem 1.5rem; }
.buying-guide li { margin-bottom: 0.4rem; }

/* ---- Contact ---- */
.contact-details { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 1.5rem; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); min-width: 220px; }
.contact-item svg { width: 22px; height: 22px; color: var(--blue-mid); flex-shrink: 0; }
.contact-item span { font-size: 0.95rem; color: var(--text-mid); }
.contact-item strong { display: block; font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.15rem; }

@media (max-width: 768px) {
  .hero-section { min-height: 100svh; }
  .hero-bg { background-position: center center; background-size: cover; }
  .hero-blend { background: linear-gradient(to bottom, rgba(10,20,50,0.78) 0%, rgba(10,20,50,0.65) 100%); }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-float-cta { bottom: 1.25rem; right: 1.25rem; font-size: 0.75rem; padding: 0.7rem 1.2rem; }
  .fifi-header { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .fifi-stamp { width: 130px; height: 130px; }
  .fifi-roles { grid-template-columns: 1fr; }
  .fifi-signoff { flex-direction: column; align-items: flex-start; }
}
