/* ============================================================
   Fantastic Glasses — Global Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #3f83bf;
  --primary-dark: #2c6a9e;
  --dark: #1a1a2e;
  --accent: #e8491d;
  --accent-hover: #cf3a12;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --text: #333333;
  --text-light: #555555;
  --shadow: 0 2px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .3s ease;
  --container: 1200px;
  --header-h: 72px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

/* ---------- Utility ---------- */
.container { width: 92%; max-width: var(--container); margin: 0 auto; }
.container-wide { width: 96%; max-width: 1600px; margin: 0 auto; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: .85rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  width: 92%;
  margin: 0 auto;
}

.header-logo img { height: 52px; width: auto; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--primary); background: rgba(63,131,191,.06); }

/* Caret */
.nav-caret { font-size: .6rem; transition: transform var(--transition); }
.main-nav > li:hover .nav-caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
  z-index: 1001;
}
.main-nav > li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--light); color: var(--primary); padding-left: 24px; }
.dropdown-divider { height: 1px; margin: 6px 12px; background: var(--gray-light); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
}
.header-phone svg { width: 18px; height: 18px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 60px) 20px 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 50%, var(--primary-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse at 30% 50%, rgba(63,131,191,.25) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,.06), transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); margin-bottom: 20px; font-weight: 800; color: var(--white); }
.hero h2 { color: var(--white); }
.hero p { font-size: clamp(1rem, 2.5vw, 1.3rem); opacity: .9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.9); }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero — smaller for inner pages */
.hero-sm {
  min-height: 40vh;
  padding: calc(var(--header-h) + 40px) 20px 60px;
}
.hero-sm h1 { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--white); }
.hero-sm p { color: rgba(255,255,255,.85); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 80px 0; }
section:nth-child(even):not(.hero):not(.promo-banner):not([style]) { background: var(--light); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-header .underline {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   CARD GRIDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--primary); }

.card-img { overflow: hidden; }
.card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--text-light); font-size: .95rem; }

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.6rem;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-link:hover { color: inherit; }
.card-link .card-body h3 { color: var(--dark); transition: color var(--transition); }
.card-link:hover .card-body h3 { color: var(--primary); }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b3d 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.promo-banner p { font-size: 1.15rem; opacity: .95; margin-bottom: 28px; }

/* Scrolling repeating text background */
.promo-scroll-bg {
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 100%;
  z-index: 1;
  opacity: .08;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 0
  );
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: promo-scroll 20s linear infinite;
}
.promo-scroll-bg::before,
.promo-scroll-bg::after {
  content: "3 FOR 1  \2022  3 FOR 1  \2022  3 FOR 1  \2022  3 FOR 1  \2022  3 FOR 1  \2022  3 FOR 1  \2022  3 FOR 1  \2022  3 FOR 1  \2022  3 FOR 1  \2022  3 FOR 1  \2022  ";
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .1em;
  flex-shrink: 0;
}
@keyframes promo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   BRAND LOGOS ROW
   ============================================================ */
.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.brand-logos span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  opacity: .35;
  transition: all var(--transition);
  white-space: nowrap;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
}
.brand-logos span:hover { opacity: .8; background: rgba(63,131,191,.06); color: var(--primary); }
.brand-logos a { display: flex; align-items: center; padding: 12px 16px; border-radius: var(--radius-sm); transition: all var(--transition); }
.brand-logos a img { height: auto; max-height: 48px; filter: grayscale(100%); opacity: .4; transition: all var(--transition); }
.brand-logos a:hover { background: rgba(63,131,191,.06); }
.brand-logos a:hover img { filter: grayscale(0); opacity: 1; }

/* ============================================================
   TWO-COLUMN CONTENT (Product/Brand pages)
   ============================================================ */
.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text h2 { margin-bottom: 16px; }
.content-text p { color: var(--text-light); margin-bottom: 16px; }
.content-text ul { margin: 16px 0 24px; }
.content-text ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text-light);
}
.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.content-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.content-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.content-image .placeholder-icon {
  font-size: 5rem;
  color: rgba(255,255,255,.4);
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,.15);
}

/* ============================================================
   FEATURES LIST
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(63,131,191,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ============================================================
   INFO PAGE — PROSE
   ============================================================ */
.prose { max-width: 800px; margin: 0 auto; padding: 60px 0; }
.prose h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.prose h3 { margin: 32px 0 12px; font-size: 1.25rem; }
.prose p { margin-bottom: 16px; line-height: 1.8; }
.prose ul, .prose ol { margin: 16px 0 24px 24px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; line-height: 1.6; color: var(--text-light); }
.prose strong { color: var(--dark); }

/* ============================================================
   IFRAME PAGES
   ============================================================ */
.iframe-wrapper {
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
  width: 100%;
}
.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.iframe-wrapper-wide {
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
  width: 100%;
  padding: 0;
}
.iframe-wrapper-wide iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(63,131,191,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { margin: 0; color: var(--text-light); font-size: .95rem; }

.hours-table { width: 100%; margin-top: 16px; }
.hours-table tr { border-bottom: 1px solid var(--gray-light); }
.hours-table td { padding: 10px 0; font-size: .95rem; }
.hours-table td:first-child { font-weight: 600; color: var(--dark); }
.hours-table td:last-child { text-align: right; color: var(--text-light); }

.contact-form { background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-about p { font-size: .9rem; line-height: 1.7; margin-top: 16px; }
.footer-about img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 8px; }

.site-footer h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact p { font-size: .88rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; fill: rgba(255,255,255,.5); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   FLOATING CTAs
   ============================================================ */
.floating-ctas {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 0 14px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all var(--transition);
  text-decoration: none;
  opacity: .9;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
}
.fab:hover { opacity: 1; transform: scale(1.05); color: var(--white); }
.fab-phone { background: #25d366; }
.fab-book { background: var(--primary); }
.fab svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.fab-label { white-space: nowrap; }

/* ============================================================
   ANIMATIONS (fade-in on scroll)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .15s; }
.fade-in-delay-2 { transition-delay: .3s; }
.fade-in-delay-3 { transition-delay: .45s; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .4; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: var(--white);
    padding: calc(var(--header-h) + 20px) 24px 24px;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1001;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav > li > a { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--gray-light); }
  .nav-caret { margin-left: auto; }

  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0;
    background: var(--light);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
  }
  .dropdown.open { max-height: 600px; }

  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .header-phone span { display: none; }

  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 48px 0; }
  .hero { min-height: 55vh; padding: calc(var(--header-h) + 32px) 16px 48px; }
  .hero-sm { min-height: 30vh; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logos { gap: 24px; }
  .brand-logos span { font-size: 1rem; }
  .floating-ctas { bottom: 16px; right: 16px; gap: 10px; }
  .fab { height: 46px; padding: 0 16px 0 14px; font-size: .85rem; gap: 7px; border-radius: 23px; }
  .fab svg { width: 18px; height: 18px; }
  .features-grid { grid-template-columns: 1fr; }
}
