/* =============================================
   MOBILE SHIELD — Main Stylesheet
   ============================================= */

:root {
  --primary: #ff6600;
  --primary-dark: #cc5200;
  --primary-light: #fff0e6;
  --accent: #ff9500;
  --dark: #0a0f1e;
  --dark-2: #111827;
  --dark-3: #1e2a3b;
  --text: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,102,255,0.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

.btn-outline-sm {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  transition: all 0.2s;
}
.btn-outline-sm:hover { border-color: white; color: white; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 38px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 520px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }
.about .section-header h2 { color: var(--dark); }
.about .section-header p { color: var(--text-light); }

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  transition: background 0.3s, box-shadow 0.3s;
  padding: 16px 0;
}
.navbar.scrolled {
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  padding: 10px 0;
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
}
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  max-width: 180px;
  display: block;
}

/* Navbar logo */
.logo-img--nav {
  height: 72px;
  max-width: 240px;
  filter: brightness(1.25) saturate(1.3);
}

/* Footer logo */
.logo-img--footer {
  height: 72px;
  max-width: 240px;
  margin-bottom: 12px;
  filter: brightness(1.15) saturate(1.2);
}

/* Nav logo text styling */
.nav-logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-logo-mobile {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.nav-logo-shield {
  color: var(--accent);
  font-weight: 900;
  margin-left: 2px;
}

/* Footer logo text — same style */
.footer-logo-text { margin-bottom: 12px; display: inline-flex; }

/* ── About logo showcase ── */
.about-logo-showcase {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.about-logo-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 28px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255,102,0,0.12),
    0 8px 40px rgba(255,102,0,0.15),
    0 2px 12px rgba(0,0,0,0.08);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.about-logo-glow {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,102,0,0.18), rgba(255,149,0,0.10), rgba(255,102,0,0.18));
  z-index: 0;
  animation: logoGlowPulse 3s ease-in-out infinite;
}
@keyframes logoGlowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.about-logo {
  position: relative;
  z-index: 1;
  height: 140px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.nav-logo i { color: var(--accent); font-size: 26px; }
.nav-logo strong { font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-active { color: var(--accent) !important; font-weight: 700 !important; }
.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;  /* larger tap target */
  margin: -6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hamburger animates into X when open */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1f3c 40%, #0a2348 70%, #0d1b38 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
  gap: 32px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,102,0,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,102,0,0.15);
  color: var(--accent);
  border: 1px solid rgba(255,102,0,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 36px; }
.stat span { display: block; font-size: 28px; font-weight: 800; color: var(--white); }
.stat p { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }

/* ===== HERO VISUAL — CSS PHONE MOCKUP ===== */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
  min-width: 420px;
  overflow: visible;
}

/* Ambient glow rings */
.hv-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hv-ring-a {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,102,0,0.18) 0%, transparent 70%);
  animation: hvRingPulse 3s ease-in-out infinite;
}
.hv-ring-b {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(50,100,255,0.1) 0%, transparent 65%);
  animation: hvRingPulse 3s ease-in-out infinite 1s;
}
@keyframes hvRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ── Phone shell ── */
.hv-phone {
  position: relative;
  width: 210px;
  height: 430px;
  margin-right: 140px;
  /* Silver-titanium finish — clearly distinct from dark bg */
  background: linear-gradient(160deg, #3a4a5c 0%, #2a3748 35%, #1e2d40 65%, #243040 100%);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.28);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(255,102,0,0.25),
    0 0 30px rgba(255,255,255,0.08),
    inset 0 2px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.3);
  z-index: 2;
  flex-shrink: 0;
}

/* Punch-hole camera */
.hv-phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.1);
}

/* Screen */
.hv-phone-screen {
  position: absolute;
  top: 10px;
  left: 8px;
  right: 8px;
  bottom: 10px;
  background: linear-gradient(160deg, #0e1825 0%, #121e30 100%);
  border-radius: 28px;
  overflow: hidden;
}

/* Status bar — sits below punch hole */
.hv-screen-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 4px;
  margin-top: 36px;
}
.hv-sb-time {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
}
.hv-sb-icons {
  display: flex;
  gap: 4px;
  font-size: 8px;
  color: rgba(255,255,255,0.7);
}

