/* FEIERDUN — Brand CSS (Light Theme) */
:root {
  --orange: #FF6B1A;
  --orange-dark: #e05a0d;
  --orange-light: #fef2ea;

  /* Light surfaces — warm off-white, not pure white, not dark */
  --bg:   #f5f3ef;   /* page background — warm linen */
  --bg2:  #ede9e3;   /* section alternate — slightly deeper warm */
  --bg3:  #e4dfd7;   /* deeper dividers */
  --card: #faf8f5;   /* card surfaces — nearly white with warmth */

  /* Text */
  --text:      #1a1a1a;
  --text-soft: #4a4a4a;
  --text-dim:  #888888;

  /* Borders */
  --border:      rgba(0,0,0,0.09);
  --border-soft: rgba(0,0,0,0.05);

  /* Legacy aliases so old rules still resolve correctly */
  --black:       #1a1a1a;
  --dark:        #f0ede8;
  --dark2:       #f7f7f5;
  --gray:        #e8e4de;
  --gray-light:  #d0ccc6;
  --white:       #1a1a1a;
  --white-soft:  rgba(26,26,26,0.87);
  --white-dim:   rgba(26,26,26,0.55);
  --white-faint: rgba(0,0,0,0.08);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,26,0.15);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.nav-logo span { color: var(--orange); }

.nav-favicon {
  width: 28px; height: 28px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
  display: block;
}
.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-menu {
  display: none; position: fixed; inset: 70px 0 0 0; z-index: 999;
  background: var(--bg); padding: 2rem 5%;
  flex-direction: column; gap: 0;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  letter-spacing: 0.05em;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  text-transform: uppercase;
  text-align: center;
  min-height: 44px; display: flex; align-items: center; justify-content: center;
}
.mobile-menu a.active { color: var(--orange); }
.mobile-menu .mob-cta {
  margin-top: 1.5rem;
  background: var(--orange); color: #fff;
  border-radius: var(--radius); text-align: center;
  padding: 1rem; font-size: 1.1rem; font-weight: 700;
  border-bottom: none;
}

/* ============ MARQUEE ============ */
.marquee-wrap {
  background: var(--orange);
  overflow: hidden; white-space: nowrap;
  padding: 10px 0;
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white);
}
.marquee-track span::before { content: '⬡ '; opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* .hero-flag-bg no longer used — kept for safety */
.hero-flag-bg { display: none; }

/* Dark overlay — stronger on the left (text side), fades right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Left column: heavy dark for text contrast */
    linear-gradient(
      to right,
      rgba(10, 10, 10, 0.88) 0%,
      rgba(10, 10, 10, 0.75) 40%,
      rgba(10, 10, 10, 0.30) 70%,
      rgba(10, 10, 10, 0.10) 100%
    ),
    /* Bottom: slight fade so buttons always readable */
    linear-gradient(
      to top,
      rgba(10,10,10,0.45) 0%,
      transparent 30%
    );
}

/* Grid texture on top */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Inner layout: text left, product right */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 130px 6% 80px;
  gap: 0;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,26,0.18);
  border: 1px solid rgba(255,107,26,0.5);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff8c46;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 em { color: var(--orange); font-style: normal; }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Floating product image */
.hero-product-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding-right: 2%;
}
.hero-product-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  animation: heroFloat 5s ease-in-out infinite;
  filter:
    drop-shadow(0 50px 70px rgba(0,0,0,0.7))
    drop-shadow(0 0 60px rgba(255,107,26,0.22));
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(0.5deg); }
}

/* Legacy: keep hero-usa-flag class from other pages doing nothing harmful */
.hero-usa-flag { display: none; }
.hero-bg { display: none; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition);
  min-height: 44px;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,26,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition);
  min-height: 44px;
}
.btn-secondary:hover {
  border-color: var(--orange);
  background: rgba(255,107,26,0.15);
  color: #fff;
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--orange); color: var(--orange);
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition);
  min-height: 44px;
  background: transparent;
}
.btn-outline:hover { background: var(--orange); color: #fff; }

.btn-check {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition);
  min-height: 44px; width: 100%; justify-content: center;
}
.btn-check:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,26,0.35); }

