/* ============================================================
   JMS – Jamjoom Medicine Store | Corporate Website
   Global Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:        #2B3990;   /* JMS Navy Blue */
  --primary-dark:   #1a245e;
  --primary-light:  #3d4fad;
  --accent:         #00A99D;   /* Teal / Healthcare accent */
  --accent-light:   #e0f7f5;
  --gold:           #C8A96E;
  --white:          #ffffff;
  --off-white:      #f7f9fc;
  --light-gray:     #eef1f6;
  --mid-gray:       #a0aab8;
  --dark-gray:      #4a5568;
  --text:           #1a1f36;
  --text-light:     #6b7280;
  --border:         #dde3ed;
  --shadow-sm:      0 2px 8px rgba(43,57,144,.08);
  --shadow-md:      0 8px 28px rgba(43,57,144,.12);
  --shadow-lg:      0 20px 60px rgba(43,57,144,.16);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     all .3s cubic-bezier(.4,0,.2,1);
  --font-en:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --header-h:       80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-en);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Performance ---------- */
.card, .tech-card, .p-card { will-change: transform; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--dark-gray); line-height: 1.8; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); color: var(--accent);
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 100px; margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.section-title { color: var(--text); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-gold { color: var(--gold) !important; }

/* ---------- Layout ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .95rem; padding: 14px 28px;
  border-radius: var(--radius-md); transition: var(--transition);
  letter-spacing: .01em; white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,57,144,.35);
}
.btn-accent {
  background: var(--accent); color: var(--white);
}
.btn-accent:hover {
  background: #008f84; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,169,157,.35);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15); border-color: var(--white);
}
.btn-outline-primary {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary); color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn svg, .btn i { font-size: 1em; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem; color: var(--accent);
}
.card-icon.primary { background: rgba(43,57,144,.1); color: var(--primary); }
.card-icon.gold { background: rgba(200,169,110,.15); color: var(--gold); }
.card h4 { margin-bottom: 12px; }
.card p { font-size: .95rem; }

/* ---------- Stats ---------- */
.stat-card {
  text-align: center; padding: 36px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800;
  color: var(--primary); line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .9rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px; font-size: .78rem; font-weight: 600;
}
.badge-primary { background: rgba(43,57,144,.1); color: var(--primary); }
.badge-accent  { background: var(--accent-light); color: var(--accent); }
.badge-gold    { background: rgba(200,169,110,.15); color: #9b7a3a; }
.badge-success { background: #e8f5e9; color: #2e7d32; }

/* ---------- Divider ---------- */
.divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text .company-name {
  font-size: 1rem; font-weight: 800; color: var(--primary); letter-spacing: -.01em;
}
.nav-logo-text .company-sub {
  font-size: .7rem; color: var(--text-light); letter-spacing: .05em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--dark-gray);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary); background: rgba(43,57,144,.07);
}
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta {
  background: var(--primary); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: var(--radius-md) !important;
  font-size: .88rem !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: var(--white) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--white); z-index: 999; padding: 24px;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 12px 16px; font-weight: 500;
  color: var(--dark-gray); border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--light-gray);
}
.mobile-nav a:last-child { border: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); background: var(--off-white); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary-dark); color: rgba(255,255,255,.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 60px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 300px; }
.footer-brand .social-links { display: flex; gap: 12px; margin-top: 24px; }
.footer-brand .social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition);
}
.footer-brand .social-links a:hover { background: var(--accent); color: var(--white); }
.footer-col h5 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-col .contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 14px;
}
.footer-col .contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: .82rem; color: rgba(255,255,255,.4);
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh; padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1e3a7a 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-bg-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,169,157,.25) 0%, transparent 70%);
  right: -150px; top: -100px; pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.15) 0%, transparent 70%);
  left: -100px; bottom: -50px; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 2.2fr; gap: 40px;
  align-items: center; width: 100%; padding: 60px 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 100px; font-size: .8rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--accent); }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 500;
}
.hero-trust-item i { color: var(--accent); }
.hero-visual { position: relative; z-index: 1; }
.hero-stats-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-xl);
  padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.hero-stat {
  text-align: center; padding: 20px;
  background: rgba(255,255,255,.06); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-stat .num {
  font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.hero-stat .num span { color: var(--accent); }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; }
.hero-badge-row {
  margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm); padding: 10px 16px;
  font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 500; flex: 1; min-width: 140px;
}
.hero-badge i { color: var(--accent); }

