/* ============================================================
   VOZONIX — Global Stylesheet (EN / US Market Edition)
   ============================================================ */

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

:root {
  --brand-blue:   #3D52A0;
  --brand-blue2:  #5B73C7;
  --brand-purple: #7C3AED;
  --brand-purp2:  #A855F7;
  --brand-green:  #06C167;
  --brand-green2: #34D399;
  --brand-lime:   #A8E063;
  --accent:       #FF6B35;
  --accent2:      #FFD93D;
  --dark:         #0D0F1A;
  --dark2:        #161829;
  --gray1:        #F7F8FF;
  --gray2:        #ECEFFE;
  --gray3:        #C8CCE8;
  --text:         #0D0F1A;
  --text2:        #5C6180;
  --white:        #FFFFFF;
  --amazon:       #FF9900;
  --amazon-dark:  #E68800;
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-xl:  48px;
  --sh-sm: 0 2px 12px rgba(61,82,160,.08);
  --sh-md: 0 8px 32px rgba(61,82,160,.13);
  --sh-lg: 0 20px 60px rgba(61,82,160,.18);
  --tr: all .28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray1); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 3px; }

/* ─── LAYOUT ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--brand-blue);
  background: var(--gray2); border: 1.5px solid var(--gray3);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 14px;
}
.h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; }
.h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; }
.h3 { font-size: 20px; font-weight: 700; line-height: 1.3; }
.lead { font-size: 17px; color: var(--text2); line-height: 1.75; }
.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; max-width: 560px; }

.grad-text {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.green-text {
  background: linear-gradient(135deg, var(--brand-green), #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 99px; font-size: 15px; font-weight: 700;
  border: none; transition: var(--tr); white-space: nowrap;
}
.btn-amazon {
  background: linear-gradient(135deg, #FF9900, #E68800);
  color: var(--dark); font-size: 16px; font-weight: 800;
  padding: 16px 36px;
  box-shadow: 0 8px 24px rgba(255,153,0,.35);
}
.btn-amazon:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(255,153,0,.45); filter: brightness(1.05); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(124,58,237,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124,58,237,.40); }
.btn-green {
  background: linear-gradient(135deg, var(--brand-green), #059669);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(6,193,103,.30);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6,193,103,.42); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.btn-outline-dark {
  background: transparent; color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}
.btn-outline-dark:hover { background: var(--brand-blue); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ─── AMAZON PILL ─── */
.amazon-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #FF9900, #FFB340);
  color: #0D0F1A; font-weight: 800; font-size: 14px;
  padding: 8px 18px; border-radius: 99px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61,82,160,.06);
  transition: var(--tr);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(61,82,160,.10); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