/* ============ SECTION STRUCTURE ============ */
.section { padding: 100px 5%; }
.section-sm { padding: 60px 5%; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-soft); max-width: 600px; line-height: 1.7;
}

/* ============ STATS ============ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 5%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: var(--orange); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ============ PRODUCT CARDS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--card);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,107,26,0.18);
}
.product-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg2);
  display: block;
  padding: 0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-cat {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange);
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; line-height: 1.2;
  flex: 1; color: var(--text);
}
.product-desc { font-size: 0.82rem; color: var(--text-soft); line-height: 1.6; }

/* ============ BENEFITS ============ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.benefit-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.benefit-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,107,26,0.1); }
.benefit-icon {
  width: 56px; height: 56px;
  background: rgba(255,107,26,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.benefit-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--text); }
.benefit-text { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }

/* ============ TESTIMONIALS VIDEO ============ */
.video-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.video-card {
  aspect-ratio: 9/16;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.video-card:hover { border-color: var(--orange); }
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  width: 56px; height: 56px;
  background: rgba(255,107,26,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  pointer-events: none;
}
.video-card:hover .video-play { transform: scale(1.1); }

/* GIF BLOCK */
.gif-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gif-card {
  aspect-ratio: 9/16;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.gif-card img { width: 100%; height: 100%; object-fit: cover; }

/* ============ PRESS ============ */
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.press-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; transition: var(--transition);
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.press-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,107,26,0.1); }
.press-source { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); }
.press-title { font-size: 0.95rem; font-weight: 600; line-height: 1.5; color: var(--text); }
.press-link {
  font-size: 0.8rem; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto;
  transition: gap var(--transition);
}
.press-link:hover { gap: 8px; }

