/* ================================================
   GRINDZ COFFEE — Global Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=DM+Sans:wght@400;500;600&family=Permanent+Marker&display=swap');

:root {
  --cream: #F4E9D1;
  --brown: #5D3722;
  --white: #FFFFFF;
  --black: #1A0F00;
  --brown-dark: #3D2010;
  --cream-dark: #D4C4A8;
  --cream-mid: #EAD9B8;
  --transition: 0.3s ease;
  --nav-height: 72px;
}

/* ========================
   RESET
   ======================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

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

/* ========================
   GRAIN TEXTURE OVERLAY
   ======================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
}

/* ========================
   CUSTOM CURSOR
   ======================== */
#cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  background: var(--brown);
  border: 2.5px solid var(--cream);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

#cursor.hover {
  width: 36px;
  height: 36px;
  background: rgba(93, 55, 34, 0.5);
  border-color: var(--brown);
}

#cursor.clicking {
  transform: translate(-50%, -50%) scale(0.8);
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--nav-height);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav-logo {
  font-family: 'Luckiest Guy', cursive;
  color: var(--cream);
  font-size: 28px;
  text-decoration: none;
  letter-spacing: 1px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  color: var(--cream);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cream);
  transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
  text-decoration: none;
}
.cart-btn:hover { background: rgba(244, 233, 209, 0.1); }
.cart-btn svg { width: 24px; height: 24px; fill: none; stroke: var(--cream); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #E53935;
  color: white;
  font-size: 9px;
  font-weight: 800;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  display: none;
}
.cart-count.visible { display: flex; }

.nav-cta {
  background: var(--cream);
  color: var(--brown);
  border: 2px solid var(--cream);
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
  transform: scale(1.04);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brown);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Luckiest Guy', cursive;
  color: var(--cream);
  font-size: 52px;
  text-decoration: none;
  letter-spacing: 2px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav a:hover { opacity: 0.75; }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: var(--black);
  color: var(--cream);
  padding: 64px 48px 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Luckiest Guy', cursive;
  font-size: 34px;
  color: var(--cream);
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.6;
  max-width: 220px;
  font-style: italic;
}

.footer-section-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--cream);
  opacity: 0.5;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.7;
  transition: opacity var(--transition);
  font-weight: 500;
}
.footer-nav-links a:hover { opacity: 1; }

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(244, 233, 209, 0.25);
  border-radius: 50%;
  transition: all var(--transition);
}
.social-icons a:hover {
  border-color: var(--cream);
  background: rgba(244, 233, 209, 0.08);
}
.social-icons svg { width: 18px; height: 18px; fill: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(244, 233, 209, 0.12);
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.45;
}

.zentrix-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #252525;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.8px;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.zentrix-badge:hover {
  background: #333;
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.zentrix-badge strong { color: white; font-weight: 700; }

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brown);
  color: var(--cream);
  border: 2px solid var(--brown);
  padding: 15px 36px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(93, 55, 34, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
  padding: 15px 36px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--brown);
  color: var(--cream);
  transform: scale(1.04);
}

.btn-primary-cream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--brown);
  border: 2px solid var(--cream);
  padding: 15px 36px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-primary-cream:hover {
  background: transparent;
  color: var(--cream);
  transform: scale(1.04);
}

/* ========================
   PRODUCT CARDS
   ======================== */
.product-card {
  background: var(--cream);
  border: 2px solid var(--brown);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(93, 55, 34, 0.18);
}

.product-img-placeholder {
  width: 100%;
  height: 230px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Permanent Marker', cursive;
  font-size: 13px;
  color: var(--brown);
  opacity: 0.55;
  border-bottom: 2px solid var(--cream-dark);
}

.product-info { padding: 22px 20px 20px; }

