/* ============================================
   GET QUICK SCAN — Main Stylesheet
   Design: Modern Blue/Teal Tech Aesthetic
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1D3A;
  --navy-light: #132848;
  --cyan: #00C2FF;
  --cyan-dark: #009FD4;
  --teal: #00A896;
  --green: #00D68F;
  --white: #FFFFFF;
  --off-white: #F5F9FF;
  --gray-light: #EAF1FB;
  --gray: #8FA3BF;
  --gray-dark: #4A6080;
  --text: #0B1D3A;
  --text-light: #4A6080;
  --border: #D4E3F5;
  --shadow: 0 4px 24px rgba(11,29,58,0.10);
  --shadow-lg: 0 12px 48px rgba(11,29,58,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
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); }
p { color: var(--text-light); line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* --- Utility --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,194,255,0.10); color: var(--cyan-dark); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; border: 1px solid rgba(0,194,255,0.25); }
.section-intro { max-width: 640px; margin: 0 auto 56px; }
.section-intro p { font-size: 1.05rem; margin-top: 12px; }
.highlight { color: var(--cyan); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,194,255,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; border-radius: 10px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,29,58,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 1.3rem; font-weight: 800; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--cyan), var(--teal)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.logo span.accent { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; padding: 8px 16px; border-radius: 8px; }
.nav-links a:hover, .nav-links a.active { background: rgba(0,194,255,0.12); color: var(--cyan); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.header-phone a { color: var(--cyan); font-weight: 700; font-size: 0.95rem; }
.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: var(--transition); }
.mobile-nav { display: none; background: var(--navy-light); border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 24px; color: rgba(255,255,255,0.85); font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:hover { color: var(--cyan); background: rgba(0,194,255,0.08); }
.mobile-nav .mobile-phone { padding: 16px 24px; }
.mobile-nav .mobile-phone a { display: inline-flex; color: var(--cyan); font-weight: 700; border-bottom: none; padding: 0; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2B55 50%, #0A3D6B 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -60%; right: -20%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,194,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -40%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,168,150,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,214,143,0.15); color: var(--green); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; border: 1px solid rgba(0,214,143,0.3); margin-bottom: 24px; }
.hero-badge svg { width: 14px; height: 14px; fill: currentColor; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--cyan); font-style: italic; }
.hero p.lead { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; flex-direction: column; gap: 16px; }
.hero-call-box { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 20px 24px; backdrop-filter: blur(8px); }
.hero-call-icon { width: 52px; height: 52px; background: var(--cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; animation: pulse-ring 2s infinite; }
.hero-call-icon svg { width: 24px; height: 24px; fill: var(--navy); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(0,194,255,0.6); }
  70% { box-shadow: 0 0 0 16px rgba(0,194,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,194,255,0); }
}
.hero-call-info .label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.hero-call-info a { display: block; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.hero-call-info .hours { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600; padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); }
.hero-badge-pill svg { width: 14px; height: 14px; fill: var(--cyan); }

/* Brand Grid in Hero */
.hero-brands { }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.brand-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: var(--transition); cursor: pointer; }
.brand-card:hover { background: rgba(0,194,255,0.12); border-color: rgba(0,194,255,0.3); transform: translateY(-2px); }
.brand-card.featured { grid-column: span 2; background: rgba(0,194,255,0.10); border-color: rgba(0,194,255,0.25); }
.brand-card img { height: 32px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; max-width: 100%; }
.brand-card .name { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 10px; }
.brand-card.featured .name { color: rgba(255,255,255,0.8); }
.brand-more { background: var(--cyan); border: none; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.brand-more .count { font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.brand-more .label { font-size: 0.75rem; font-weight: 700; color: var(--navy); opacity: 0.75; }

/* ============================================
   TICKER STRIP
   ============================================ */
.ticker-strip { background: var(--navy); padding: 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(0,194,255,0.2); }
.ticker-track { display: flex; align-items: center; white-space: nowrap; animation: ticker 30s linear infinite; padding: 16px 0; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 32px; color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ticker-item svg { width: 16px; height: 16px; fill: var(--cyan); flex-shrink: 0; }
.ticker-dot { color: var(--cyan); font-size: 1.2rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   TRUST STATS BAND
   ============================================ */
.stats-band { background: var(--off-white); border-bottom: 1px solid var(--border); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { padding: 40px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--navy); display: block; }
.stat-num span { color: var(--cyan); }
.stat-label { font-size: 0.85rem; color: var(--gray-dark); margin-top: 4px; }

/* ============================================
   BRANDS PAGE / SECTION
   ============================================ */
.brands-section { background: var(--white); }
.brands-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.brand-full-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition); }
.brand-full-card:hover { border-color: var(--cyan); box-shadow: 0 8px 32px rgba(0,194,255,0.12); transform: translateY(-3px); }
.brand-full-card img { height: 44px; object-fit: contain; max-width: 140px; }
.brand-full-card .bname { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 14px; }
.brand-full-card .bdesc { font-size: 0.8rem; color: var(--text-light); margin-top: 6px; line-height: 1.5; }
.brand-full-card .btn { margin-top: 16px; padding: 10px 20px; font-size: 0.82rem; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: var(--off-white); }
.steps-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-list::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--teal)); z-index: 0; }
.step-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; position: relative; z-index: 1; transition: var(--transition); }
.step-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num { width: 64px; height: 64px; background: linear-gradient(135deg, var(--cyan), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.4rem; font-weight: 800; color: var(--white); box-shadow: 0 6px 24px rgba(0,194,255,0.3); }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; }