/* ============ APP DOWNLOAD ============ */
.app-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.app-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.app-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 12px 22px;
  transition: var(--transition); min-height: 48px;
  color: #fff;
}
.app-btn:hover {
  background: rgba(255,107,26,0.25);
  border-color: var(--orange);
  color: #fff;
}
.app-btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0;
  color: rgba(255,255,255,0.9);
}
.app-btn-icon i { font-size: 1.5rem; }
.app-btn-text { font-size: 0.68rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.app-btn-label { font-size: 0.95rem; font-weight: 700; color: #fff; line-height: 1.2; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--orange);
  padding: 80px 5%; text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; margin-bottom: 1.5rem; color: #fff;
}
.cta-band p { font-size: 1.05rem; margin-bottom: 2rem; opacity: 0.9; max-width: 500px; margin-left: auto; margin-right: auto; color: #fff; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--orange);
  padding: 14px 36px; border-radius: var(--radius);
  font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition); min-height: 44px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ============ FOOTER — stays dark for visual anchor ============ */
footer, .footer {
  background: #1a1a1a;
  border-top: none;
  padding: 60px 5% 30px;
  color: #fff;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo, .footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  margin-bottom: 1rem; color: #fff;
  display: inline-flex; align-items: center; gap: 0;
}
.footer-logo span { color: var(--orange); }
.footer-favicon {
  width: 30px; height: 30px;
  object-fit: contain; border-radius: 5px;
  opacity: 0.9; flex-shrink: 0;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.footer-instagram, .footer-instagram-svg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
  transition: color var(--transition);
}
.footer-instagram:hover, .footer-instagram-svg:hover { color: var(--orange); }
.footer-instagram svg, .footer-instagram-svg svg { flex-shrink: 0; }
.footer-instagram span { font-size: 0.85rem; }
.footer-nav h4, .footer-contact h4 {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.2rem;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-nav ul li a:hover { color: #fff; }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ============ SCROLL ANIMATION ============ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ============ DIVIDER ============ */
.divider {
  border: none;
  border-top: 1px solid var(--white-faint);
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 140px 5% 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,107,26,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.95; position: relative; z-index: 1;
  color: var(--text);
}
.page-header h1 em { color: var(--orange); font-style: normal; }
.page-header p { font-size: 1.05rem; color: var(--text-soft); max-width: 560px; margin-top: 1rem; position: relative; z-index: 1; }

/* BREADCRUMB */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-dim);
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* ============ FILTER TABS ============ */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-tab {
  padding: 8px 20px; border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-soft); transition: var(--transition);
  cursor: pointer; min-height: 44px; background: var(--card);
}
.filter-tab:hover { border-color: var(--orange); color: var(--orange); }
.filter-tab.active {
  background: var(--orange); border-color: var(--orange); color: #fff;
}

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card, .blog-card a { color: var(--text); }
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.blog-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(255,107,26,0.1); }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg2); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-content, .blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-cat, .blog-card-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); }
.blog-title, .blog-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; line-height: 1.2; flex: 1; color: var(--text); }
.blog-excerpt, .blog-card-excerpt { font-size: 0.83rem; color: var(--text-soft); line-height: 1.6; }
.blog-read, .blog-card-link { font-size: 0.8rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-top: auto; display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.blog-read:hover, .blog-card-link:hover { gap: 8px; }

/* SINGLE POST */
.post-body { max-width: 720px; }
.post-body h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin: 2rem 0 1rem; color: var(--text); }
.post-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; margin: 1.5rem 0 0.8rem; color: var(--orange); }
.post-body p { margin-bottom: 1.2rem; color: var(--text-soft); line-height: 1.8; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.post-body li { color: var(--text-soft); line-height: 1.8; margin-bottom: 0.5rem; }
.post-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.post-body th { background: var(--orange); padding: 10px 14px; font-size: 0.8rem; text-align: left; color: #fff; }
.post-body td { border-bottom: 1px solid var(--border); padding: 10px 14px; font-size: 0.85rem; color: var(--text-soft); }
.post-body tr:nth-child(even) td { background: var(--bg2); }
.post-body blockquote { border-left: 3px solid var(--orange); padding: 1rem 1.5rem; margin: 1.5rem 0; color: var(--text-soft); font-style: italic; background: var(--orange-light); border-radius: 0 8px 8px 0; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  transition: border-color var(--transition); min-height: 44px; width: 100%;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,26,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; transition: border-color var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  padding: 18px 24px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; min-height: 44px; color: var(--text);
}
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(255,107,26,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 24px 18px; font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }

/* ABOUT */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--orange), transparent); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot { position: absolute; left: -40px; top: 4px; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 900; color: #fff; }
.timeline-year { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; color: var(--orange); text-transform: uppercase; margin-bottom: 4px; }
.timeline-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; color: var(--text); }
.timeline-text { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.value-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(255,107,26,0.1); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--text); }
.value-text { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }

/* USA FLAG accent section */
.usa-accent {
  position: relative; overflow: hidden;
  background: var(--bg2);
  padding: 80px 5%;
}
.usa-accent-bg {
  position: absolute; inset: 0;
  background: url('images/usa-flag-bg.webp') center/cover no-repeat;
  opacity: 0.04; filter: grayscale(1);
}

/* ORANGE HIGHLIGHT */
.highlight { color: var(--orange); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .app-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .gif-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 5%; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .gif-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; justify-content: center; }
}

/* ===========================
   BLOG POST STYLES
   =========================== */

.post-hero {
  padding: 80px 0 40px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 1rem;
  color: var(--text);
}
.post-subtitle {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.post-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
}
.post-hero-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
.post-hero-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.post-category-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Post Layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
  align-items: start;
}
.post-content {
  min-width: 0;
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--orange);
}
.post-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin: 2rem 0 0.75rem;
}
.post-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.post-content strong { color: var(--text); }

/* TOC */
.post-toc {
  background: var(--bg2);
  border: 1px solid var(--orange);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 2rem;
}
.post-toc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.post-toc ol {
  padding-left: 1.25rem;
  margin: 0;
}
.post-toc li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.post-toc a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.post-toc a:hover { color: var(--orange); }

