/* =====================================================
   Z Track GPS Systems — style.css v1.3
   Brand: Navy #0B1C3D | Accent #00B4D8
   Fonts: Syne (headings) + DM Sans (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@400;500&display=swap');

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

:root {
  --navy:        #0B1C3D;
  --navy-mid:    #142d5e;
  --navy-light:  #1a3a78;
  --accent:      #00B4D8;
  --accent-dark: #0090ad;
  --accent-glow: rgba(0,180,216,.14);
  --white:       #ffffff;
  --off-white:   #f4f8fc;
  --text:        #0f1f3d;
  --muted:       #5a7099;
  --border:      #dde8f5;
  --green:       #00c97a;
  --red:         #f04040;
  --amber:       #f59e0b;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   18px;
  --max-w:       1140px;
  --nav-h:       66px;
  --trans:       .2s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

/* Headings — Syne, normal weight range */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -.2px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── Utilities ─── */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.mt-8  { margin-top:  8px; }  .mb-8  { margin-bottom:  8px; }
.mt-16 { margin-top: 16px; }  .mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }  .mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }  .mb-32 { margin-bottom: 32px; }
.mt-48 { margin-top: 48px; }  .mb-48 { margin-bottom: 48px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--navy); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm  { padding:  8px 18px; font-size: 13px; }
.btn-lg  { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Badges ─── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; letter-spacing: .3px; text-transform: uppercase; }
.badge-accent   { background: var(--accent-glow); color: var(--accent-dark); border: 1px solid rgba(0,180,216,.25); }
.badge-navy     { background: var(--navy); color: #fff; }
.badge-green    { background: rgba(0,201,122,.12); color: #00875a; border: 1px solid rgba(0,201,122,.25); }
.badge-popular  { background: var(--accent); color: var(--navy); }
.badge-new      { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.badge-active   { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.badge-read     { background: var(--off-white); color: var(--muted); border: 1px solid var(--border); }
.badge-inactive { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.badge-replied  { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* ─── Sections ─── */
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h1,.section-dark h2,.section-dark h3 { color: #fff; }
.section-gray { background: var(--off-white); }

.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title { font-size: clamp(22px, 3vw, 34px); margin-bottom: 12px; }
.section-sub   { font-size: 16px; color: var(--muted); max-width: 540px; line-height: 1.7; margin-bottom: 0; }
.section-sub.wide { max-width: 720px; }

/* ─── Grids ─── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* ─── Cards ─── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--trans);
}
.card:hover { border-color: var(--accent); box-shadow: 0 6px 28px rgba(0,180,216,.1); transform: translateY(-2px); }
.card-icon  { width: 46px; height: 46px; border-radius: 11px; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 16px; }
.card h3    { font-size: 16px; margin-bottom: 7px; }
.card p     { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── Dividers ─── */
.divider      { height: 1px; background: var(--border); }
.divider-dark { height: 1px; background: rgba(255,255,255,.08); }

/* ─── Live dot ─── */
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(0,201,122,.4)}50%{opacity:.6;box-shadow:0 0 0 6px rgba(0,201,122,0)} }

/* ─── Check list ─── */
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); padding: 5px 0; }
.check-list li::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; background: rgba(0,201,122,.15); color: var(--green); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-list li.no::before { content: '✕'; background: rgba(240,64,64,.1); color: var(--red); }
.check-list li.no { color: #bbb; }

/* ─── Stars ─── */
.stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; }

/* ─── Form elements ─── */
.form-group       { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,180,216,.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; background: rgba(0,201,122,.1); border: 1px solid rgba(0,201,122,.3); color: #006641; padding: 12px; border-radius: var(--radius-sm); font-size: 14px; text-align: center; margin-top: 12px; }


/* ══════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════ */
.ticker-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(0,180,216,.18);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--accent);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 18px;
  flex-shrink: 0;
}
.ticker-track { display: flex; gap: 60px; animation: ticker-scroll 30s linear infinite; white-space: nowrap; }
.ticker-track span { font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .2px; }
.ticker-track span strong { color: var(--accent); font-weight: 500; }
@keyframes ticker-scroll { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }


/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.site-nav {
  background: rgba(11,28,61,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  gap: 20px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 60px; width: auto; max-width: 160px; object-fit: contain; }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), #0077b6);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800;
  color: #fff;
}
.nav-logo-text { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: #fff; line-height: 1.15; }
.nav-logo-text small { display: block; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 400; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .5px; }

/* Nav links list — centered */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
}
.nav-links > li > a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #fff; background: rgba(255,255,255,.07); }
.nav-links > li > a.active  { font-weight: 500; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-dropdown-btn:hover,
.nav-dropdown-btn.open { color: #fff; background: rgba(255,255,255,.07); }
.nav-chevron { font-size: 10px; transition: transform .2s; }
.nav-dropdown-btn.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
  z-index: 200;
}
.nav-dropdown-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active { background: rgba(255,255,255,.07); color: #fff; }

/* Right-side actions */
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-search-btn {
  color: rgba(255,255,255,.5);
  padding: 7px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  text-decoration: none;
}
.nav-search-btn:hover { color: #fff; background: rgba(255,255,255,.07); }

.btn-demo-nav {
  background: var(--accent-glow);
  border: 1px solid rgba(0,180,216,.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn-demo-nav:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); }

.btn-login-nav {
  background: var(--accent);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.btn-login-nav:hover { background: var(--accent-dark); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); }

/* Mobile overlay */
#navOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
}


/* ══════════════════════════════════════════
   HERO — full background image
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Background image layer */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/herosection.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay to ensure text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,28,61,.92) 0%,
    rgba(11,28,61,.80) 55%,
    rgba(11,28,61,.45) 100%
  );
  z-index: 1;
}