.product-category-tag {
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.product-name {
  font-family: 'Luckiest Guy', cursive;
  font-size: 22px;
  color: var(--brown);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.product-note {
  font-size: 13px;
  color: var(--black);
  opacity: 0.65;
  margin-bottom: 14px;
  font-style: italic;
  line-height: 1.5;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-price {
  font-weight: 700;
  font-size: 20px;
  color: var(--brown);
}

.product-size-note {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.55;
  font-family: 'DM Sans', sans-serif;
}

.add-to-cart {
  width: 100%;
  background: var(--brown);
  color: var(--cream);
  border: 2px solid var(--brown);
  padding: 13px 16px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.add-to-cart:hover {
  background: transparent;
  color: var(--brown);
  transform: scale(1.02);
}

/* ========================
   TOAST NOTIFICATION
   ======================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--brown);
  color: var(--cream);
  padding: 16px 26px;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  z-index: 8000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========================
   PAGE HERO BANNER
   ======================== */
.page-hero {
  background: var(--brown);
  padding: 140px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(244,233,209,0.03) 40px,
    rgba(244,233,209,0.03) 80px
  );
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 72px;
  color: var(--cream);
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--cream);
  opacity: 0.75;
  font-size: 18px;
  margin-top: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========================
   SECTION COMMON
   ======================== */
.section {
  padding: 96px 48px;
}

.section-header {
  margin-bottom: 56px;
}

.section-heading {
  font-family: 'Luckiest Guy', cursive;
  font-size: 56px;
  color: var(--brown);
  letter-spacing: 1px;
  line-height: 1;
}

.section-sub {
  font-size: 17px;
  color: var(--black);
  opacity: 0.65;
  margin-top: 12px;
  font-weight: 400;
  max-width: 480px;
}

/* ========================
   MARQUEE
   ======================== */
.marquee-strip {
  background: var(--brown);
  overflow: hidden;
  padding: 18px 0;
  border-top: 3px solid var(--brown-dark);
  border-bottom: 3px solid var(--brown-dark);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: 'Luckiest Guy', cursive;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 2px;
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================
   TRUST BADGES
   ======================== */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badge {
  background: var(--cream);
  border: 2px solid var(--brown);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: 'Permanent Marker', cursive;
  font-size: 13px;
  color: var(--brown);
  letter-spacing: 0.5px;
}

/* ========================
   ANIMATIONS (GSAP targets)
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ========================
   FORM ELEMENTS
   ======================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  font-family: 'DM Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--cream-dark);
  background: var(--white);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--black);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========================
   PRELOADER
   ======================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease;
}
.preloader-cup {
  font-size: 56px;
  animation: preloader-bob 0.7s ease-in-out infinite alternate;
}
.preloader-bar-wrap {
  width: 120px;
  height: 4px;
  background: rgba(93,55,34,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  background: var(--brown);
  border-radius: 2px;
  animation: preloader-fill 0.9s ease-out forwards;
}
.preloader-label {
  font-family: 'Luckiest Guy', cursive;
  font-size: 18px;
  color: var(--brown);
  letter-spacing: 3px;
  opacity: 0.7;
}
@keyframes preloader-bob {
  from { transform: translateY(0) rotate(-5deg); }
  to   { transform: translateY(-10px) rotate(5deg); }
}
@keyframes preloader-fill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ========================
   RIPPLE KEYFRAME
   ======================== */
@keyframes grindz-ripple {
  to { transform: scale(1); opacity: 0; }
}

/* ========================
   BUTTON SHIMMER
   ======================== */
.btn-primary,
.btn-primary-cream,
.nav-cta {
  overflow: hidden;
}
.btn-primary::after,
.btn-primary-cream::after,
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after,
.btn-primary-cream:hover::after,
.nav-cta:hover::after {
  left: 160%;
}

/* ========================
   PRODUCT CARD IMAGE ZOOM
   ======================== */
.product-card .product-img-placeholder {
  overflow: hidden;
}
.product-card .product-img-placeholder img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img-placeholder img {
  transform: scale(1.07);
}

/* ========================
   FLOATING KEYFRAME (CSS fallback)
   ======================== */
@keyframes float-bag {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

/* ========================
   MARQUEE HOVER PAUSE
   ======================== */
.marquee-track {
  animation-play-state: running;
}

/* ========================
   TESTIMONIAL CARD GLOW
   ======================== */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(244,233,209,0.18);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* ========================
   HERO ELEMENTS PARALLAX
   ======================== */
.hero-headline,
.hero-sub,
.mascot-img-wrap,
.trust-badges {
  transition: transform 0.08s linear;
}

/* ========================
   SPLIT WORD CONTAINERS
   ======================== */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.split-inner {
  display: inline-block;
}

/* ========================
   PAGE TRANSITION FADE-IN
   ======================== */
/* NOTE: no transform on body — transforms create a new stacking context
   which breaks position:fixed cursor elements */
body {
  animation: page-enter 0.45s ease both;
}
@keyframes page-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ========================
   CAROUSEL ITEM GLOW ON ACTIVE
   ======================== */
.carousel-item[data-pos="active"] .carousel-product-img img {
  filter: drop-shadow(0 24px 56px rgba(93,55,34,0.3));
}
.carousel-item[data-pos="prev-1"] .carousel-product-img img,
.carousel-item[data-pos="next-1"] .carousel-product-img img {
  filter: drop-shadow(0 12px 28px rgba(93,55,34,0.18));
}
.carousel-item[data-pos="prev-2"] .carousel-product-img img,
.carousel-item[data-pos="next-2"] .carousel-product-img img {
  filter: drop-shadow(0 6px 16px rgba(93,55,34,0.1));
}

/* ========================
   FAMILY CARD HOVER
   ======================== */
.family-card img,
.family-photo {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.family-card:hover .family-photo {
  transform: scale(1.06) translateY(-4px);
}

/* ========================
   SOCIAL ICON SPIN
   ======================== */
.social-icons a:hover svg {
  animation: spin-once 0.4s ease;
}
@keyframes spin-once {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ========================
   FOOTER LOGO BOUNCE
   ======================== */
.footer-logo:hover {
  animation: logo-bounce 0.4s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-block;
}
@keyframes logo-bounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .section { padding: 72px 32px; }
  .page-hero { padding: 120px 32px 64px; }
  footer { padding: 56px 32px 28px; }
  .page-hero h1 { font-size: 56px; }
  .section-heading { font-size: 44px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 20px; }
  .page-hero { padding: 110px 20px 56px; }
  footer { padding: 48px 20px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .page-hero h1 { font-size: 40px; }
  .section-heading { font-size: 36px; }
  .trust-badges { gap: 10px; }
  .trust-badge { font-size: 11px; padding: 8px 14px; }
}