/* Callout boxes */
.post-callout {
  background: var(--bg2);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 2rem 0;
}
.post-callout.highlight {
  background: var(--orange-light);
  border-color: var(--orange);
}
.post-callout-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.post-callout p {
  margin-bottom: 0 !important;
  font-size: 0.95rem !important;
  color: var(--text-soft) !important;
}

/* Data Tables */
.data-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  text-align: left;
  white-space: nowrap;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--bg2); }

/* Sources */
.post-sources {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 3rem;
}
.post-sources h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.post-sources ul {
  list-style: none;
  padding: 0;
}
.post-sources li {
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
  margin-bottom: 0.75rem !important;
  padding-left: 1rem;
  border-left: 2px solid rgba(255,107,26,0.4);
}

/* CTA block */
.post-cta-block {
  background: linear-gradient(135deg, var(--orange) 0%, #e55a00 100%);
  border-radius: 16px;
  padding: 40px;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.post-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
.post-cta-text p {
  color: rgba(255,255,255,0.85) !important;
  margin: 0 !important;
}
.post-cta-block .btn-primary {
  background: #fff;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
}
.post-cta-block .btn-primary:hover { background: #f0f0f0; }

/* Sidebar */
.post-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
}
.sidebar-posts { display: flex; flex-direction: column; gap: 16px; }
.sidebar-post {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.sidebar-post-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-post:hover .sidebar-post-title { color: var(--orange); }
.sidebar-widget p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Related posts */
.related-posts {
  background: var(--bg2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--bg2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-top: 70px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-dim); }

/* ===========================
   LEGAL PAGES
   =========================== */

.legal-hero {
  padding: 80px 0 40px;
  background: var(--bg2);
  border-bottom: 2px solid var(--orange);
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.legal-hero p {
  color: var(--text-dim);
  font-size: 0.9rem;
}
.legal-content {
  padding: 60px 0 80px;
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
}
.legal-intro {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 2.5rem;
}
.legal-intro p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
}
.legal-intro p:last-child { margin-bottom: 0; }
.legal-container h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,107,26,0.25);
}
.legal-container h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}
.legal-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.legal-container ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-container li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
.legal-container a { color: var(--orange); }
.legal-contact-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 1rem;
}
.legal-contact-block p {
  margin-bottom: 0.75rem;
  color: var(--text-soft);
}
.legal-contact-block p:last-child { margin-bottom: 0; }

/* ===========================
   RESPONSIVE: POST & LEGAL
   =========================== */

@media (max-width: 900px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar { position: static; }
}
@media (max-width: 600px) {
  .post-cta-block {
    flex-direction: column;
    text-align: center;
  }
  .post-cta-block .btn-primary { width: 100%; text-align: center; }
  .data-table { font-size: 0.8rem; }
  .data-table th, .data-table td { padding: 8px 10px; }
}

/* Footer social icon button */
.footer-social { display: flex; gap: 12px; margin-top: 1.2rem; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: #fff; }

/* App store button icon sizing */
.app-btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  color: rgba(255,255,255,0.9);
}
.app-btn-icon svg { width: 26px; height: 26px; }

/* Favicon-as-icon: tiny brand mark next to logo text */
.nav-favicon {
  width: 28px; height: 28px;
  object-fit: contain;
  border-radius: 6px;
}
.footer-favicon {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: 6px;
  opacity: 0.85;
}

/* ===========================
   FONT AWESOME ICON SIZING
   =========================== */

/* Benefit / Info card icons */
.benefit-icon i, .info-icon i {
  font-size: 1.4rem;
  color: var(--orange);
}

/* Value card icons */
.value-icon i {
  font-size: 1.8rem;
  color: var(--orange);
}

/* Timeline dot icons */
.timeline-dot i {
  font-size: 0.7rem;
  color: #fff;
}

/* Video play button */
.video-play i {
  font-size: 1rem;
  color: #fff;
  margin-left: 3px; /* optical center for play icon */
}