/* Fallback if no image — keeps nav background visible */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 40%, rgba(0,180,216,.08) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-content { max-width: 620px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.28);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  letter-spacing: .3px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -.5px;
  line-height: 1.1;
}
.hero h1 span { color: var(--accent); }

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

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: #fff; }
.hero-stat span   { font-size: 12px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; }


/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(0,180,216,.09) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1  { color: #fff; font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 12px; }
.page-hero p   { color: rgba(255,255,255,.55); font-size: 16px; max-width: 520px; }

/* Breadcrumb */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb ul { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); list-style: none; }
.breadcrumb a  { color: var(--accent); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; color: #b0bec8; }


/* ══════════════════════════════════════════
   WHY STRIP
   ══════════════════════════════════════════ */
.why-strip { background: var(--navy); padding: 60px 0; }
.why-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; text-align: center; }
.why-item strong { display: block; font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.why-item span   { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .8px; }


/* ══════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,180,216,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2  { color: #fff; font-size: clamp(20px, 3vw, 30px); margin-bottom: 10px; }
.cta-band p   { color: rgba(255,255,255,.55); font-size: 16px; margin-bottom: 28px; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  padding: 60px 0 28px;
  border-top: 1px solid rgba(0,180,216,.1);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; color: #fff; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.45); transition: var(--trans); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(0,180,216,.1); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.35); transition: var(--trans); }
.footer-bottom a:hover { color: var(--accent); }

/* Footer newsletter */
.footer-newsletter-strip { background: rgba(0,180,216,.07); border: 1px solid rgba(0,180,216,.15); border-radius: 14px; padding: 26px 30px; margin-bottom: 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer input[type="email"] { background: rgba(255,255,255,.07) !important; border-color: rgba(255,255,255,.15) !important; color: #fff !important; min-width: 200px; }
.site-footer input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
.site-footer input[type="email"]:focus { border-color: var(--accent) !important; box-shadow: 0 0 0 3px rgba(0,180,216,.15) !important; outline: none; }


/* ══════════════════════════════════════════
   PRICING CARDS
   ══════════════════════════════════════════ */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: var(--trans);
}
.pricing-card.featured { border: 2px solid var(--accent); box-shadow: 0 8px 32px rgba(0,180,216,.12); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--navy); font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 12px; white-space: nowrap; text-transform: uppercase; letter-spacing: .3px; }
.pricing-card h3 { font-size: 18px; margin-bottom: 4px; }
.plan-sub  { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); margin: 12px 0 4px; }
.plan-price sup   { font-size: 16px; }
.plan-price small { font-size: 13px; font-weight: 400; color: var(--muted); }
.pricing-card:hover { transform: translateY(-3px); }


