/* ================================================
   Z Track GPS Systems — Main Stylesheet
   Brand: Navy #0B1C3D | Accent #00B4D8 | White
   Font: Syne (headings) + DM Sans (body)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Reset & Base ── */
*, *::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,.15);
  --white:      #ffffff;
  --off-white:  #f4f8fc;
  --text:       #0f1f3d;
  --muted:      #5a7099;
  --border:     #dde8f5;
  --green:      #00c97a;
  --red:        #f04040;
  --card-bg:    #ffffff;
  --card-shadow:0 2px 16px rgba(11,28,61,.07);
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  18px;
  --max-w:      1120px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

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

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

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

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

.hero-visual-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    object-fit: contain;
}
.hero-image {
    width: 100%;
    max-width: 720px;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    transition: transform 0.4s ease;
}

.hero-image:hover {
    transform: translateY(-6px) scale(1.02);
}

/* ── Utility ── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.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: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.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: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Badge / Tag ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .4px;
  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: var(--white); }
.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); }

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

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

/* ── Grid helpers ── */
.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: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 28px rgba(0,180,216,.12);
  transform: translateY(-3px);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Divider ── */
.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: 2px;
}
.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; }

/* ════════════════════════════════
   TOP TICKER
   ════════════════════════════════ */
.ticker-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(0,180,216,.2);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--accent);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-right: 20px;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .3px;
}
.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(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: 68px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), #0077b6);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav-links a.active { font-weight: 500; }
.nav-login {
  background: var(--accent) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  margin-left: 10px;
}
.nav-login:hover {
  background: var(--accent-dark) !important;
}

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

/* ════════════════════════════════
   HERO — HOME
   ════════════════════════════════ */
.hero {
  background: var(--navy);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(0,180,216,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0,119,182,.18) 0%, transparent 60%);
  pointer-events: none;
}
/* subtle grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual-wrap { display: none; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,.1);
  border: 1px solid rgba(0,180,216,.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .4px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hero h1 span { color: var(--accent); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.62);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Hero visual / map card */
.hero-visual-wrap {
  position: relative;
  z-index: 1;
}
.map-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,180,216,.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(8px);
}
.map-canvas {
  background: linear-gradient(135deg,#091527,#0d2347);
  border-radius: var(--radius);
  height: 190px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-route {
  position: absolute;
  inset: 0;
}
.map-pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
.map-pin::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: ping 2s ease-out infinite;
  opacity: 0;
}
.map-pin:nth-child(2)::after { animation-delay: .6s; }
.map-pin:nth-child(3)::after { animation-delay: 1.2s; }
@keyframes ping {
  0%   { transform: scale(.8); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-label {
  position: absolute;
  background: rgba(0,180,216,.9);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.map-live-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,201,122,.9);
  color: #003d20;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: .5px;
  display: flex; align-items: center; gap: 5px;
}
.map-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}
.map-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.map-stat strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.map-stat small {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* ════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 60px 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,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1  { color: var(--white); font-size: clamp(26px,3.5vw,42px); 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: 11px 0;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: #b0bec8;
}

/* ════════════════════════════════
   CTA BAND
   ════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,180,216,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(22px,3vw,32px); margin-bottom: 12px; }
.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: 64px 0 28px;
  border-top: 1px solid rgba(0,180,216,.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width:700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:460px) { .footer-grid { grid-template-columns: 1fr; } }
.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: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.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-contact-item span { color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════ */
.service-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  margin-bottom: 16px;
}
.service-row:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(0,180,216,.1);
}
.service-row-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,180,216,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.service-row-body h3 { font-size: 17px; margin-bottom: 8px; }
.service-row-body p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ════════════════════════════════
   GPS TRACKER PAGE
   ════════════════════════════════ */
.device-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.device-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0,180,216,.15);
}
.device-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.device-visual {
  width: 110px; height: 88px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 1px solid rgba(0,180,216,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  margin: 0 auto 20px;
}
.device-card h3 { font-size: 19px; margin-bottom: 4px; }
.device-card .device-sub { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.device-price {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 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(-4px);
  box-shadow: 0 12px 36px rgba(0,180,216,.12);
}

/* Comparison 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: var(--white);
  padding: 16px 18px;
  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: 13px 18px;
  text-align: center;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 400; }
.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: #e0e0e0; font-size: 14px; }

/* ════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════ */
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--accent); box-shadow: var(--card-shadow); }
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.team-avatar {
  width: 64px; height: 64px;
  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 highlight box */
.stat-box {
  background: var(--accent-glow);
  border: 1px solid rgba(0,180,216,.2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-box span { font-size: 13px; color: var(--muted); }

/* ════════════════════════════════
   BLOG PAGE
   ════════════════════════════════ */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,180,216,.1); }
.blog-thumb {
  height: 150px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,180,216,.15) 0%, transparent 70%);
}
.blog-body { padding: 20px; 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 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.blog-body h3 { font-size: 15px; margin-bottom: 8px; line-height: 1.4; }
.blog-body p  { font-size: 13px; color: var(--muted); flex: 1; }
.blog-meta {
  font-size: 12px;
  color: #a0b0c4;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}

/* ════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
}
@media (max-width:700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact-info-panel h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-info-panel > p {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 3px;
}
.contact-info-item span {
  font-size: 14px;
  color: var(--white);
}
.contact-form-panel {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-panel h3 { font-size: 20px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width:480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.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: var(--white);
  transition: var(--transition);
}
.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: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
}

/* Pricing cards */
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.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: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 18px; margin-bottom: 4px; }
.pricing-card .plan-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.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: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 72px;
  color: var(--off-white);
  position: absolute;
  top: 12px; left: 18px;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  padding-top: 22px;
  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); }

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