/* FAQ +/× toggle icon */
.faq-icon i {
  font-size: 0.85rem;
  color: var(--orange);
  transition: inherit;
}
.faq-item.open .faq-icon i { color: #fff; }

/* Footer social icons */
.footer-social a i {
  font-size: 1.15rem;
}

/* Footer instagram link icon */
.footer-instagram i, .footer-instagram-svg i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* App store buttons */
.app-btn-icon i {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
}

/* Remove old emoji-sized flex from app-btn-icon */
.app-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.9);
}

/* ===========================
   HERO — RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 130px 6% 60px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-product-wrap { order: -1; }
  .hero-product-img {
    max-width: 340px;
    animation: heroFloat 4s ease-in-out infinite;
  }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-product-img { max-width: 260px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; justify-content: center; }
}

/* ===========================
   INSTAGRAM CTA BLOCK (contact page)
   =========================== */
.insta-cta-block {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.insta-cta-block:hover {
  border-color: #E1306C;
  box-shadow: 0 8px 28px rgba(225,48,108,0.12);
  transform: translateY(-2px);
}
.insta-cta-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.insta-cta-icon i { font-size: 1.4rem; }
.insta-cta-label {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text);
}
.insta-cta-handle {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
}
.insta-cta-arrow {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: transform var(--transition);
}
.insta-cta-block:hover .insta-cta-arrow { transform: translateX(4px); color: var(--orange); }

/* ===========================
   FOOTER APP STORE BUTTONS
   =========================== */
/* Press section — distinct contrasting background */
.press-section {
  background: #1a1a1a !important;
}
.press-section .section-label { color: var(--orange); }
.press-section .section-title { color: #fff; }
.press-section .section-subtitle { color: rgba(255,255,255,0.6); }
.press-section .press-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.press-section .press-card:hover {
  border-color: var(--orange);
  background: rgba(255,107,26,0.08);
}
.press-section .press-title { color: rgba(255,255,255,0.85); }

/* Footer app store buttons — fit-content, equal width via min-width */
.footer-apps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* don't stretch to full width */
  gap: 10px;
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;     /* gap before footer-address */
}
.footer-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  min-height: 50px;
  min-width: 190px;          /* both buttons same width */
  width: 190px;
}
.footer-app-btn:hover {
  background: rgba(255,255,255,0.13);
  border-color: var(--orange);
  color: #fff;
}
.footer-app-btn i {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: rgba(255,255,255,0.85);
  width: 22px;
  text-align: center;
}
.footer-app-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-app-btn span small {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.footer-app-btn span strong,
.footer-app-btn span {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

/* ===========================
   HERO FLOATING STAT CHIPS
   =========================== */
.hero-product-wrap {
  position: relative; /* override previous — chips need this */
}

.hero-chip {
  position: absolute;
  z-index: 10;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 107, 26, 0.35);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  animation: chipFloat 4s ease-in-out infinite;
  pointer-events: none;
}

/* Stagger float animations so chips feel independent */
.hero-chip--tl { animation-delay: 0s;    top: 8%;  left: 0%;   }
.hero-chip--tr { animation-delay: 1.2s;  top: 5%;  right: 0%;  }
.hero-chip--bl { animation-delay: 0.6s;  bottom: 14%; left: 2%; flex-direction: row; gap: 8px; min-width: 140px; }
.hero-chip--br { animation-delay: 1.8s;  bottom: 10%; right: 0%; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-chip__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-chip__value small {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,107,26,0.75);
  letter-spacing: 0;
}
.hero-chip__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hero-chip .fa-shield-halved {
  font-size: 1.2rem;
  color: var(--orange);
}

/* Hide chips on small screens where product is already small */
@media (max-width: 900px) {
  .hero-chip { display: none; }
}

/* Product bullets — light theme */
.product-bullets {
  font-size: 0.8rem;
  color: var(--text-soft);
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-bullets li {
  line-height: 1.5;
}

/* ===========================
   BENEFITS SECTION — dark gradient
   =========================== */
.benefits-section {
  background: linear-gradient(145deg, #111 0%, #1c1c1c 40%, #0f1a10 100%) !important;
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
  overflow: hidden;
}
/* Subtle orange glow top-right */
.benefits-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,107,26,0.18) 0%, transparent 70%);
  pointer-events: none;
}
/* 4-column grid */
.benefits-grid--4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
/* Cards on dark bg */
.benefits-section .benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.benefits-section .benefit-card:hover {
  background: rgba(255,107,26,0.08);
  border-color: var(--orange);
}
.benefits-section .benefit-title { color: #fff; }
.benefits-section .benefit-text  { color: rgba(255,255,255,0.65); }
@media (max-width: 900px) {
  .benefits-grid--4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
  .benefits-grid--4 { grid-template-columns: 1fr !important; }
}

/* ===========================
   APP DOWNLOAD — hex pattern bg
   =========================== */
.app-download-section {
  position: relative;
  background:
    radial-gradient(circle, rgba(255,107,26,0.14) 1px, transparent 1px),
    linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0a1a0a 100%) !important;
  background-size: 30px 30px, 100% 100% !important;
  background-position: 0 0, 0 0 !important;
  border-top: none !important;
  border-bottom: none !important;
}
/* Orange glow bottom-left */
.app-download-section::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,26,0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.app-download-section .app-section { position: relative; z-index: 1; }