/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: relative; }
.testimonial-card::before { content: '\201C'; font-size: 68px; color: var(--off-white); position: absolute; top: 10px; left: 16px; line-height: 1; font-family: Georgia, serif; pointer-events: none; }
.testimonial-card p { font-size: 14px; color: var(--muted); font-style: italic; padding-top: 20px; line-height: 1.75; }
.testimonial-reviewer { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent); }
.testimonial-reviewer strong { display: block; font-size: 14px; }
.testimonial-reviewer span   { font-size: 12px; color: var(--muted); }


/* ══════════════════════════════════════════
   SERVICE ROWS
   ══════════════════════════════════════════ */
.service-row { display: flex; gap: 22px; align-items: flex-start; padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: var(--trans); margin-bottom: 14px; }
.service-row:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,180,216,.09); }
.service-row-icon { width: 54px; height: 54px; border-radius: 13px; background: var(--accent-glow); border: 1px solid rgba(0,180,216,.2); display: flex; align-items: center; justify-content: center; font-size: 25px; flex-shrink: 0; }
.service-row-body h3 { font-size: 17px; margin-bottom: 7px; }
.service-row-body p  { font-size: 14px; color: var(--muted); line-height: 1.7; }


/* ══════════════════════════════════════════
   DEVICE CARDS
   ══════════════════════════════════════════ */
.device-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; text-align: center; position: relative; transition: var(--trans); }
.device-card.featured { border: 2px solid var(--accent); box-shadow: 0 8px 32px rgba(0,180,216,.12); }
.device-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--navy); font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 12px; white-space: nowrap; }
.device-visual { width: 100px; height: 82px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border: 1px solid rgba(0,180,216,.18); display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 18px; }
.device-card h3      { font-size: 18px; margin-bottom: 4px; }
.device-card .device-sub  { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.device-price { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: var(--navy); margin: 12px 0 4px; }
.device-price sup   { font-size: 14px; }
.device-price small { font-size: 13px; font-weight: 400; color: var(--muted); }
.device-card:hover  { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,180,216,.1); }