/* 404 */
.page-404 {
  background: var(--navy);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.page-404 h1 {
  font-size: 120px;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
  opacity: .15;
  margin-bottom: -20px;
}
.page-404 h2 { color: var(--white); font-size: 28px; margin-bottom: 12px; }
.page-404 p  { color: rgba(255,255,255,.45); margin-bottom: 28px; }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width:768px) {
  /* nav-links mobile handled by drawer block below */
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:480px) {
  .hero { padding: 60px 0 52px; }
  .hero-actions { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 13px 24px; font-size: 15px; }
}

/* 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 16px rgba(0,180,216,.35);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 500;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--accent-dark); }

/* ════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ════════════════════════════════ */
.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 20px rgba(37,211,102,.45);
  z-index: 500;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.08);
}
/* Tooltip */
.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; }

/* ════════════════════════════════
   MOBILE NAV DRAWER (v1.2)
   ════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 0 32px;
    gap: 0;
    z-index: 999;
    transition: right .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
    border-left: 3px solid transparent;
    border-bottom: none !important;
    border-radius: 0;
    height: auto;
  }
  .nav-links a:hover,
  .nav-links a.active {
    border-left-color: var(--accent);
    background: rgba(255,255,255,.06);
  }
  .nav-login {
    margin: 16px 20px 0 !important;
    border-radius: var(--radius-sm) !important;
    width: auto !important;
    justify-content: center;
    display: flex !important;
  }
  .nav-toggle { display: flex; }
}

/* ════════════════════════════════
   SEARCH PAGE
   ════════════════════════════════ */
#searchInput:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}

/* ════════════════════════════════
   THANK YOU PAGE ANIMATION
   ════════════════════════════════ */
@keyframes checkPop {
  0%   { transform: scale(.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ════════════════════════════════
   PRINT STYLES
   ════════════════════════════════ */
@media print {
  .ticker-bar, .site-nav, .whatsapp-float, .scroll-top-btn,
  .cta-band, .site-footer, nav.breadcrumb { display: none !important; }
  body { color: #000; font-size: 12pt; }
  a { color: #000; }
  .hero, .page-hero { background: #fff !important; padding: 16px 0; }
  .hero h1, .page-hero h1 { color: #000 !important; }
  .container { max-width: 100% !important; padding: 0 !important; }
}

/* ════════════════════════════════
   FOOTER NEWSLETTER FORM
   Overrides for dark background
   ════════════════════════════════ */
.site-footer input[type="email"],
.site-footer input[type="text"] {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.15) !important;
  color: #fff !important;
}
.site-footer input[type="email"]::placeholder,
.site-footer input[type="text"]::placeholder {
  color: rgba(255,255,255,.35);
}
.site-footer input[type="email"]:focus,
.site-footer input[type="text"]:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(0,180,216,.15) !important;
  outline: none;
}

/* ════════════════════════════════
   FOOTER CONTACT LINKS
   ════════════════════════════════ */
a.footer-contact-item:hover span {
  color: var(--accent);
}
.footer-login-btn:hover {
  background: rgba(0,180,216,.2) !important;
  color: var(--accent) !important;
}

/* ════════════════════════════════
   GET DEMO PAGE
   ════════════════════════════════ */
.get-demo-benefit-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.get-demo-benefit-row:last-child { border-bottom: none; }

/* ════════════════════════════════
   ADMIN APPLICATIONS PAGE
   ════════════════════════════════ */
.badge-shortlisted { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.badge-interviewed  { background: #fdf4ff; color: #7e22ce; border: 1px solid #e9d5ff; }
.badge-offered      { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* ════════════════════════════════
   RESPONSIVE: FOOTER NEWSLETTER
   ════════════════════════════════ */
@media (max-width: 640px) {
  .site-footer .footer-newsletter-strip {
    flex-direction: column;
    text-align: center;
  }
  .site-footer form[data-subscribe] {
    justify-content: center;
  }
  .site-footer form[data-subscribe] input {
    min-width: 0;
    width: 100%;
  }
}

/* ════════════════════════════════
   APPLY PAGE
   ════════════════════════════════ */
.apply-success-check {
  animation: checkPop .5s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes checkPop {
  from { transform: scale(.4); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
