/* ============================================
   ADAM'S ANGLE — Main Stylesheet
   Blue & Orange Personal Brand Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&family=Playfair+Display:wght@600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --orange: #FF6B1A;
  --orange-dark: #e05510;
  --orange-light: #fff3eb;
  --orange-glow: rgba(255,107,26,0.25);
  --blue: #1A3A6B;
  --blue-mid: #1E4D8C;
  --blue-light: #2563EB;
  --blue-pale: #EFF6FF;
  --navy: #0D1B2A;
  --navy-mid: #162032;
  --accent-gold: #FFB830;
  --text-dark: #0D1B2A;
  --text-mid: #3D5166;
  --text-light: #7A90A8;
  --bg-white: #ffffff;
  --bg-light: #F4F7FB;
  --bg-card: #ffffff;
  --border: #DDE6F0;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.07);
  --shadow-md: 0 8px 28px rgba(13,27,42,0.12);
  --shadow-lg: 0 20px 56px rgba(13,27,42,0.16);
  --shadow-orange: 0 8px 28px rgba(255,107,26,0.3);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --max-width: 1280px;
  --nav-height: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-light); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ============================================
   AGE GATE OVERLAY
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.age-gate-box {
  background: var(--navy-mid);
  border: 1.5px solid rgba(255,107,26,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(255,107,26,0.15);
}
.age-gate-icon { font-size: 3rem; margin-bottom: 16px; }
.age-gate-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.age-gate-title span { color: var(--orange); }
.age-gate-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; }
.age-gate-yes {
  flex: 1;
  padding: 14px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.age-gate-yes:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.age-gate-no {
  flex: 1;
  padding: 14px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.age-gate-no:hover { background: rgba(255,255,255,0.12); }
.age-gate-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin-top: 20px;
  line-height: 1.6;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,26,0.15);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); border-bottom-color: rgba(255,107,26,0.3); }
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: white;
}
.nav-logo .logo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo .logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,107,26,0.15); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-orange) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,107,26,0.2);
  padding: 16px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 500; color: rgba(255,255,255,0.75); }
.mobile-menu a:hover { background: rgba(255,107,26,0.15); color: var(--orange); }

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page-wrapper { padding-top: var(--nav-height); min-height: 100vh; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a2d45 100%);
  padding: 90px 28px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,26,0.12);
  border: 1px solid rgba(255,107,26,0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: white;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-title .orange { color: var(--orange); }
.hero-title .blue-light { color: #60A5FA; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-desc strong { color: rgba(255,255,255,0.9); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 36px; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.2rem; color: var(--orange); letter-spacing: 1px; line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* Hero Right — Adam's visual */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.adam-avatar-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}
.adam-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(var(--orange), var(--blue-light), var(--orange));
  animation: spin 6s linear infinite;
  opacity: 0.5;
}
.adam-avatar-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--navy);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.adam-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--navy);
}
.adam-quote-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 340px;
  backdrop-filter: blur(10px);
  position: relative;
}
.adam-quote-bubble::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 3rem;
  color: var(--orange);
  font-family: var(--font-heading);
  line-height: 1;
}
.adam-quote-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-style: italic;
  padding-top: 8px;
}
.adam-quote-sig {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 700;
  margin-top: 8px;
}
.floating-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.float-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================
   STORE STRIP
   ============================================ */
.stores-strip {
  background: var(--navy-mid);
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,107,26,0.15);
}
.stores-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.stores-label { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.store-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.1);
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
}
.store-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: rgba(255,107,26,0.12); border-color: rgba(255,107,26,0.3); color: white; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 28px; }
.section-alt { background: var(--bg-white); }
.section-dark { background: var(--navy); }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-dark .section-tag { background: rgba(255,107,26,0.15); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark);
  letter-spacing: 1.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-dark .section-title { color: white; }
.section-subtitle { font-size: 1rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }

/* ============================================
   ADAM'S INTRO STRIP
   ============================================ */
.adam-intro-strip {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 40px 28px;
}
.adam-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.adam-intro-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
  flex-shrink: 0;
}
.adam-intro-text { flex: 1; min-width: 240px; }
.adam-intro-text h3 { font-family: var(--font-display); font-size: 1.5rem; color: white; letter-spacing: 1px; margin-bottom: 4px; }
.adam-intro-text p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.adam-intro-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  color: white;
}
.social-icon-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.category-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.category-card:hover { border-color: var(--orange); background: var(--orange-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-icon { font-size: 2rem; margin-bottom: 10px; }
.category-name { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
.category-count { font-size: 0.72rem; color: var(--text-light); margin-top: 4px; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card-image-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}
.product-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.3px;
}
.badge-new { background: #10B981; color: white; }
.badge-hot { background: var(--orange); color: white; }
.badge-sale { background: var(--accent-gold); color: var(--text-dark); }
.badge-top { background: var(--blue); color: white; }
.badge-adam { background: linear-gradient(90deg, var(--orange), var(--blue-light)); color: white; }
.product-card-body { padding: 20px; }
.product-store-tag { display: inline-block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.product-card-title { font-weight: 700; font-size: 0.98rem; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.product-card-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--accent-gold); font-size: 0.85rem; letter-spacing: 1px; }
.rating-count { font-size: 0.75rem; color: var(--text-light); }
.adam-says {
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 8px 12px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-style: italic;
}
.adam-says strong { color: var(--orange); font-style: normal; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.product-price { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); }
.product-price .original { font-size: 0.8rem; color: var(--text-light); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.btn-shop {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700;
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-shop:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ============================================
   REVIEW CARDS
   ============================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.review-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.review-card::before {
  content: '"';
  position: absolute; top: 12px; right: 20px;
  font-size: 5rem; color: var(--orange-light);
  font-family: var(--font-heading); line-height: 1;
}
.review-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.review-product-img {
  width: 58px; height: 58px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
  border: 1px solid var(--border);
}
.review-product-info h4 { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
.review-verdict {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700;
}
.verdict-recommended { background: #d1fae5; color: #065f46; }
.verdict-good { background: #dbeafe; color: #1e40af; }
.verdict-mixed { background: #fef3c7; color: #92400e; }
.review-stars { color: var(--accent-gold); font-size: 0.88rem; margin-top: 4px; }
.review-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.review-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.pros { background: #f0fdf4; padding: 12px; border-radius: var(--radius-sm); }
.cons { background: #fff5f5; padding: 12px; border-radius: var(--radius-sm); }
.pros-title { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: #16a34a; margin-bottom: 6px; }
.cons-title { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: #dc2626; margin-bottom: 6px; }
.pros li, .cons li { font-size: 0.78rem; color: var(--text-mid); padding: 2px 0 2px 14px; position: relative; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.review-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.review-store-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--orange); transition: var(--transition); }
.review-store-link:hover { gap: 10px; }
.review-date { font-size: 0.72rem; color: var(--text-light); }

/* ============================================
   LINKS PAGE
   ============================================ */
.links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.link-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition); cursor: pointer;
}
.link-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.link-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.link-info h4 { font-weight: 700; font-size: 0.93rem; color: var(--text-dark); margin-bottom: 4px; }
.link-info p { font-size: 0.78rem; color: var(--text-mid); line-height: 1.5; }
.link-arrow { margin-left: auto; color: var(--text-light); font-size: 1.1rem; transition: var(--transition); flex-shrink: 0; }
.link-card:hover .link-arrow { color: var(--orange); transform: translateX(4px); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,26,0.08); }
.faq-question {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: 0.93rem;
  color: var(--text-dark); transition: var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: var(--transition); color: var(--orange);
}
.faq-item.open .faq-icon { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.8;
  border-top: 1px solid var(--border); padding-top: 14px;
}

/* ============================================
   FORM
   ============================================ */
.question-form-wrapper {
  max-width: 640px; margin: 0 auto;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--text-dark); background: var(--bg-light);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange); background: white;
  box-shadow: 0 0 0 3px rgba(255,107,26,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--orange); color: white;
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,26,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); color: white; letter-spacing: 2px; margin-bottom: 12px; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,26,0.15); border: 1px solid rgba(255,107,26,0.3);
  color: var(--orange); padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px;
  border: 1.5px solid var(--border); background: white;
  font-family: var(--font-body); font-size: 0.83rem; font-weight: 600;
  color: var(--text-mid); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: white; }
.filter-search {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid var(--border);
  border-radius: 100px; padding: 8px 16px; transition: var(--transition);
}
.filter-search:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,26,0.1); }
.filter-search input { border: none; outline: none; font-family: var(--font-body); font-size: 0.83rem; color: var(--text-dark); background: transparent; width: 180px; }
.filter-search span { color: var(--text-light); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c3a 100%);
  padding: 60px 28px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
}
.cta-banner-title { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem); color: white; letter-spacing: 2px; margin-bottom: 10px; position: relative; z-index: 1; }
.cta-banner-sub { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; position: relative; z-index: 1; }
.cta-email-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; position: relative; z-index: 1; }
.cta-email-form input { flex: 1; padding: 14px 20px; border-radius: var(--radius-sm); border: none; font-family: var(--font-body); font-size: 0.9rem; outline: none; }
.cta-email-form button { padding: 14px 24px; background: var(--navy); color: white; border: none; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.cta-email-form button:hover { background: #0a1520; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 60px 28px 28px; }
.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { color: white; font-weight: 800; font-size: 0.85rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition); cursor: pointer;
}
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }

/* ============================================
   TOAST & BACK TO TOP
   ============================================ */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--navy); color: white;
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 0.86rem; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 9999;
  transform: translateY(100px); opacity: 0; transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
  border-left: 3px solid var(--orange);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: #10B981; }
.back-to-top {
  position: fixed; bottom: 24px; left: 24px;
  width: 44px; height: 44px;
  background: var(--orange); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-orange);
  transition: var(--transition); opacity: 0; transform: translateY(20px);
  z-index: 999; border: none; font-size: 1rem;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ============================================
   TERMS PAGE
   ============================================ */
.terms-content {
  max-width: 820px; margin: 0 auto;
  background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 48px;
}
.terms-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 1px;
  color: var(--text-dark); margin: 32px 0 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--orange-light);
}
.terms-content h2:first-child { margin-top: 0; }
.terms-content p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.terms-content ul { margin: 10px 0 14px 20px; }
.terms-content ul li { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.terms-content a { color: var(--orange); font-weight: 600; }
.terms-content a:hover { text-decoration: underline; }
.terms-warning-box {
  background: #fff3eb;
  border: 2px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.terms-warning-box .warn-icon { font-size: 1.6rem; flex-shrink: 0; }
.terms-warning-box p { margin: 0; font-size: 0.88rem; color: #7c3a00; line-height: 1.7; }
.terms-warning-box strong { color: #5a2800; }
.terms-last-updated { font-size: 0.78rem; color: var(--text-light); margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--border); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-email-form { flex-direction: column; }
  .filter-search { margin-left: 0; width: 100%; }
  .filter-search input { width: 100%; }
  .review-pros-cons { grid-template-columns: 1fr; }
  .question-form-wrapper { padding: 24px; }
  .terms-content { padding: 24px; }
  .adam-intro-inner { flex-direction: column; text-align: center; }
  .adam-intro-socials { justify-content: center; }
}
@media (max-width: 480px) {
  .section { padding: 56px 16px; }
  .hero { padding: 60px 16px 56px; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.animate-float { animation: float 4s ease-in-out infinite; }