/* Compare table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.compare-table th { background: var(--navy); color: #fff; padding: 14px 16px; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table th.accent-col { color: var(--accent); }
.compare-table td { padding: 12px 16px; text-align: center; color: var(--muted); border-bottom: 1px solid var(--border); }
.compare-table td:first-child { text-align: left; color: var(--text); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table .tick  { color: var(--green); font-size: 16px; font-weight: 700; }
.compare-table .cross { color: #d0d8e4; font-size: 14px; }


/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: var(--trans); }
.value-card:hover { border-color: var(--accent); }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; text-align: center; transition: var(--trans); }
.team-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.team-avatar { width: 62px; height: 62px; border-radius: 50%; background: var(--accent-glow); border: 2px solid rgba(0,180,216,.2); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--accent); margin: 0 auto 14px; }
.team-card h3   { font-size: 16px; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--muted); }
.stat-box { background: var(--accent-glow); border: 1px solid rgba(0,180,216,.2); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat-box strong { display: block; font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.stat-box span { font-size: 13px; color: var(--muted); }


/* ══════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════ */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--trans); display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,180,216,.09); }
.blog-thumb { height: 148px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-size: 42px; position: relative; overflow: hidden; }
.blog-thumb::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(0,180,216,.13) 0%, transparent 70%); }
.blog-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-tag  { display: inline-block; background: var(--off-white); color: var(--muted); font-size: 11px; font-weight: 500; padding: 3px 9px; border-radius: 4px; border: 1px solid var(--border); margin-bottom: 9px; text-transform: uppercase; letter-spacing: .3px; }
.blog-body h3 { font-size: 15px; margin-bottom: 7px; line-height: 1.4; }
.blog-body p  { font-size: 13px; color: var(--muted); flex: 1; }
.blog-meta    { font-size: 12px; color: #a0b0c4; margin-top: 13px; padding-top: 11px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 5px; }


/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.contact-info-panel { background: var(--navy); border-radius: var(--radius-lg); padding: 34px; color: #fff; }
.contact-info-panel h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.contact-info-panel > p { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 30px; line-height: 1.7; }
.contact-info-item { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 18px; }
.contact-info-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,180,216,.12); border: 1px solid rgba(0,180,216,.2); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .5px; font-family: 'DM Sans', sans-serif; margin-bottom: 2px; }
.contact-info-item span   { font-size: 14px; color: #fff; }
.contact-form-panel { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; }
.contact-form-panel h3 { font-size: 20px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }


/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
/* (uses inline styles for accordion — no extra class needed) */


/* ══════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════ */
.page-404 { background: var(--navy); min-height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.page-404 h2 { color: #fff; font-size: 28px; margin-bottom: 12px; }
.page-404 p  { color: rgba(255,255,255,.45); margin-bottom: 28px; }


/* ══════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 76px; right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  z-index: 500;
  transition: var(--trans);
  text-decoration: none;
}
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.08); }
.whatsapp-float::before { content: 'Chat with us'; position: absolute; right: 60px; background: rgba(0,0,0,.75); color: #fff; font-size: 12px; padding: 5px 10px; border-radius: 5px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.whatsapp-float:hover::before { opacity: 1; }

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 14px rgba(0,180,216,.3);
  opacity: 0; transform: translateY(10px);
  transition: var(--trans);
  z-index: 500;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--accent-dark); }


/* ══════════════════════════════════════════
   ADMIN PANEL
   ══════════════════════════════════════════ */
/* (Admin has its own inline styles in layout.php) */


/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE NAV DRAWER
   ══════════════════════════════════════════ */
@media (max-width: 920px) {
  /* Hide desktop nav links, show hamburger */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 84vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 72px 0 32px;
    gap: 0;
    z-index: 999;
    transition: right .28s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -6px 0 28px rgba(0,0,0,.4);
    align-items: stretch;
  }
  .nav-links.open { right: 0; }
  .nav-links > li > a,
  .nav-dropdown-btn {
    display: flex;
    width: 100%;
    padding: 13px 24px;
    font-size: 15px;
    border-left: 3px solid transparent;
    border-radius: 0;
    justify-content: flex-start;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a.active,
  .nav-dropdown-btn:hover,
  .nav-dropdown-btn.open {
    border-left-color: var(--accent);
    background: rgba(255,255,255,.06);
    border-radius: 0;
  }
  /* Dropdown becomes inline in mobile */
  .nav-dropdown { position: static; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,.04);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-dropdown-menu.open { max-height: 400px; }
  .nav-dropdown-menu li a {
    padding: 11px 24px 11px 36px;
    font-size: 14px;
    border-radius: 0;
    border-left: 3px solid transparent;
  }
  .nav-dropdown-menu li a:hover { border-left-color: var(--accent); background: rgba(255,255,255,.05); }

  .nav-toggle { display: flex; }
  .btn-demo-nav { display: none; }

  #navOverlay.open { display: block; }
}

@media (max-width: 640px) {
  .hero { min-height: 80vh; padding: 60px 0 48px; }
  .hero h1 { font-size: clamp(30px, 8vw, 42px); }
  .hero-stats { gap: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn-login-nav { font-size: 12px; padding: 7px 12px; }
}

/* fade-in animation */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .42s ease, transform .42s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Print */
@media print {
  .ticker-bar, .site-nav, .whatsapp-float, .scroll-top-btn, .cta-band, .site-footer { display: none !important; }
  .hero { background: #fff !important; }
  .hero h1 { color: #000 !important; }
}