/* ============================================
   SHOP / PRODUCTS
   ============================================ */
.shop-section { background: var(--white); }
.shop-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.shop-tab { padding: 10px 24px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); color: var(--text-light); transition: var(--transition); }
.shop-tab.active, .shop-tab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); background: var(--white); }
.product-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card.featured { border-color: var(--cyan); position: relative; }
.product-badge { position: absolute; top: 16px; right: 16px; background: var(--cyan); color: var(--navy); font-size: 0.72rem; font-weight: 800; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; }
.product-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 28px 24px; text-align: center; }
.product-logo { height: 40px; object-fit: contain; filter: brightness(0) invert(1); max-width: 120px; }
.product-body { padding: 24px; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-subtitle { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
.product-features { list-style: none; margin-bottom: 20px; }
.product-features li { font-size: 0.85rem; color: var(--text-light); padding: 5px 0; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--gray-light); }
.product-features li:last-child { border-bottom: none; }
.product-features li::before { content: ''; width: 16px; height: 16px; background: var(--green); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B1D3A'%3E%3Cpath d='M6.5 11.5L3 8l1.5-1.5L6.5 8.5l5-5L13 5z'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.product-devices { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.device-tag { font-size: 0.72rem; background: var(--gray-light); color: var(--navy); padding: 4px 12px; border-radius: 100px; font-weight: 600; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.price-main { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.price-period { font-size: 0.82rem; color: var(--text-light); }
.price-orig { font-size: 0.9rem; color: var(--gray); text-decoration: line-through; }
.product-card .btn { width: 100%; justify-content: center; }

/* ============================================
   PLANS / PRICING
   ============================================ */
.plans-section { background: var(--off-white); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.popular { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0,194,255,0.2); transform: scale(1.03); }
.plan-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.plan-header { padding: 28px 28px 24px; border-bottom: 1px solid var(--border); }
.plan-popular-tag { display: inline-block; background: var(--cyan); color: var(--navy); font-size: 0.72rem; font-weight: 800; padding: 3px 12px; border-radius: 100px; text-transform: uppercase; margin-bottom: 12px; }
.plan-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.plan-desc { font-size: 0.88rem; color: var(--text-light); }
.plan-price-block { padding: 24px 28px; border-bottom: 1px solid var(--border); }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-size: 2.6rem; font-weight: 900; color: var(--navy); }
.plan-price .period { font-size: 0.88rem; color: var(--gray); }
.plan-note { font-size: 0.8rem; color: var(--text-light); margin-top: 8px; }
.plan-features-list { padding: 24px 28px; }
.plan-features-list li { list-style: none; padding: 8px 0; font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--gray-light); }
.plan-features-list li:last-child { border-bottom: none; }
.feat-check { width: 20px; height: 20px; background: rgba(0,214,143,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-check svg { width: 12px; height: 12px; fill: var(--green); }
.feat-x { width: 20px; height: 20px; background: rgba(0,0,0,0.06); border-radius: 50%; flex-shrink: 0; }
.plan-footer { padding: 0 28px 28px; }
.plan-footer .btn { width: 100%; justify-content: center; }

/* ============================================
   WHY US / FEATURES
   ============================================ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { padding: 32px; border-radius: var(--radius-lg); border: 1.5px solid var(--border); transition: var(--transition); }
.why-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-intro h2 { color: var(--white); }
.testimonials-section .section-intro p { color: rgba(255,255,255,0.65); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(0,194,255,0.3); }
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { color: #FFB800; font-size: 1rem; }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--teal)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--white); font-size: 1rem; flex-shrink: 0; }
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.author-location { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--cyan); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--navy); text-align: left; gap: 16px; }
.faq-question:hover { background: var(--off-white); }
.faq-arrow { width: 24px; height: 24px; background: var(--gray-light); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-arrow svg { width: 14px; height: 14px; fill: var(--navy); transition: var(--transition); }
.faq-item.open .faq-arrow { background: var(--cyan); }
.faq-item.open .faq-arrow svg { fill: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { font-size: 0.78rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-value a { color: var(--cyan-dark); }
.contact-form-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap .sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.9rem; font-family: var(--font); color: var(--navy); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,194,255,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-note { font-size: 0.78rem; color: var(--gray); text-align: center; margin-top: 12px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--navy), #1A4080); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-weight: 700; font-size: 1.1rem; }
.cta-phone svg { width: 20px; height: 20px; fill: var(--cyan); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #070F1E; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-main { padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 20px; display: inline-flex; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-btn:hover { background: var(--cyan); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.social-btn:hover svg { fill: var(--navy); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.5); display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; line-height: 1.6; }
.footer-contact p svg { width: 16px; height: 16px; fill: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.footer-contact p a { color: rgba(255,255,255,0.7); }
.footer-contact p a:hover { color: var(--cyan); }

.footer-mid { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-mid-inner { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
.footer-disclosure { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-disclosure strong { color: rgba(255,255,255,0.55); }
.footer-disclosure a { color: rgba(0,194,255,0.65); text-decoration: underline; }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal-links a:hover { color: var(--cyan); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 64px 0; }
.page-hero-inner { text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { font-size: 0.82rem; color: var(--cyan); font-weight: 600; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); }
.value-icon { width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 32px; height: 32px; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { margin-bottom: 16px; font-size: 0.95rem; }
.about-visual { background: linear-gradient(135deg, var(--navy), #1A4080); border-radius: var(--radius-lg); padding: 48px 32px; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-stat { text-align: center; }
.about-stat .num { font-size: 2.5rem; font-weight: 900; color: var(--cyan); }
.about-stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.team-note { background: rgba(0,194,255,0.1); border: 1px solid rgba(0,194,255,0.2); border-radius: var(--radius); padding: 20px 24px; margin-top: 32px; color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section { background: var(--white); }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin: 40px 0 16px; font-size: 1.4rem; color: var(--navy); }
.legal-content h3 { margin: 28px 0 10px; font-size: 1.1rem; color: var(--navy); }
.legal-content p { margin-bottom: 16px; font-size: 0.93rem; line-height: 1.8; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { font-size: 0.93rem; color: var(--text-light); margin-bottom: 8px; line-height: 1.7; }
.legal-content a { color: var(--cyan-dark); text-decoration: underline; }
.legal-content .last-updated { background: var(--off-white); border-left: 4px solid var(--cyan); padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 36px; font-size: 0.88rem; color: var(--text-light); }

/* ============================================
   AUTHORIZED DISCLOSURE PAGE
   ============================================ */
.disclosure-section { background: var(--white); }
.disclosure-box { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 32px; }
.disclosure-box h3 { margin-bottom: 16px; }
.brand-disclosure-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 24px; }
.brand-disc-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; }
.brand-disc-item img { height: 28px; object-fit: contain; }
.brand-disc-item span { display: block; font-size: 0.72rem; font-weight: 700; color: var(--navy); margin-top: 8px; text-transform: uppercase; }