/* ===========================
   CTA BAND — rich gradient
   =========================== */
.cta-band--gradient {
  background:
    linear-gradient(135deg,
      #c94e00 0%,
      #FF6B1A 35%,
      #ff8c00 60%,
      #e05000 100%
    ) !important;
  position: relative;
  overflow: hidden;
}
/* Subtle light sweep */
.cta-band--gradient::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.08) 50%,
    transparent 100%
  );
  transform: rotate(-15deg);
  pointer-events: none;
}
/* Dot grid overlay */
.cta-band--gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-band--gradient h2,
.cta-band--gradient p { position: relative; z-index: 1; }
.cta-band--gradient .btn-white { position: relative; z-index: 1; }

/* ===========================
   PRESS STRIP — compact centered light bar
   =========================== */
.press-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 5%;
  text-align: center;
}
.press-strip__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: block;
}
.press-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.press-strip__item {
  display: flex;
  align-items: center;
  padding: 6px 32px;
  text-decoration: none;
  transition: var(--transition);
}
.press-strip__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.press-strip__item:hover .press-strip__name { color: var(--orange); }
.press-strip__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .press-strip__item { padding: 6px 18px; }
  .press-strip__name { font-size: 0.9rem; }
}

/* ===========================
   APP SECTION — fixed grid & image
   =========================== */
.app-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}
.app-section__text { min-width: 0; }
.app-section__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-section__img img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  /* transparent PNG — no border-radius, no clipping */
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6))
          drop-shadow(0 0 40px rgba(255,107,26,0.15));
}
@media (max-width: 900px) {
  .app-section {
    grid-template-columns: 1fr;
  }
  .app-section__img { order: -1; }
  .app-section__img img { width: 260px; height: 260px; }
}

/* ===========================
   PROMISE CARDS (about.html)
   =========================== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.promise-card {
  padding: 2rem;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.promise-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,107,26,0.1);
}
.promise-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.promise-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.promise-text {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .promise-grid { grid-template-columns: 1fr; }
}

/* ===========================
   ABOUT PAGE — DARK HERO
   =========================== */
.page-header--dark {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0d1a0d 100%) !important;
  border-bottom: 2px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.page-header--dark::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-header--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header--dark h1 {
  color: #fff;
  position: relative; z-index: 1;
}
.page-header--dark h1 em { color: var(--orange); font-style: normal; }
.page-header--dark p {
  color: rgba(255,255,255,0.68);
  position: relative; z-index: 1;
}
.page-header--dark .breadcrumb {
  color: rgba(255,255,255,0.45);
  position: relative; z-index: 1;
}
.page-header--dark .breadcrumb a { color: var(--orange); }
.page-header--dark .breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===========================
   ABOUT PAGE — VALUES SECTION dark gradient
   =========================== */