/* ============================================================
   CAPABILITIES / FEATURES
   ============================================================ */
.capabilities { background: var(--off-white); }
.capability-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid var(--border);
  transition: var(--transition); cursor: default; position: relative; overflow: hidden;
}
.capability-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,57,144,.04), transparent);
  opacity: 0; transition: var(--transition);
}
.capability-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.capability-card:hover::before { opacity: 1; }
.capability-number {
  font-size: 4rem; font-weight: 900; color: var(--border);
  line-height: 1; margin-bottom: -10px; font-variant-numeric: tabular-nums;
  transition: var(--transition);
}
.capability-card:hover .capability-number { color: rgba(43,57,144,.1); }
.capability-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; margin-bottom: 20px;
}
.capability-card h4 { color: var(--text); margin-bottom: 12px; }
.capability-card p { font-size: .92rem; color: var(--text-light); }

/* ============================================================
   COVERAGE / MAP SECTION
   ============================================================ */
.coverage { background: var(--white); }
.coverage-map-area {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl); padding: 60px; color: var(--white);
  position: relative; overflow: hidden; margin-top: 48px;
}
.coverage-map-area::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.coverage-stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative;
}
.coverage-stat {
  text-align: center; padding: 24px 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md); transition: var(--transition);
}
.coverage-stat:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.coverage-stat .val {
  font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px;
}
.coverage-stat .val span { color: var(--accent); }
.coverage-stat .desc { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.regions-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 36px; position: relative;
}
.region-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 500;
  transition: var(--transition);
}
.region-item:hover { background: rgba(255,255,255,.14); }
.region-item i { color: var(--accent); font-size: .8rem; }

/* ============================================================
   SERVICES (used on multiple pages)
   ============================================================ */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 36px; transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-card .icon-wrap {
  width: 68px; height: 68px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem; margin-bottom: 24px; flex-shrink: 0;
}
.service-card h3 { font-size: 1.25rem; color: var(--text); margin-bottom: 12px; }
.service-card p { font-size: .9rem; color: var(--text-light); flex: 1; margin-bottom: 20px; }
.service-card .learn-more {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--primary);
}
.service-card .learn-more i { transition: var(--transition); }
.service-card:hover .learn-more i { transform: translateX(4px); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--primary), var(--accent));
}
.timeline-item {
  position: relative; padding-bottom: 40px;
}
.timeline-item::before {
  content: ''; position: absolute; left: -34px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary); z-index: 1;
}
.timeline-item .year {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--accent); margin-bottom: 6px;
}
.timeline-item h4 { color: var(--text); margin-bottom: 8px; }
.timeline-item p { font-size: .9rem; color: var(--text-light); }

/* ============================================================
   PARTNERS / LOGOS
   ============================================================ */
.partners-strip { background: var(--off-white); padding: 60px 0; }
.partners-strip h3 {
  text-align: center; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .15em; color: var(--mid-gray); margin-bottom: 40px; font-weight: 600;
}
.partners-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px 48px;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--border);
  font-weight: 700; font-size: .95rem; color: var(--dark-gray);
  min-width: 120px; text-align: center; transition: var(--transition);
}
.partner-logo:hover { color: var(--primary); border-color: var(--primary); box-shadow: var(--shadow-sm); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(0,169,157,.3) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 50%, var(--white) 50%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-breadcrumb i { font-size: .7rem; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; }

/* ============================================================
   TRUST INDICATORS
   ============================================================ */
.trust-bar {
  background: var(--primary);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500;
}
.trust-item i { color: var(--accent); font-size: 1.1rem; }
.trust-sep { width: 1px; height: 24px; background: rgba(255,255,255,.2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .coverage-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }
  .grid-2, .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
  .coverage-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .coverage-stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 16px; }
  .trust-sep { display: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .6; }
}
.animate-fade-up { animation: fadeInUp .7s ease both; }
.animate-fade    { animation: fadeIn .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
