/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #1B2A52;
  --navy-dark: #0f1a35;
  --navy-mid: #243463;
  --gold: #C9972A;
  --gold-light: #E8B84B;
  --gold-dark: #a07820;
  --green: #3aad6e;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef0f5;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6B7280;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 26, 53, 0.97);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(15, 26, 53, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo span {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-logo span em {
  color: var(--gold);
  font-style: normal;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 151, 42, 0.4);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201, 151, 42, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 151, 42, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== SECTION LAYOUT ===== */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
}
.section-title {
  color: var(--navy-dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-tag { margin: 0 auto 1rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a6e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,151,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(58,173,110,0.08) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 151, 42, 0.15);
  border: 1px solid rgba(201, 151, 42, 0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--gold-light); }
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {}
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--gold-light);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.1) brightness(1.05);
}
.chart-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  position: relative;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.chart-header h4 { color: var(--white); font-size: 1rem; }
.chart-badge {
  background: rgba(58,173,110,0.2);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 1rem;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  position: relative;
  animation: growBar 1.5s ease forwards;
  transform-origin: bottom;
}
@keyframes growBar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
.bar-red { background: rgba(239,68,68,0.7); }
.bar-green { background: linear-gradient(180deg, var(--green), rgba(58,173,110,0.5)); }
.chart-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.metric {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.8rem;
}
.metric-label { color: rgba(255,255,255,0.5); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; }
.metric-value { color: var(--gold-light); font-weight: 700; font-size: 1.1rem; font-family: var(--font-head); }
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card-1 { top: -20px; right: -30px; animation-delay: 0s; }
.float-card-2 { bottom: -10px; left: -30px; animation-delay: 2s; }
.float-icon { font-size: 1.3rem; }
.float-text { line-height: 1.2; }
.float-text strong { display: block; font-size: 0.82rem; color: var(--text-dark); }
.float-text span { font-size: 0.72rem; color: var(--text-light); }

/* ===== WHY SECTION ===== */
.why-section { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,151,42,0.15), rgba(201,151,42,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(201,151,42,0.2);
}
.feature-card h3 { color: var(--navy-dark); margin-bottom: 0.7rem; font-size: 1.1rem; }
.feature-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.65; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.4);
  padding: 2rem;
}
.about-placeholder .icon { font-size: 4rem; margin-bottom: 1rem; }
.about-placeholder p { font-size: 0.9rem; }
.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}
.about-badge-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-head);
  line-height: 1;
}
.about-badge-card p { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.about-content .section-subtitle { max-width: 100%; margin-bottom: 1.5rem; }
.about-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.about-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ===== PRODUCTS PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,151,42,0.15) 0%, transparent 60%);
}
.page-hero .section-tag { justify-content: center; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; position: relative; }
.page-hero h1 span { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; position: relative; }

/* Products Grid */
.products-section { background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}
.product-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.product-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,151,42,0.2) 0%, transparent 65%);
}
.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.product-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.product-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  position: relative;
}
.product-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.product-price {
  text-align: center;
  padding: 1.2rem;
  background: var(--off-white);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.product-price .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--font-head);
  line-height: 1;
}
.product-price .period { font-size: 0.82rem; color: var(--text-light); margin-top: 0.2rem; }
.product-features { flex: 1; margin-bottom: 1.8rem; }
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 1px;
}
.product-body .btn { width: 100%; justify-content: center; }

/* What's included section */
.included-section { background: var(--navy-dark); }
.included-section .section-title { color: var(--white); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.included-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.included-item:hover {
  background: rgba(201,151,42,0.1);
  border-color: rgba(201,151,42,0.3);
  transform: translateY(-4px);
}
.included-item .icon { font-size: 2rem; margin-bottom: 0.8rem; }
.included-item h4 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 0.5rem; }
.included-item p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ===== REVIEWS PAGE ===== */
.reviews-summary {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 2rem;
}
.summary-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}
.big-rating { text-align: center; }
.rating-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: var(--font-head);
  line-height: 1;
}
.stars-row { display: flex; gap: 4px; justify-content: center; margin: 0.5rem 0; }
.star { color: var(--gold); font-size: 1.3rem; }
.rating-count { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.rating-bars { display: flex; flex-direction: column; gap: 0.7rem; }
.rating-row { display: flex; align-items: center; gap: 1rem; }
.rating-row span:first-child { color: rgba(255,255,255,0.7); font-size: 0.85rem; width: 40px; text-align: right; }
.rating-bar-bg {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
}
.rating-row span:last-child { color: rgba(255,255,255,0.5); font-size: 0.82rem; width: 30px; }
.reviews-grid-section { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card.featured-review {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,151,42,0.04), var(--white));
}
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.reviewer-info { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; color: var(--navy-dark); font-size: 0.92rem; }
.reviewer-tag { font-size: 0.75rem; color: var(--text-light); }
.review-stars { display: flex; gap: 2px; }
.review-stars .star { font-size: 0.9rem; }
.review-text { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.review-text::before { content: '"'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 2px; }
.review-date { font-size: 0.75rem; color: var(--text-light); }
.review-result {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(58,173,110,0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}
.review-result::before { content: '📈'; font-size: 0.7rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 { color: var(--navy-dark); font-size: 1.4rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}
.contact-method:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-method-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(201,151,42,0.15), rgba(201,151,42,0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method-text strong { display: block; color: var(--navy-dark); font-size: 0.88rem; }
.contact-method-text span { color: var(--text-light); font-size: 0.82rem; }
.social-links-section { margin-top: 2rem; }
.social-links-section h4 { color: var(--navy-dark); margin-bottom: 1rem; font-size: 1rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-link:hover { background: var(--gold); transform: translateY(-3px); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}
.contact-form-wrap h3 { color: var(--navy-dark); margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { color: var(--navy-dark); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-light); font-size: 0.9rem; }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 780px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q span { font-weight: 600; color: var(--navy-dark); font-size: 0.95rem; }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.3rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,151,42,0.15) 0%, transparent 60%);
}
.cta-banner h2 { color: var(--white); position: relative; margin-bottom: 1rem; }
.cta-banner h2 span { color: var(--gold-light); }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2.5rem; position: relative; }
.cta-banner .btn { position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201,151,42,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.65; max-width: 260px; }
.footer-col h5 {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-disclaimer {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.6;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid rgba(201,151,42,0.2); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.2rem; }
}
@media (max-width: 480px) {
  .included-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