.values-section {
  background: linear-gradient(145deg, #0f0f0f 0%, #1c1c1c 55%, #0d1505 100%) !important;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,107,26,0.16) 0%, transparent 68%);
  pointer-events: none;
}
/* Cards on dark bg */
.values-section .value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.values-section .value-card:hover {
  background: rgba(255,107,26,0.09);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(255,107,26,0.15);
}
.values-section .value-title { color: #fff; }
.values-section .value-text  { color: rgba(255,255,255,0.62); }
.values-section .value-icon i { color: var(--orange); }

/* Post meta — restore */
.post-meta i { font-size: 0.85rem; }

/* ===========================
   BLOG POST — DARK HERO (matches page-header--dark style)
   =========================== */
.post-hero--dark {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0d1a0d 100%) !important;
  border-bottom: 2px solid var(--orange);
  padding-top: calc(70px + 60px) !important; /* navbar + spacing */
  position: relative;
  overflow: hidden;
}
.post-hero--dark::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,26,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.post-hero--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.post-hero--dark .container { position: relative; z-index: 1; }
.post-hero--dark h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.post-hero--dark .post-subtitle { color: rgba(255,255,255,0.7); }
.post-hero--dark .post-meta { color: rgba(255,107,26,0.9); }
.post-hero--dark .post-category-tag {
  background: rgba(255,107,26,0.2);
  color: #ff9a55;
  border: 1px solid rgba(255,107,26,0.4);
  display: inline-block;
}

/* Remove breadcrumb-bar when post-hero--dark is present
   (breadcrumb is now embedded in content flow) */
.post-hero--dark + .post-hero-image { margin-top: 0; }

/* ===========================
   BLOG POST CTA — gradient design
   =========================== */
.post-cta-block--gradient {
  background: linear-gradient(
    135deg,
    #c94e00 0%,
    #FF6B1A 35%,
    #ff8c00 65%,
    #e05000 100%
  ) !important;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.post-cta-block--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.post-cta-block--gradient::after {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: rotate(-15deg);
  pointer-events: none;
}
.post-cta-block--gradient .post-cta-text,
.post-cta-block--gradient a { position: relative; z-index: 1; }
.post-cta-block--gradient .post-cta-text h3 { color: #fff; font-size: 1.6rem; }
.post-cta-block--gradient .post-cta-text p { color: rgba(255,255,255,0.88) !important; }
.post-cta-block--gradient .btn-primary,
.post-cta-block--gradient .btn {
  background: #fff !important;
  color: var(--orange) !important;
  font-weight: 800;
}
.post-cta-block--gradient .btn:hover,
.post-cta-block--gradient .btn-primary:hover { background: #f0f0f0 !important; }

/* Breadcrumb-bar: remove margin-top since posts have it built into hero */
.post-hero--dark ~ .breadcrumb-bar { display: none; }

/* Legal pages — fix container text for light theme */
.legal-container h3 { color: var(--text); }
.legal-container p,
.legal-container li { color: var(--text-soft); }

/* ===========================
   TIMELINE IMAGE (about page)
   =========================== */
.timeline-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.timeline-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Header: label+title left, aggregate rating right */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.reviews-header__left .section-title { margin-bottom: 0; }
.reviews-aggregate {
  text-align: right;
  flex-shrink: 0;
}
.reviews-aggregate__stars {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.reviews-aggregate__stars i { color: #f59e0b; font-size: 1.2rem; }
.reviews-aggregate__score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.reviews-aggregate__count {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* 3-column masonry-feel grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Single review card */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(255,107,26,0.3);
  box-shadow: 0 8px 32px rgba(255,107,26,0.08);
  transform: translateY(-3px);
}

/* Star row */
.review-stars { display: flex; gap: 3px; }
.review-stars i { color: #f59e0b; font-size: 0.9rem; }

/* Review text */
.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-soft);
  flex: 1;
}

/* Footer: avatar + name + badge */
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #e05000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.review-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.3;
}
.review-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.review-badge i { font-size: 0.8rem; }

/* Responsive */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-aggregate { text-align: left; }
  .reviews-aggregate__stars { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