/* Hero image area inside screen */
.hv-screen-hero-img {
  margin: 8px 10px;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(160deg, #0d2540 0%, #0a1a30 40%, #0f2a45 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Shimmer sweep across the PPF film area */
.hv-screen-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(150,210,255,0.12) 50%,
    transparent 70%);
  animation: ppfShimmer 2.8s ease-in-out infinite;
}
@keyframes ppfShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
/* Central orange shield glow */
.hv-screen-hero-img::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: radial-gradient(circle, rgba(255,102,0,0.5) 0%, rgba(255,102,0,0.1) 60%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255,102,0,0.6), 0 0 8px rgba(255,102,0,0.4);
  animation: shieldPulse 2s ease-in-out infinite;
}
@keyframes shieldPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Content bars */
.hv-screen-content {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hv-sc-bar {
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  animation: hvBarShimmer 2.5s ease-in-out infinite;
}
.hv-sc-bar:nth-child(2) { animation-delay: 0.3s; }
.hv-sc-bar:nth-child(4) { animation-delay: 0.6s; }
.hv-sc-bar:nth-child(5) { animation-delay: 0.9s; }
@keyframes hvBarShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hv-sc-row {
  display: flex;
  gap: 8px;
  margin: 2px 0;
}
.hv-sc-chip {
  height: 22px;
  border-radius: 6px;
  flex: 1;
}
.hv-chip-blue  { background: rgba(59,130,246,0.7); }
.hv-chip-green { background: rgba(16,185,129,0.7); }
.hv-chip-red   { background: rgba(239,68,68,0.7); }

/* PPF film layer — translucent overlay peeling from top-right */
.hv-ppf-film {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg,
    rgba(150,210,255,0.08) 0%,
    rgba(100,180,255,0.05) 60%,
    transparent 100%);
  border-radius: 28px;
  pointer-events: none;
}
/* Peel curl in top-right corner */
.hv-ppf-peel {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(225deg,
    rgba(200,235,255,0.9) 0%,
    rgba(150,200,255,0.5) 40%,
    transparent 70%);
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
  filter: drop-shadow(-2px 2px 4px rgba(0,0,0,0.4));
}
.hv-ppf-peel::after {
  content: '';
  position: absolute;
  top: 4px; right: 4px;
  width: 36px; height: 36px;
  background: linear-gradient(225deg,
    rgba(255,255,255,0.6) 0%,
    rgba(180,220,255,0.3) 50%,
    transparent 80%);
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
}
.hv-ppf-label {
  position: absolute;
  top: 16px;
  right: 54px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(180,220,255,0.9);
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hv-ppf-label::after {
  content: '';
  position: absolute;
  top: 5px; right: -16px;
  width: 12px; height: 1px;
  background: rgba(180,220,255,0.6);
}

/* Side buttons */
.hv-btn-vol-up, .hv-btn-vol-dn, .hv-btn-power {
  position: absolute;
  background: linear-gradient(180deg, #243040 0%, #1a2535 100%);
  border-radius: 3px;
}
.hv-btn-vol-up {
  left: -5px; top: 100px;
  width: 4px; height: 28px;
}
.hv-btn-vol-dn {
  left: -5px; top: 138px;
  width: 4px; height: 28px;
}
.hv-btn-power {
  right: -5px; top: 115px;
  width: 4px; height: 44px;
}

/* ── Floating product cards ── */
.hv-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hv-card-clear {
  top: 80px;
  right: 10px;
  animation: hvFloat 3.5s ease-in-out infinite;
}
.hv-card-pro {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-color: rgba(255,102,0,0.4);
  background: rgba(255,102,0,0.08);
}
.hv-card-matte {
  bottom: 80px;
  right: 10px;
  animation: hvFloat 3.5s ease-in-out infinite 2.4s;
}
@keyframes hvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hv-card-pro { animation: hvFloatMid 3.5s ease-in-out infinite 1.2s; }
@keyframes hvFloatMid {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

.hv-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hv-dot-blue   { background: #3b82f6; box-shadow: 0 0 8px rgba(59,130,246,0.8); }
.hv-dot-orange { background: var(--primary); box-shadow: 0 0 8px rgba(255,102,0,0.8); }
.hv-dot-teal   { background: #14b8a6; box-shadow: 0 0 8px rgba(20,184,166,0.8); }

.hv-card-text {
  display: flex;
  flex-direction: column;
}
.hv-card-text strong {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  font-family: 'Inter', sans-serif;
}
.hv-card-text span {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
}
.hv-card-price {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  margin-left: auto;
  padding-left: 10px;
}

/* ── Badges ── */
.hv-heal-badge, .hv-warranty-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 14px;
  z-index: 4;
  font-family: 'Inter', sans-serif;
}
.hv-heal-badge {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  animation: hvFloatCenter 4s ease-in-out infinite 0.5s;
}
.hv-heal-badge i { color: #10b981; font-size: 16px; }
.hv-heal-badge span { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); }

.hv-warranty-badge {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,102,0,0.15);
  border: 1px solid rgba(255,102,0,0.35);
  animation: hvFloatCenter 4s ease-in-out infinite 1.8s;
}
.hv-warranty-badge i { color: var(--accent); font-size: 18px; }
.hv-warranty-badge span { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); line-height: 1.4; }
@keyframes hvFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark-2);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}
.trust-item i { color: var(--accent); font-size: 18px; }