/* ============================================
   NOTICE BANNER
   ============================================ */
.notice-bar { background: rgba(0,194,255,0.08); border-bottom: 1px solid rgba(0,194,255,0.2); padding: 10px 0; }
.notice-bar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 0.82rem; color: var(--navy-light); text-align: center; }
.notice-bar svg { width: 16px; height: 16px; fill: var(--cyan); flex-shrink: 0; }
.notice-bar a { color: var(--cyan-dark); font-weight: 600; text-decoration: underline; }

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.success-message { display: none; background: rgba(0,214,143,0.1); border: 1.5px solid var(--green); border-radius: var(--radius); padding: 20px 24px; margin-top: 16px; color: var(--teal); font-weight: 600; text-align: center; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--cyan); border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 20px rgba(0,194,255,0.4); opacity: 0; transform: translateY(16px); transition: var(--transition); z-index: 900; border: none; }
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top svg { width: 20px; height: 20px; fill: var(--navy); }
.back-top:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,194,255,0.5); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-contact { grid-column: 1/-1; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .nav-links, .header-phone { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card.featured { grid-column: 1/-1; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .steps-list { grid-template-columns: 1fr 1fr; }
  .steps-list::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-contact { grid-column: 1/-1; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .cta-actions { flex-direction: column; }
  .section-pad { padding: 64px 0; }
  .hero { padding: 60px 0 48px; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .steps-list { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .brand-full-card { grid-column: 1/-1; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* Animated entrance */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