/* ─── ANIMATED LOGO ─── */
.nav-logo {
  position: relative; display: inline-flex; align-items: center;
  text-decoration: none;
}
.logo-glow {
  position: absolute; inset: -8px -12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(61,82,160,.0), rgba(124,58,237,.0), rgba(6,193,103,.0));
  animation: logo-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logo-pulse {
  0%,100% {
    background: linear-gradient(135deg, rgba(61,82,160,.08), rgba(124,58,237,.06), rgba(6,193,103,.04));
    box-shadow: 0 0 0 0 rgba(61,82,160,0);
  }
  50% {
    background: linear-gradient(135deg, rgba(61,82,160,.18), rgba(124,58,237,.14), rgba(6,193,103,.10));
    box-shadow: 0 0 24px 4px rgba(61,82,160,.14), 0 0 48px 8px rgba(124,58,237,.08);
  }
}
.logo-shimmer {
  position: absolute; inset: -4px;
  border-radius: 12px; overflow: hidden; pointer-events: none;
}
.logo-shimmer::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100%);
  animation: logo-shimmer 3.5s ease-in-out infinite;
}
@keyframes logo-shimmer {
  0% { left: -100%; }
  50%,100% { left: 150%; }
}
.logo-svg { width: 136px; height: auto; position: relative; z-index: 1; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text2);
  padding: 8px 14px; border-radius: 10px; transition: var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-blue); background: var(--gray2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: var(--gray2); border: none; border-radius: 10px;
  padding: 8px 10px; cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--brand-blue); border-radius: 2px; transition: var(--tr); }

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  background: linear-gradient(145deg, #0A0C18 0%, #111325 55%, #0E1020 100%);
  display: flex; align-items: center;
  padding-top: 68px; overflow: hidden; position: relative;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; opacity: .22;
}
.hero-orb-1 { width: 700px; height: 700px; background: radial-gradient(var(--brand-purple), transparent); top: -200px; right: -150px; }
.hero-orb-2 { width: 500px; height: 500px; background: radial-gradient(var(--brand-blue), transparent); bottom: -150px; left: -100px; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(var(--brand-green), transparent); top: 40%; left: 40%; opacity: .12; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168,224,99,.15); color: var(--brand-lime);
  border: 1.5px solid rgba(168,224,99,.25);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 99px; margin-bottom: 20px;
}
.hero-title { color: var(--white); margin-bottom: 22px; }
.hero-title .line-green {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-lime));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .line-purp {
  background: linear-gradient(135deg, var(--brand-purp2), var(--brand-blue2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 16px; color: rgba(255,255,255,.60); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 0; }
.hstat {
  padding: 16px 20px; border-right: 1px solid rgba(255,255,255,.10);
}
.hstat:last-child { border-right: none; }
.hstat-num { font-size: 26px; font-weight: 900; color: var(--white); display: block; line-height: 1; }
.hstat-lbl { font-size: 11px; color: rgba(255,255,255,.42); font-weight: 500; margin-top: 3px; }

/* ─── HERO PRODUCT VISUAL ─── */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-product-img-wrap {
  width: 460px; height: 460px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.07);
}
.hero-ring-1 { width: 460px; height: 460px; border-top-color: rgba(124,58,237,.35); animation: spin1 22s linear infinite; }
.hero-ring-2 { width: 360px; height: 360px; border-right-color: rgba(6,193,103,.35); animation: spin2 16s linear infinite; }
@keyframes spin1 { to { transform: rotate(360deg); } }
@keyframes spin2 { to { transform: rotate(-360deg); } }

.hero-product-img {
  width: 340px; height: 340px; object-fit: contain;
  animation: float 5s ease-in-out infinite;
  position: relative; z-index: 2;
  /* Fallback if image missing */
  background: linear-gradient(135deg, rgba(168,224,99,.08), rgba(124,58,237,.08), rgba(61,82,160,.08));
  border-radius: 50%;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* floating badges */
.hero-float-badge {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,.10); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 16px;
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
}
.hfb-1 { top: 48px; right: -24px; }
.hfb-2 { bottom: 72px; left: -32px; }
.hfb-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.hfb-label { display: flex; flex-direction: column; }
.hfb-title { font-size: 13px; font-weight: 700; color: var(--white); }
.hfb-sub { font-size: 11px; color: rgba(255,255,255,.50); }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  padding: 22px 0; overflow: hidden;
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 13px; font-weight: 600; white-space: nowrap; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); }