/* ===== ABOUT ===== */
.about { background: #f9fafb; color: var(--text); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge-box {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--primary);
  color: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,102,255,0.35);
}
.about-badge-box i { font-size: 22px; color: #ffd700; margin-bottom: 4px; }
.about-badge-box p { font-size: 16px; font-weight: 800; margin: 0; }
.about-badge-box small { font-size: 11px; opacity: 0.85; }

.about-text { padding-left: 8px; }
.about-text h2 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.about-text p { color: rgba(255,255,255,0.7); margin-bottom: 14px; font-size: 15.5px; }
.about-text strong { color: var(--white); }

.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.about-list li i { color: var(--success); }

/* Simplified About Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.feature-item i {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}
.feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* ===== PPF EXPLAINER ===== */
.ppf-explainer { background: #f9fafb; }
.ppf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ppf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.ppf-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ppf-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ppf-icon i { color: var(--primary); font-size: 22px; }
.ppf-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.ppf-card p { font-size: 14.5px; color: var(--text-light); line-height: 1.65; }

/* ===== COMPARISON TABLE ===== */
.compare { background: var(--white); }
.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th {
  padding: 16px 24px;
  text-align: center;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 2px solid var(--border);
  font-size: 14px;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text);
}
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.highlight-col { background: #f0f6ff; }
.compare-table th.highlight-col {
  background: var(--primary);
  color: white;
  border-radius: 0;
}
.compare-table th.highlight-col i { margin-right: 6px; }
.yes { color: var(--success); font-size: 18px; }
.no { color: var(--danger); font-size: 18px; }
.maybe { color: var(--warning); font-size: 18px; }

/* ===== PRODUCT VISUAL MOCKUPS - BOLD STORY-TELLING ===== */
.product-visual {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Backgrounds per variant */
.pv-clear {
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0a1f3a 100%);
}
.pv-pro {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1f3c 60%, #1a1a2e 100%);
}
.pv-matte {
  background: #0e0e12;
}

/* ===== CARD 1: SVG 3D EXPLODED CROSS-SECTION ===== */
.pv-layers-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-xsection-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== CARD 2: SVG IMPACT BURST ===== */
.pv-impact-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-impact-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== CARD 3: SVG SPLIT MATTE COMPARISON ===== */
.pv-split-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.pv-split-left,
.pv-split-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.pv-sun-svg,
.pv-crisp-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.pv-split-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 16px rgba(255,102,0,0.7);
}

.pv-divider-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 50px;
  letter-spacing: 2px;
  box-shadow: 0 4px 16px rgba(255,102,0,0.5);
  white-space: nowrap;
}