/* ─── FEATURE CARDS ─── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.feat-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 32px 28px; border: 1px solid rgba(61,82,160,.07);
  box-shadow: var(--sh-sm); transition: var(--tr); position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 3px 3px 0 0;
}
.feat-card-blue::after { background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue2)); }
.feat-card-purple::after { background: linear-gradient(90deg, var(--brand-purple), var(--brand-purp2)); }
.feat-card-green::after { background: linear-gradient(90deg, var(--brand-green), var(--brand-green2)); }
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
.feat-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 22px; }
.feat-icon-blue  { background: rgba(61,82,160,.09); }
.feat-icon-purple{ background: rgba(124,58,237,.09); }
.feat-icon-green { background: rgba(6,193,103,.09); }
.feat-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ─── HOW IT WORKS ─── */
.hiw-section { background: var(--dark); }
.hiw-section .h2, .hiw-section .eyebrow { color: var(--white); }
.hiw-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  margin-top: 52px; position: relative;
}
.hiw-grid::before {
  content: ''; position: absolute; top: 44px; left: 8%; width: 84%; height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-green));
  opacity: .25; z-index: 0;
}
.hiw-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: 32px 20px; text-align: center;
  transition: var(--tr); position: relative; z-index: 1;
}
.hiw-card:hover { background: rgba(255,255,255,.09); transform: translateY(-6px); }
.hiw-num {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; color: var(--white);
}
.hiw-num-1 { background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue2)); }
.hiw-num-2 { background: linear-gradient(135deg, var(--brand-purple), var(--brand-purp2)); }
.hiw-num-3 { background: linear-gradient(135deg, var(--brand-green), var(--brand-green2)); }
.hiw-num-4 { background: linear-gradient(135deg, #FF6B35, #FF9F7A); }
.hiw-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.hiw-desc { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.7; }

/* ─── COMPARISON TABLE ─── */
.compare-section { background: var(--gray1); }
.compare-table-wrap { overflow-x: auto; margin-top: 48px; border-radius: var(--r-md); box-shadow: var(--sh-md); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th {
  padding: 16px 20px; font-size: 13px; font-weight: 700; text-align: center;
}
.compare-table th:first-child { text-align: left; background: var(--dark2); color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.th-vozonix { background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple)); color: var(--white); }
.th-other { background: #2A2D3E; color: rgba(255,255,255,.55); }
.compare-table td {
  padding: 14px 20px; font-size: 14px; text-align: center;
  border-bottom: 1px solid rgba(61,82,160,.08); background: var(--white);
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text2); background: var(--gray1); }
.compare-table tr:last-child td { border-bottom: none; }
.ct-yes { color: var(--brand-green); font-weight: 700; font-size: 18px; }
.ct-no  { color: #DC2626; font-weight: 700; font-size: 18px; }
.ct-part { color: var(--accent2); font-weight: 600; font-size: 14px; }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.testi-card {
  background: var(--white); border-radius: var(--r-md); padding: 30px 26px;
  border: 1px solid rgba(61,82,160,.07); box-shadow: var(--sh-sm); transition: var(--tr);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.testi-stars { font-size: 16px; margin-bottom: 14px; letter-spacing: 1px; }
.testi-text { font-size: 15px; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-loc { font-size: 12px; color: var(--text2); }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid rgba(61,82,160,.09);
  border-radius: var(--r-sm); box-shadow: var(--sh-sm); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; display: flex;
  align-items: center; justify-content: space-between; padding: 20px 24px;
  font-size: 15px; font-weight: 700; color: var(--text); text-align: left; cursor: pointer;
  transition: var(--tr);
}
.faq-q:hover { color: var(--brand-blue); }
.faq-icon { font-size: 20px; color: var(--brand-blue); transition: var(--tr); flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease;
  font-size: 14px; color: var(--text2); line-height: 1.75; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── CTA BANNER ─── */
.cta-section {
  background: linear-gradient(135deg, #0D0F1A 0%, var(--brand-blue) 40%, var(--brand-purple) 100%);
  color: var(--white); padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent);
  top: -200px; left: 50%; transform: translateX(-50%); border-radius: 50%;
}
.cta-title { font-size: clamp(28px,4.5vw,50px); font-weight: 900; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 40px; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── PRODUCT PAGE ─── */
.product-hero {
  background: var(--gray1); padding-top: 68px; min-height: 90vh;
  display: flex; align-items: center;
}
.product-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding: 60px 0; }
.product-imgs {
  position: sticky; top: 90px;
}
.product-main-img {
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, #EDF5FF, #F0EEFF, #EDFFF5);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg); margin-bottom: 12px;
}
.product-main-img img { width: 90%; height: 90%; object-fit: contain; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb {
  flex: 1; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden;
  background: var(--gray2); cursor: pointer; border: 2px solid transparent;
  transition: var(--tr); display: flex; align-items: center; justify-content: center;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--brand-blue); }
.product-thumb img { width: 80%; height: 80%; object-fit: contain; }

.product-info-col { padding-top: 8px; }
.product-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.pbadge {
  padding: 4px 12px; border-radius: 99px; font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
}
.pbadge-green { background: rgba(6,193,103,.12); color: #059669; }
.pbadge-blue  { background: rgba(61,82,160,.10); color: var(--brand-blue); }
.pbadge-purp  { background: rgba(124,58,237,.10); color: var(--brand-purple); }
.product-title { font-size: clamp(22px,3vw,32px); font-weight: 900; margin: 12px 0 8px; line-height: 1.2; }
.product-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.stars { color: #F59E0B; font-size: 16px; }
.review-count { font-size: 13px; color: var(--text2); }

.price-box { background: var(--white); border-radius: var(--r-md); padding: 22px 24px; margin-bottom: 24px; border: 2px solid rgba(61,82,160,.1); box-shadow: var(--sh-sm); }
.price-main { font-size: 42px; font-weight: 900; color: var(--text); }
.price-old { font-size: 18px; color: var(--text2); text-decoration: line-through; }
.price-discount {
  display: inline-block; background: linear-gradient(135deg, var(--brand-green), #059669);
  color: var(--white); font-size: 12px; font-weight: 800; padding: 3px 10px;
  border-radius: 99px; letter-spacing: .5px;
}
.price-note { font-size: 12px; color: var(--text2); margin-top: 6px; }

.product-features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pfl-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.pfl-icon { flex-shrink: 0; font-size: 18px; }
.pfl-text strong { display: block; font-weight: 700; font-size: 14px; margin-bottom: 1px; }
.pfl-text span { color: var(--text2); font-size: 13px; }

.buy-box { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.product-tabs { margin-top: 56px; }
.ptabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--gray2); margin-bottom: 32px; }
.ptab-btn {
  padding: 14px 24px; font-size: 14px; font-weight: 600; color: var(--text2);
  background: none; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: var(--tr); cursor: pointer;
}
.ptab-btn:hover { color: var(--brand-blue); }
.ptab-btn.active { color: var(--brand-blue); border-bottom-color: var(--brand-blue); }
.ptab-content { display: none; }
.ptab-content.active { display: block; }

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--gray2); padding: 64px 0; }
.newsletter-inner { display: flex; align-items: center; gap: 64px; }
.newsletter-content { flex: 1; }
.newsletter-form { flex: 1; display: flex; gap: 12px; }
.nl-input {
  flex: 1; padding: 14px 20px; border-radius: 99px;
  border: 2px solid var(--gray3); font-family: inherit; font-size: 14px;
  outline: none; transition: var(--tr); background: var(--white);
}
.nl-input:focus { border-color: var(--brand-blue); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 140px 0 72px; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.2), transparent);
  top: -150px; right: -100px; border-radius: 50%; pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.40); margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.60); transition: var(--tr); }
.breadcrumb a:hover { color: var(--white); }
.page-hero-title { font-size: clamp(30px,5vw,52px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.55); max-width: 500px; margin: 0 auto; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.blog-card {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid rgba(61,82,160,.07); box-shadow: var(--sh-sm); transition: var(--tr);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.blog-card-img {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 60px; overflow: hidden;
}
.bc-img-1 { background: linear-gradient(135deg, #EDE9FE, #DBEAFE); }
.bc-img-2 { background: linear-gradient(135deg, #D1FAE5, #CFFAFE); }
.bc-img-3 { background: linear-gradient(135deg, #FEE2E2, #FEF3C7); }
.bc-img-4 { background: linear-gradient(135deg, #DBEAFE, #E0E7FF); }
.bc-img-5 { background: linear-gradient(135deg, #FDF2F8, #EDE9FE); }
.bc-img-6 { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); }
.bc-img-7 { background: linear-gradient(135deg, #FFF7ED, #FEF3C7); }
.bc-img-8 { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.bc-img-9 { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.bc-img-10{ background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-cat {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 99px; margin-bottom: 10px;
}
.cat-blue   { background: rgba(61,82,160,.09);  color: var(--brand-blue); }
.cat-green  { background: rgba(6,193,103,.09);  color: #059669; }
.cat-purple { background: rgba(124,58,237,.09); color: var(--brand-purple); }
.cat-orange { background: rgba(255,107,53,.09); color: var(--accent); }
.blog-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; transition: var(--tr); }
.blog-card:hover .blog-title { color: var(--brand-blue); }
.blog-excerpt { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text2); }
.blog-read-more { color: var(--brand-blue); font-weight: 600; transition: var(--tr); }
.blog-read-more:hover { color: var(--brand-purple); }

/* ─── BLOG POST ─── */
.blog-post { max-width: 760px; margin: 0 auto; padding: 60px 20px; }
.post-title { font-size: clamp(26px,4vw,42px); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.post-meta { font-size: 13px; color: var(--text2); margin-bottom: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.post-body h2 { font-size: 24px; font-weight: 800; margin: 40px 0 16px; color: var(--text); }
.post-body h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.post-body p { margin-bottom: 18px; }
.post-body ul { margin: 0 0 18px 24px; list-style: disc; }
.post-body ul li { margin-bottom: 8px; }
.post-body .highlight-box {
  background: var(--gray2); border-left: 4px solid var(--brand-blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 20px 24px; margin: 24px 0;
}
.post-cta {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  border-radius: var(--r-md); padding: 32px; text-align: center; margin: 40px 0; color: var(--white);
}
.post-cta h3 { color: var(--white); margin-bottom: 12px; }
.post-cta p { color: rgba(255,255,255,.75); margin-bottom: 20px; font-size: 14px; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual-placeholder {
  aspect-ratio: 4/3; border-radius: var(--r-lg);
  background: linear-gradient(135deg, #EDE9FE, #DBEAFE, #D1FAE5);
  display: flex; align-items: center; justify-content: center; font-size: 80px;
  position: relative;
}
.about-stat-card {
  position: absolute; background: var(--white); border-radius: var(--r-md);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-lg);
}
.asc-1 { bottom: -20px; right: -20px; }
.asc-2 { top: -20px; left: -20px; }
.asc-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.asc-num { font-size: 22px; font-weight: 900; display: block; line-height: 1; }
.asc-lbl { font-size: 11px; color: var(--text2); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: var(--white); border-radius: var(--r-md); padding: 22px;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid rgba(61,82,160,.07); box-shadow: var(--sh-sm); transition: var(--tr);
}
.contact-info-card:hover { transform: translateX(6px); }
.cic-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cic-icon-blue   { background: rgba(61,82,160,.10); }
.cic-icon-purple { background: rgba(124,58,237,.10); }
.cic-icon-green  { background: rgba(6,193,103,.10); }
.cic-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text2); }
.cic-value { font-size: 14px; font-weight: 600; color: var(--text); }
.contact-form-card { background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh-md); border: 1px solid rgba(61,82,160,.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-control {
  padding: 13px 18px; border-radius: 12px; border: 2px solid var(--gray3);
  font-family: inherit; font-size: 14px; outline: none; transition: var(--tr); background: var(--gray1);
}
.form-control:focus { border-color: var(--brand-blue); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ─── FOOTER ─── */
footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; line-height: 1.75; margin: 14px 0 22px; color: rgba(255,255,255,.40); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,.07); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--tr);
}
.social-btn:hover { background: var(--brand-blue); transform: translateY(-2px); }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.40); transition: var(--tr); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: var(--tr); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.aos { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .hiw-grid { grid-template-columns: repeat(2,1fr); }
  .hiw-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { gap: 40px; }
  .product-hero-inner { gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-product-img-wrap { width: 280px; height: 280px; }
  .hero-ring-1 { width: 280px; height: 280px; }
  .hero-ring-2 { width: 220px; height: 220px; }
  .hero-product-img { width: 200px; height: 200px; }
  .features-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-imgs { position: static; }
  .newsletter-inner { flex-direction: column; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 18px; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hiw-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hfb-1, .hfb-2 { display: none; }
}