.pv-side-label {
  position: absolute;
  bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 5px 10px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 5;
}

.pv-label-before {
  left: 8px;
  background: rgba(0,0,0,0.55);
  color: #ffddaa;
}

.pv-label-after {
  right: 8px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Tag at bottom of visual */
.pv-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 10;
}
.pv-tag-clear {
  background: rgba(100,180,255,0.9);
  color: white;
  box-shadow: 0 4px 16px rgba(100,180,255,0.4);
}
.pv-tag-pro {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(255,102,0,0.5);
}
.pv-tag-matte {
  background: rgba(255,255,255,0.95);
  color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ===== PRODUCTS ===== */
.products { background: var(--dark-2); color: var(--white); }
.products .section-header h2 { color: var(--white); }
.products .section-header p { color: rgba(255,255,255,0.65); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(0,102,255,0.18);
}
.product-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.product-img { position: relative; overflow: hidden; }
.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--dark);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.featured-badge { background: var(--primary) !important; }

.product-body { padding: 24px; }
.product-body h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.product-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.product-body ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.product-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
}
.product-body ul li i { color: var(--success); font-size: 12px; }
.product-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.product-price-note {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1f3c 60%, #0a2348 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.why-card:hover { background: rgba(0,102,255,0.12); border-color: rgba(0,102,255,0.3); }
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,102,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon i { color: var(--accent); font-size: 22px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ===== WARRANTY ===== */
.warranty { background: #f9fafb; color: var(--text); }
.warranty-text h2 { color: var(--dark); }
.warranty-text p { color: var(--text-light); }
.warranty-item h4 { color: var(--dark); }
.warranty-item p { color: var(--text-light); }
.warranty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.warranty-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; color: var(--dark); }
.warranty-text p { font-size: 15.5px; margin-bottom: 32px; color: var(--text-light); }

.warranty-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.warranty-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.warranty-item i { color: var(--success); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.warranty-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.warranty-item p { font-size: 14px; margin: 0; }

.warranty-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.warranty-badge-big {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  width: 100%;
  box-shadow: 0 12px 48px rgba(0,102,255,0.3);
}
.warranty-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 6px 14px;
}
.warranty-badge-big i { font-size: 52px; margin-bottom: 16px; opacity: 0.9; }
.warranty-badge-big h3 { font-size: 42px; font-weight: 900; letter-spacing: 4px; }
.warranty-badge-big p { font-size: 16px; font-weight: 600; letter-spacing: 2px; opacity: 0.9; margin: 4px 0 12px; }
.warranty-badge-big small { font-size: 13px; opacity: 0.7; }
.warranty-notes {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.warranty-notes i { color: var(--primary); margin-right: 6px; }
.warranty-notes a { color: var(--primary); font-weight: 500; }

.warranty-contact {
  background: var(--primary-light);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.warranty-contact h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.warranty-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.warranty-contact-item:last-child { margin-bottom: 0; }
.warranty-contact-item i {
  color: var(--primary);
  font-size: 18px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: #f9fafb; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--dark); }
.testimonial-author small { font-size: 12px; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text h2 { font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.contact-text > p { font-size: 15.5px; color: var(--text-light); margin-bottom: 36px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: center; gap: 16px; }
.contact-info-item i {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 13px; color: var(--text-light); font-weight: 500; }
.contact-info-item span { font-size: 15px; color: var(--dark); font-weight: 600; }
.contact-info-item a { color: var(--primary); }

.contact-form {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  background: white;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

/* Simplified Contact Section */
.contact-simple {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.contact-item-simple {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f9fafb;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-item-simple i {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-simple strong { display: block; font-size: 13px; color: var(--text-light); font-weight: 500; }
.contact-item-simple span { font-size: 16px; color: var(--dark); font-weight: 600; }

/* Store Location Section */
.store-location { background: var(--dark-2); color: var(--white); }
.store-location .section-header h2 { color: var(--white); }
.store-location .section-header p { color: rgba(255,255,255,0.7); }
.store-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.store-info { display: flex; flex-direction: column; gap: 24px; }
.store-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.store-info-item i {
  width: 48px;
  height: 48px;
  background: rgba(255,102,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}
.store-info-item h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.store-info-item p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }
.store-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.store-map iframe { width: 100%; height: 100%; display: block; }

/* Simplified Terms Section */
.terms-simple { background: #f9fafb; color: var(--text); }
.terms-simple .section-header h2 { color: var(--dark); }
.terms-simple .section-header p { color: var(--text-light); }

.terms-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.terms-simple-item {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.terms-simple-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.terms-simple-item h3 i { color: var(--primary); }
.terms-simple-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid-3 {
  grid-template-columns: 2fr 1fr 1.2fr;
}
.footer-brand .nav-logo { font-size: 20px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 300px; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--primary); color: white; }

.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-col ul li i { color: var(--accent); }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.hours-list li { display: flex; justify-content: space-between; font-size: 13.5px; gap: 12px; }
.hours-list li span:first-child { color: rgba(255,255,255,0.55); }
.hours-list li span:last-child { color: var(--white); font-weight: 500; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom i { color: #ef4444; }

/* ===== LOCATIONS PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1f3c 60%, #0a2348 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 0;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.location-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.location-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.location-card-body { padding: 24px; }
.location-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.location-card-body h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.location-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.location-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
}
.location-detail i { color: var(--primary); flex-shrink: 0; margin-top: 2px; width: 16px; }

/* ===== TERMS PAGE ===== */
.terms-section { padding: 80px 0; }
.terms-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.terms-sidebar {
  position: sticky;
  top: 100px;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.terms-sidebar h4 { font-size: 13px; font-weight: 700; color: var(--dark); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.terms-sidebar ul { display: flex; flex-direction: column; gap: 4px; }
.terms-sidebar ul li a {
  display: block;
  font-size: 13.5px;
  color: var(--text-light);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}
.terms-sidebar ul li a:hover { color: var(--primary); background: var(--primary-light); }

.terms-content h2 { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.terms-content .last-updated { font-size: 13px; color: var(--text-light); margin-bottom: 40px; }
.terms-block { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.terms-block:last-child { border-bottom: none; }
.terms-block h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.terms-block p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 14px; }
.terms-block ul { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 14px 16px; }
.terms-block ul li { font-size: 15px; color: var(--text); line-height: 1.65; list-style: disc; }
.terms-highlight {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  margin: 16px 0;
}

/* ===== FAQ ===== */
.faq {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1f3c 60%, #0a2348 100%);
}
.faq .section-header h2 { color: var(--white); }
.faq .section-header p { color: rgba(255,255,255,0.65); }
.faq .section-tag { background: rgba(255,255,255,0.12); color: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.2s, border-color 0.2s;
}
.faq-item:hover {
  background: rgba(255,102,0,0.08);
  border-color: rgba(255,102,0,0.35);
}
.faq-item h4 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.faq-item h4 i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.faq-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }

/* ===== SCROLL REVEAL ===== */
.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.will-reveal-scale {
  transform: translateY(24px) scale(1.03);
}
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.will-reveal.will-reveal-scale.revealed {
  transform: translateY(0) scale(1.03);
}

/* ===== LOCATION PAGE — SINGLE STORE CARD ===== */
.location-card-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
}
.location-card-img-single {
  height: 100%;
  min-height: 280px;
}
.location-card-body-single {
  padding: 32px;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 2000;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-content { order: 1; }
  .hero-visual {
    order: 2;
    display: flex;
    min-width: 0;
    width: 100%;
    height: 380px;
    justify-content: center;
    align-items: center;
    overflow: visible;
    margin-top: 12px;
    position: relative;
  }
  /* Orange glow behind phone on mobile */
  .hero-visual::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,102,0,0.28) 0%, rgba(255,102,0,0.10) 50%, transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .hv-phone {
    margin-right: 0;
    width: 186px;
    height: 370px;
    border-radius: 32px;
    position: relative;
    z-index: 2;
  }
  .hv-phone-screen { border-radius: 24px; }
  .hv-phone-notch { width: 10px; height: 10px; top: 16px; border-radius: 50%; }
  .hv-btn-vol-up { top: 80px; height: 24px; }
  .hv-btn-vol-dn { top: 112px; height: 24px; }
  .hv-btn-power { top: 94px; height: 36px; }
  /* Hide floating cards/badges and PPF overlay — too cramped on mobile */
  .hv-card, .hv-heal-badge, .hv-warranty-badge, .hv-glow-ring, .hv-ppf-film { display: none; }
  /* Screen hero image — PPF shield visual */
  .hv-screen-hero-img { height: 90px; margin: 8px 10px; }
  .hv-screen-content { padding: 8px 12px; gap: 6px; }
  .hv-sc-bar { height: 7px; }
  .hv-sc-chip { height: 18px; }
  .hv-screen-statusbar { margin-top: 30px; padding: 4px 12px 2px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .ppf-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .warranty-grid { grid-template-columns: 1fr; }
  .warranty-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .terms-layout { grid-template-columns: 1fr; }
  .terms-sidebar { position: static; }
  .terms-simple-grid { grid-template-columns: 1fr; }
  .product-card.featured { transform: scale(1); }
  .store-location-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ── Tablet / large phone ── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 26px; }
  .section-header p { font-size: 15px; }

  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(10,15,30,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0;
    margin: 0;
    gap: 0;
    z-index: 10000;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    font-size: 20px;
    font-weight: 500;
    padding: 18px 24px;
    color: rgba(255,255,255,0.85);
    border-radius: 0;
    width: 100%;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
  .hamburger { display: flex; z-index: 10001; }

  /* Hero */
  .hero { padding: 100px 20px 32px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 15px; }
  .hero-badge { font-size: 12px; padding: 7px 14px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns a { width: 100%; max-width: 300px; text-align: center; padding: 14px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat span { font-size: 24px; }

  /* About */
  .about { padding-left: 0; padding-right: 0; }
  .about .container { padding: 0 20px; }
  .about p { font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .about-logo-card { padding: 14px 20px; border-radius: 16px; }
  .about-logo { height: 110px; }
  .about-logo-showcase { margin-bottom: 28px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .product-visual { height: 240px; }
  .product-card { background: #1a2235; border-color: rgba(255,255,255,0.1); }
  .product-body h3 { color: var(--white); }
  .product-body p { color: rgba(255,255,255,0.6); }
  .product-body ul li { color: rgba(255,255,255,0.75); }
  .product-price { color: var(--accent); }

  /* PPF */
  .ppf-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Warranty */
  .warranty-badge-big { padding: 32px 24px; }
  .warranty-badge-big h3 { font-size: 32px; }
  .warranty-logo { height: 48px; }
  .warranty-contact-item { flex-direction: column; gap: 4px; }

  /* Store */
  .store-location-grid { grid-template-columns: 1fr; }
  .store-map { height: 240px; }
  .store-map iframe { height: 240px; }

  /* Compare table */
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }

  /* Terms */
  .terms-simple-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Trust bar */
  .trust-container { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .trust-item { font-size: 13px; }

  /* Contact */
  .contact-form { padding: 20px; }
  .contact-item { flex-direction: row; }

  /* Locations */
  .locations-grid { grid-template-columns: 1fr; }
}

/* ── Small phones (≤480px) — the primary audience ── */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 22px; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav-logo { font-size: 18px; }
  .logo-img { height: 36px; max-width: 140px; }
  .logo-img--nav { height: 48px; max-width: 160px; }
  .logo-img--footer { height: 56px; max-width: 190px; }

  /* Hero */
  .hero { padding: 90px 16px 40px; }
  .hero h1 { font-size: 30px; line-height: 1.15; }
  .hero p { font-size: 14px; }
  .hero-btns a { max-width: 100%; font-size: 15px; }
  .stat span { font-size: 22px; }
  .stat p { font-size: 12px; }
  .hero-stats { gap: 16px; }

  /* Products */
  .product-visual { height: 220px; }
  .product-body { padding: 20px 16px; }
  .product-body h3 { font-size: 18px; color: var(--white); }
  .product-price { font-size: 24px; color: var(--accent); }
  .product-card.featured { transform: scale(1); }

  /* Warranty */
  .warranty-badge-big { padding: 24px 16px; }
  .warranty-badge-big h3 { font-size: 28px; }
  .warranty-badge-big i { font-size: 38px; }
  .warranty-grid { gap: 32px; }
  .warranty-items { gap: 16px; }

  /* Store */
  .store-map { height: 200px; }
  .store-map iframe { height: 200px; }
  .store-info-item i { width: 40px; height: 40px; font-size: 16px; }

  /* Compare table — scroll horizontally */
  .compare-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 480px; }

  /* Buttons */
  .btn-primary, .btn-secondary { padding: 13px 20px; font-size: 14px; }

  /* PPF cards */
  .ppf-card { padding: 20px 16px; }

  /* Why cards */
  .why-card { padding: 20px 16px; }

  /* Terms */
  .terms-simple-item { padding: 20px 16px; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
  .footer-brand p { font-size: 13px; }
  .footer-col h4 { font-size: 13px; }
  .footer-col ul li { font-size: 13px; }

  /* Section tags */
  .section-tag { font-size: 11px; padding: 5px 12px; }

  /* FAQ */
  .faq-item { padding: 20px 16px; }
  .faq-item h4 { font-size: 14px; }

  /* Locations single card */
  .location-card-single { grid-template-columns: 1fr; }
  .location-card-img-single { min-height: 200px; height: 200px; }
  .location-card-body-single { padding: 24px 20px; }

  /* Page hero (locations / terms pages) */
  .page-hero { padding: 100px 16px 48px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 14px; }

  /* Hero visual — tighter on small phones */
  .hero-visual { height: 300px; }

  /* Terms sidebar */
  .terms-sidebar { padding: 16px; }
  .terms-block { margin-bottom: 32px; padding-bottom: 32px; }
  .terms-block h3 { font-size: 17px; }

  /* Warranty contact */
  .warranty-contact { padding: 16px; }
  .warranty-contact-item { font-size: 14px; }

  /* About logo */
  .about-logo { height: 90px; }
  .about-logo-card { padding: 12px 16px; }
}

/* ── Landscape phones — prevent layout blowout ── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 24px 32px; }
  .hero-visual { height: 240px; }
  .hv-phone { width: 140px; height: 280px; }
}

/* ── Mobile-specific UX improvements ── */
@media (max-width: 768px) {
  /* Bigger tap targets for all links & buttons */
  .nav-links a { min-height: 48px; display: flex; align-items: center; }
  .btn-primary, .btn-outline, .btn-outline-dark { min-height: 48px; justify-content: center; }

  /* Hero buttons — full width, icon centered */
  .hero-btns a { display: flex; align-items: center; justify-content: center; width: 100%; max-width: 320px; }

  /* Footer contact — prevent email overflow */
  .footer-col ul li { word-break: break-all; flex-wrap: wrap; }
  .footer-col ul li a { word-break: break-all; }

  /* WhatsApp float — slightly smaller, pull in from edge */
  .wa-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 18px; }

  /* Warranty contact items — stack cleanly */
  .warranty-contact-item { flex-direction: row; flex-wrap: wrap; gap: 8px; justify-content: center; }

  /* Terms highlight box */
  .terms-highlight { padding: 14px 16px; font-size: 14px; }

  /* Section header spacing */
  .section-header { margin-bottom: 28px; }

  /* Store info items */
  .store-info-item p { font-size: 14px; }
  .store-info-item h4 { font-size: 15px; }

  /* FAQ grid single col (already set at 1024 but reinforce padding) */
  .faq-item { padding: 22px 20px; }

  /* Smooth scrolling momentum on iOS */
  html { -webkit-overflow-scrolling: touch; }

  /* Prevent content from touching screen edges */
  .container { padding: 0 18px; }
}
