/* ============================================================
   PRED Solutions — Global Stylesheet
   Fonts: Plus Jakarta Sans (headings) · Inter (body/para)
   ============================================================ */

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

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

/* ── TOKENS ── */
:root {
  --navy:     #0c2340;
  --navy2:    #102d50;
  --green:    #1a7a4a;
  --green2:   #22a05a;
  --green3:   #2dc26b;
  --teal:     #0e7f6e;
  --white:    #ffffff;
  --gray-50:  #f6f8fa;
  --gray-100: #eef1f5;
  --gray-200: #dde3ec;
  --gray-300: #c8d0dc;
  --gray-400: #8f9db5;
  --gray-500: #6b7a95;
  --gray-600: #4a5568;
  --gray-700: #374155;
  --gray-800: #1a2540;
  --orange:   #f97316;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-head:    'Plus Jakarta Sans', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ROLES ── */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero h1,
.aib-title,
.pc-mock-title,
.logo-name,
.footer-brand-name {
  font-family: var(--font-display);
}
p, li, a, label, input, select, textarea, span, td, th, blockquote {
  font-family: var(--font-body);
}

/* ── UTILITIES ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.eyebrow-light { color: var(--green3); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 560px;
}
.section-sub.center { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: 9px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: #a0b3cc;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar a { color: #a0b3cc; text-decoration: none; transition: color .15s; }
.top-bar a:hover { color: white; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 13px; height: 13px; fill: var(--green3); flex-shrink: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  background: white;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 var(--gray-200), 0 4px 20px rgba(12,35,64,.07);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; fill: white; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1;
}
.logo-name .accent { color: var(--green); }
.logo-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--gray-200);
  margin: 0 6px;
  vertical-align: middle;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .18s, background .18s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-50); }
.nav-links a.active { color: var(--green); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { width: 14px; height: 14px; fill: var(--gray-400); transition: transform .2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(12,35,64,.12);
  padding: 8px;
  min-width: 200px;
  z-index: 300;
  margin-top: 8px;
  transition: opacity .18s ease, visibility .18s ease;
}
/* Invisible bridge over the 8px gap so hover doesn't break */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.dropdown-menu-inner { display: contents; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .86rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--navy); }
.dropdown-menu a svg { width: 16px; height: 16px; fill: var(--green); flex-shrink: 0; }
.dm-divider { height: 1px; background: var(--gray-200); margin: 6px 0; }

.nav-cta {
  background: var(--green);
  color: white !important;
  font-size: .86rem !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background .2s;
  white-space: nowrap;
  margin-left: 8px;
}
.nav-cta:hover { background: #155f39 !important; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(118deg, var(--navy) 0%, #0e2e55 45%, #0b5c49 100%);
  padding: 72px 5% 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: var(--green3); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: white;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 18px;
}
.page-hero h1 .accent { color: var(--green3); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--green); color: white;
  font-family: var(--font-body);
  font-weight: 700; font-size: .94rem;
  padding: 14px 30px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #155f39; transform: translateY(-1px); }
.btn-primary svg { width: 17px; height: 17px; fill: white; }

.btn-ghost {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  color: white; font-weight: 600; font-size: .94rem;
  padding: 13px 26px; border-radius: 10px;
  text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-ghost svg { width: 17px; height: 17px; fill: white; }

.btn-navy {
  background: var(--navy); color: white;
  font-weight: 700; font-size: .92rem;
  padding: 13px 26px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.btn-navy:hover { background: var(--navy2); }
.btn-navy svg { width: 17px; height: 17px; fill: white; }

.btn-outline-green {
  border: 1.5px solid var(--green); color: var(--green);
  font-weight: 700; font-size: .92rem;
  padding: 12px 24px; border-radius: 10px;
  text-decoration: none; cursor: pointer; background: transparent;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.btn-outline-green:hover { background: var(--green); color: white; }

.btn-submit {
  background: var(--green); color: white;
  font-family: var(--font-body);
  font-weight: 700; font-size: .95rem;
  padding: 14px 32px; border-radius: 10px;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.btn-submit:hover { background: #155f39; }
.btn-submit svg { width: 17px; height: 17px; fill: white; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .84rem; font-weight: 600; color: var(--gray-600);
}
.trust-item svg { width: 17px; height: 17px; fill: var(--green); flex-shrink: 0; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  background: linear-gradient(118deg, var(--navy) 0%, #0e2e55 38%, #0b5c49 78%, #0a7a5e 100%);
  padding: 88px 5% 80px;
  position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-orb1 { position:absolute; right:-120px; top:-120px; width:560px; height:560px; border-radius:50%; background:radial-gradient(circle, rgba(45,194,107,.12) 0%, transparent 70%); z-index:1; }
.hero-orb2 { position:absolute; left:-60px; bottom:-80px; width:380px; height:380px; border-radius:50%; background:radial-gradient(circle, rgba(14,127,110,.15) 0%, transparent 70%); z-index:1; }
.hero-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; width:100%; max-width:1200px; margin:0 auto; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: 7px 16px; margin-bottom: 28px;
  font-size: .74rem; font-weight: 600; color: var(--green3); letter-spacing: 0;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--green3); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; color: white;
  line-height: 1.05; letter-spacing: 0; margin-bottom: 22px;
}
.hero h1 .line2 { display:block; color: var(--green3); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { display:flex; flex-direction:column; gap:14px; }
.hero-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.hero-stat-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px); border-radius: 14px; padding: 20px 22px;
  transition: background .2s;
}
.hero-stat-card:hover { background: rgba(255,255,255,.11); }
.hero-stat-card.wide { grid-column: span 2; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.hsc-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: white; letter-spacing: 0; line-height: 1; }
.hsc-label { font-size: .68rem; font-weight: 600; letter-spacing: 0; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 5px; }
.hsc-icon { width: 40px; height: 40px; background: rgba(45,194,107,.15); border-radius: 10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hsc-icon svg { width: 20px; height: 20px; fill: var(--green3); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 88px 5%; background: white; }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; max-width:1200px; margin:0 auto; }
.about-right p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.about-pillars { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:28px; }
.about-pillar { background:var(--gray-50); border:1.5px solid var(--gray-200); border-radius:12px; padding:20px; transition:border-color .2s; }
.about-pillar:hover { border-color:var(--green); }
.ap-num { font-family: var(--font-display); font-size:1.7rem; font-weight:900; color:var(--navy); letter-spacing: 0; line-height:1; margin-bottom:5px; }
.ap-num span { font-size:.82rem; font-weight:600; color:var(--green); }
.ap-label { font-size:.8rem; font-weight:600; color:var(--gray-600); }

.about-img-block {
  background: linear-gradient(135deg, var(--navy) 0%, #0e5a44 100%);
  border-radius: 20px; padding: 44px; position:relative; overflow:hidden;
}
.about-img-block::before { content:''; position:absolute; right:-40px; top:-40px; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,.05); }
.about-img-block::after { content:''; position:absolute; left:-20px; bottom:-40px; width:160px; height:160px; border-radius:50%; background:rgba(45,194,107,.08); }
.aib-eyebrow { font-size:.68rem; font-weight:700; letter-spacing: 0; text-transform:uppercase; color:var(--green3); margin-bottom:16px; position:relative; z-index:2; }
.aib-title { font-family: var(--font-display); font-size:1.85rem; font-weight:800; color:white; letter-spacing: 0; line-height:1.2; margin-bottom:16px; position:relative; z-index:2; }
.aib-body { font-size:1rem; color:rgba(255,255,255,.65); line-height:1.75; margin-bottom:28px; position:relative; z-index:2; }
.aib-tags { display:flex; flex-wrap:wrap; gap:8px; position:relative; z-index:2; }
.aib-tag { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:6px; padding:6px 13px; font-size:.74rem; font-weight:600; color:rgba(255,255,255,.75); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--gray-50); padding: 88px 5%; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { text-align:center; margin-bottom:56px; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.svc-card {
  background: white; border-radius: 16px; padding: 32px 28px;
  border: 1.5px solid var(--gray-200);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative; overflow: hidden;
}
.svc-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--svc-color,var(--green)); border-radius:16px 16px 0 0; transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.svc-card:hover::before { transform:scaleX(1); }
.svc-card:hover { transform:translateY(-5px); box-shadow:0 20px 48px rgba(12,35,64,.1); border-color:transparent; }
.svc-icon-wrap { width:52px; height:52px; border-radius:12px; background:var(--svc-bg,#e8f5ee); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.svc-icon-wrap svg { width:26px; height:26px; fill:var(--svc-color,var(--green)); }
.svc-card h3 { font-family: var(--font-display); font-size:1.1rem; font-weight:800; color:var(--navy); margin-bottom:10px; }
.svc-card p { font-size:.96rem; color:var(--gray-600); line-height:1.7; margin-bottom:18px; }
.svc-tags { display:flex; flex-wrap:wrap; gap:5px; }
.svc-tag { background:var(--gray-50); border:1px solid var(--gray-200); border-radius:5px; padding:3px 9px; font-size:.7rem; font-weight:600; color:var(--gray-600); }
.svc-link { display:inline-flex; align-items:center; gap:5px; font-size:.84rem; font-weight:700; color:var(--svc-color,var(--green)); text-decoration:none; margin-top:16px; }
.svc-link svg { width:14px; height:14px; fill:currentColor; }
.svc-link:hover { text-decoration:underline; }

/* ============================================================
   PRED CARE
   ============================================================ */
.predcare-section { background: white; padding: 88px 5%; overflow:hidden; }
.predcare-inner { max-width: 1200px; margin: 0 auto; }
.predcare-top { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-bottom:72px; }
.predcare-badge {
  display: inline-flex; align-items:center; gap:8px;
  background: linear-gradient(120deg,#e8f5ee,#d1f0e0);
  border:1.5px solid #bbddcc; border-radius: 100px;
  padding: 8px 18px; margin-bottom: 20px;
  font-size:.74rem; font-weight:700; letter-spacing: 0; color:var(--green);
}
.predcare-badge svg { width:15px; height:15px; fill:var(--green); }
.predcare-intro p { font-size: 1.05rem; color:var(--gray-600); line-height:1.8; margin-bottom:18px; }
.predcare-cta-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }

.predcare-phone-mock {
  background: linear-gradient(145deg, var(--navy) 0%, #0d3b5e 50%, #0e6b52 100%);
  border-radius: 24px; padding: 36px 32px; position:relative; overflow:hidden;
}
.predcare-phone-mock::before { content:''; position:absolute; right:-50px; top:-50px; width:200px; height:200px; border-radius:50%; background:rgba(45,194,107,.1); }
.pc-mock-label { font-size:.68rem; font-weight:700; letter-spacing: 0; text-transform:uppercase; color:var(--green3); margin-bottom:12px; }
.pc-mock-title { font-family: var(--font-display); font-size:1.4rem; font-weight:800; color:white; letter-spacing: 0; margin-bottom:20px; line-height:1.2; }
.pc-mock-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.pc-mock-list li { display:flex; align-items:center; gap:10px; font-size:.9rem; color:rgba(255,255,255,.8); }
.pc-mock-list li svg { width:16px; height:16px; fill:var(--green3); flex-shrink:0; }
.pc-mock-pill { display:inline-block; background:rgba(45,194,107,.15); border:1px solid rgba(45,194,107,.25); border-radius:6px; padding:4px 11px; font-size:.7rem; font-weight:700; color:var(--green3); margin-top:20px; }
.pc-mock-stat-row { display:flex; gap:20px; margin-top:22px; }
.pc-mock-stat { text-align:center; }
.pc-mock-stat .n { font-family: var(--font-display); font-size:1.4rem; font-weight:900; color:white; letter-spacing: 0; }
.pc-mock-stat .l { font-size:.62rem; font-weight:600; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing: 0; }

.predcare-features { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.pcf-card { background: var(--gray-50); border:1.5px solid var(--gray-200); border-radius:14px; padding:24px 20px; transition: border-color .2s, transform .2s; }
.pcf-card:hover { border-color:var(--green); transform:translateY(-3px); }
.pcf-icon { width:44px; height:44px; border-radius:10px; background:linear-gradient(135deg,#e8f5ee,#d1f0e0); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.pcf-icon svg { width:22px; height:22px; fill:var(--green); }
.pcf-card h4 { font-family: var(--font-display); font-size:.92rem; font-weight:800; color:var(--navy); margin-bottom:7px; }
.pcf-card p { font-size:.84rem; color:var(--gray-600); line-height:1.6; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--navy); padding: 88px 5%; position:relative; overflow:hidden; }
.why-section::before { content:''; position:absolute; right:-100px; bottom:-100px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(45,194,107,.08) 0%,transparent 70%); }
.why-section::after { content:''; position:absolute; left:-60px; top:-60px; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(14,127,110,.1) 0%,transparent 70%); }
.why-inner { max-width:1200px; margin:0 auto; position:relative; z-index:2; }
.why-header { text-align:center; margin-bottom:56px; }
.why-header .section-title { color:white; }
.why-header .section-sub { color:rgba(255,255,255,.5); margin: 0 auto; text-align: center; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.why-card { background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:32px 26px; transition: background .2s, border-color .2s; }
.why-card:hover { background:rgba(255,255,255,.08); border-color:rgba(45,194,107,.3); }
.why-num { font-size:.68rem; font-weight:700; letter-spacing: 0; text-transform:uppercase; color:var(--green3); margin-bottom:16px; }
.why-card h3 { font-family: var(--font-display); font-size:1.08rem; font-weight:800; color:white; margin-bottom:10px; }
.why-card p { font-size:.9rem; color:rgba(255,255,255,.55); line-height:1.7; }
.why-icon { width:48px; height:48px; border-radius:12px; background:rgba(45,194,107,.12); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.why-icon svg { width:24px; height:24px; fill:var(--green3); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--green); padding: 48px 5%; }
.stats-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(5,1fr); gap:0; }
.stat-item { text-align:center; padding:0 20px; border-right:1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right:none; }
.stat-item .n { font-family: var(--font-display); font-size:2.5rem; font-weight:900; color:white; letter-spacing: 0; line-height:1; }
.stat-item .l { font-size:.72rem; font-weight:600; letter-spacing: 0; text-transform:uppercase; color:rgba(255,255,255,.65); margin-top:6px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--gray-50); padding: 88px 5%; }
.process-inner { max-width:1100px; margin:0 auto; }
.process-header { text-align:center; margin-bottom:56px; }
.process-steps { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; }
.process-steps::before { content:''; position:absolute; top:27px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,var(--green),var(--teal)); z-index:0; }
.process-step { text-align:center; padding:0 16px; position:relative; z-index:1; }
.ps-circle { width:56px; height:56px; border-radius:50%; background:white; border:3px solid var(--green); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; box-shadow:0 0 0 6px var(--gray-50); }
.ps-circle svg { width:24px; height:24px; fill:var(--green); }
.process-step h4 { font-family: var(--font-display); font-size:.92rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.process-step p { font-size:.82rem; color:var(--gray-600); line-height:1.55; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: white; padding: 88px 5%; }
.testimonials-inner { max-width:1100px; margin:0 auto; }
.testimonials-header { text-align:center; margin-bottom:52px; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card { background:var(--gray-50); border:1.5px solid var(--gray-200); border-radius:16px; padding:28px 24px; transition:border-color .2s, box-shadow .2s; }
.testi-card:hover { border-color:var(--green); box-shadow:0 8px 28px rgba(26,122,74,.08); }
.testi-stars { display:flex; gap:3px; margin-bottom:14px; }
.testi-stars svg { width:16px; height:16px; fill:#f59e0b; }
.testi-card p { font-size:.95rem; color:var(--gray-600); line-height:1.75; font-style:italic; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--navy),var(--teal)); display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-size:.88rem; font-weight:800; color:white; flex-shrink:0; }
.testi-name { font-family: var(--font-display); font-size:.9rem; font-weight:700; color:var(--navy); }
.testi-role { font-size:.76rem; color:var(--gray-400); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(120deg, var(--navy) 0%, #0e4a3a 50%, #0d5c47 100%);
  padding: 80px 5%; text-align:center; position:relative; overflow:hidden;
}
.cta-section::before { content:''; position:absolute; left:50%; top:-120px; transform:translateX(-50%); width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(45,194,107,.1) 0%,transparent 65%); }
.cta-inner { position:relative; z-index:2; max-width:700px; margin:0 auto; }
.cta-section h2 { font-family: var(--font-display); font-size:clamp(1.9rem,4vw,3rem); font-weight:900; color:white; letter-spacing: 0; margin-bottom:16px; }
.cta-section > .cta-inner > p { font-size:1.05rem; color:rgba(255,255,255,.6); line-height:1.75; margin-bottom:36px; }
.cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-cta-primary { background:var(--green); color:white; font-weight:700; font-size:.96rem; padding:15px 34px; border-radius:10px; text-decoration:none; transition:background .2s, transform .15s; display:inline-flex; align-items:center; gap:8px; }
.btn-cta-primary:hover { background:#155f39; transform:translateY(-2px); }
.btn-cta-primary svg { width:18px; height:18px; fill:white; }
.btn-cta-wa { background:rgba(255,255,255,.1); border:1.5px solid rgba(255,255,255,.2); color:white; font-weight:600; font-size:.96rem; padding:14px 26px; border-radius:10px; text-decoration:none; transition:background .2s; display:inline-flex; align-items:center; gap:8px; }
.btn-cta-wa:hover { background:rgba(255,255,255,.16); }
.btn-cta-wa svg { width:18px; height:18px; fill:#25d366; }

/* ============================================================
   FORMS (Get a Quote / Contact)
   ============================================================ */
.form-section { background: var(--gray-50); padding: 80px 5%; }
.form-card { background: white; border-radius: 20px; border: 1.5px solid var(--gray-200); max-width: 800px; margin: 0 auto; overflow: hidden; }
.form-card-head { background: linear-gradient(120deg, var(--navy) 0%, #0e5a44 100%); padding: 40px 48px; position: relative; overflow: hidden; }
.form-card-head::before { content:''; position:absolute; right:-40px; top:-40px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,.05); }
.form-card-head h2 { font-family: var(--font-display); font-size:1.6rem; font-weight:800; color:white; margin-bottom:8px; position:relative; z-index:2; }
.form-card-head p { font-size:1rem; color:rgba(255,255,255,.6); position:relative; z-index:2; }
.form-card-body { padding: 40px 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--gray-800); letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  padding: 12px 14px; font-size: .96rem;
  font-family: var(--font-body); color: var(--gray-800);
  background: var(--gray-50); transition: border-color .16s, box-shadow .16s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); background: white;
  box-shadow: 0 0 0 3px rgba(26,122,74,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238f9db5'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; cursor: pointer;
}
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.form-note { font-size: .78rem; color: var(--gray-400); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .si { width:64px; height:64px; background:#dcfce7; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.form-success .si svg { width:32px; height:32px; fill:var(--green); }
.form-success h4 { font-family: var(--font-display); font-size:1.2rem; font-weight:800; color:var(--navy); margin-bottom:8px; }
.form-success p { font-size:.96rem; color:var(--gray-600); line-height:1.7; }

/* ============================================================
   CONTACT PAGE LAYOUT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; }
.contact-info-panel { background: var(--navy2); padding: 56px 44px; }
.contact-info-panel h3 { font-family: var(--font-display); font-size:1.3rem; font-weight:800; color:white; margin-bottom:8px; }
.contact-info-panel > p { font-size:1rem; color:rgba(255,255,255,.5); margin-bottom:40px; line-height:1.7; }
.contact-info-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:30px; }
.ci-icon { width:44px; height:44px; background:rgba(255,255,255,.08); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-icon svg { width:20px; height:20px; fill:var(--green3); }
.ci-label { font-size:.68rem; font-weight:600; letter-spacing: 0; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:5px; }
.ci-value { font-size:.96rem; font-weight:600; color:white; line-height:1.5; }
.ci-value a { color:var(--green3); text-decoration:none; }
.ci-value a:hover { text-decoration:underline; }
.contact-social { display:flex; gap:10px; margin-top:40px; flex-wrap:wrap; }
.social-btn { display:flex; align-items:center; gap:7px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:8px; padding:10px 15px; font-size:.82rem; font-weight:600; color:white; text-decoration:none; transition:background .18s; }
.social-btn:hover { background:rgba(255,255,255,.15); }
.social-btn svg { width:16px; height:16px; fill:currentColor; }
.social-btn.wa { color:var(--green3); }
.map-wrapper { border-top:1px solid rgba(255,255,255,.08); margin-top:36px; border-radius:10px; overflow:hidden; }
.map-wrapper iframe { display:block; width:100%; height:220px; border:0; border-radius:10px; }
.contact-form-panel { padding: 56px 52px; background: white; }
.contact-form-panel h3 { font-family: var(--font-display); font-size:1.3rem; font-weight:800; color:var(--navy); margin-bottom:6px; }
.contact-form-panel > p { font-size:1rem; color:var(--gray-600); margin-bottom:32px; line-height:1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy); color: rgba(255,255,255,.35); padding: 56px 5% 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand-name { font-family: var(--font-display); font-size:1.3rem; font-weight:800; color:white; letter-spacing: 0; display:block; margin-bottom:4px; }
.footer-brand-name .accent { color:var(--green3); }
.footer-brand-divider { display:inline-block; width:1px; height:12px; background:rgba(255,255,255,.2); margin:0 5px; vertical-align:middle; }
.footer-brand-sub { font-size:.72rem; color:rgba(255,255,255,.3); text-transform:uppercase; letter-spacing: 0; margin-bottom:14px; }
.footer-brand > p { font-size:.85rem; line-height:1.7; color:rgba(255,255,255,.45); max-width:280px; margin-bottom:20px; }
.footer-contact-item { display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.footer-contact-item svg { width:14px; height:14px; fill:var(--green3); flex-shrink:0; }
.footer-contact-item a { font-size:.82rem; color:rgba(255,255,255,.55); text-decoration:none; }
.footer-contact-item a:hover { color:white; }
.footer-col h5 { font-size:.78rem; font-weight:700; letter-spacing: 0; text-transform:uppercase; color:rgba(255,255,255,.55); margin-bottom:16px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { font-size:.82rem; color:rgba(255,255,255,.4); text-decoration:none; transition:color .15s; }
.footer-col ul li a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:28px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.3); }
.footer-badges { display:flex; gap:8px; }
.footer-badge { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:6px; padding:5px 12px; font-size:.68rem; font-weight:600; color:rgba(255,255,255,.35); }

/* WhatsApp FAB */
.wa-fab { position:fixed; bottom:80px; right:28px; z-index:999; width:56px; height:56px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.4); transition:transform .2s; text-decoration:none; }
.wa-fab:hover { transform:scale(1.1); }
.wa-fab svg { width:28px; height:28px; fill:white; }

/* ============================================================
   PAGE-SPECIFIC: ABOUT
   ============================================================ */
.values-section { background: var(--gray-50); padding: 80px 5%; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1100px; margin:0 auto; }
.value-card { background:white; border:1.5px solid var(--gray-200); border-radius:14px; padding:28px 24px; transition:border-color .2s, box-shadow .2s; }
.value-card:hover { border-color:var(--green); box-shadow:0 8px 24px rgba(26,122,74,.08); }
.value-icon { width:48px; height:48px; border-radius:11px; background:linear-gradient(135deg,#e8f5ee,#d1f0e0); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.value-icon svg { width:24px; height:24px; fill:var(--green); }
.value-card h3 { font-family: var(--font-display); font-size:1rem; font-weight:800; color:var(--navy); margin-bottom:8px; }
.value-card p { font-size:.92rem; color:var(--gray-600); line-height:1.65; }

.team-section { background: white; padding: 80px 5%; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:900px; margin:0 auto; }
.team-card { background:var(--gray-50); border:1.5px solid var(--gray-200); border-radius:16px; padding:32px 24px; text-align:center; transition:border-color .2s; }
.team-card:hover { border-color:var(--green); }
.team-avatar { width:72px; height:72px; border-radius:50%; background:linear-gradient(135deg,var(--navy),var(--teal)); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-family:var(--font-display); font-size:1.2rem; font-weight:800; color:white; }
.team-name { font-family:var(--font-display); font-size:1rem; font-weight:800; color:var(--navy); margin-bottom:4px; }
.team-role { font-size:.8rem; color:var(--green); font-weight:600; margin-bottom:10px; }
.team-card p { font-size:.84rem; color:var(--gray-600); line-height:1.6; }

/* ============================================================
   PAGE-SPECIFIC: SERVICES
   ============================================================ */
.svc-detail-section { padding: 80px 5%; }
.svc-detail-section:nth-child(even) { background: var(--gray-50); }
.svc-detail-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; max-width:1100px; margin:0 auto; }
.svc-detail-inner.reverse { direction: rtl; }
.svc-detail-inner.reverse > * { direction: ltr; }
.svc-detail-content p { font-size:1.05rem; color:var(--gray-600); line-height:1.8; margin-bottom:18px; }
.svc-detail-list { list-style:none; margin-top:20px; }
.svc-detail-list li { display:flex; align-items:flex-start; gap:10px; font-size:.96rem; color:var(--gray-600); margin-bottom:12px; line-height:1.55; }
.svc-detail-list li svg { width:17px; height:17px; fill:var(--green); flex-shrink:0; margin-top:2px; }
.svc-visual { background:linear-gradient(135deg,var(--navy) 0%,#0e5a44 100%); border-radius:18px; padding:40px; position:relative; overflow:hidden; }
.svc-visual::before { content:''; position:absolute; right:-30px; top:-30px; width:180px; height:180px; border-radius:50%; background:rgba(255,255,255,.05); }
.svc-visual-label { font-size:.65rem; font-weight:700; letter-spacing: 0; text-transform:uppercase; color:var(--green3); margin-bottom:12px; position:relative; z-index:2; }
.svc-visual-title { font-family:var(--font-display); font-size:1.5rem; font-weight:800; color:white; letter-spacing: 0; margin-bottom:20px; line-height:1.2; position:relative; z-index:2; }
.svc-visual-pills { display:flex; flex-wrap:wrap; gap:8px; position:relative; z-index:2; }
.svc-visual-pill { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:6px; padding:7px 14px; font-size:.78rem; font-weight:600; color:rgba(255,255,255,.8); }

/* ============================================================
   PAGE-SPECIFIC: PRED CARE
   ============================================================ */
.predcare-hero-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; max-width:900px; margin: 36px auto 0; }
.pc-stat-card { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:12px; padding:20px; text-align:center; }
.pc-stat-card .n { font-family:var(--font-display); font-size:1.8rem; font-weight:900; color:white; letter-spacing: 0; }
.pc-stat-card .l { font-size:.68rem; font-weight:600; text-transform:uppercase; letter-spacing: 0; color:rgba(255,255,255,.45); margin-top:4px; }

.pricing-section { background: var(--gray-50); padding: 80px 5%; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1000px; margin:0 auto; }
.price-card { background:white; border:2px solid var(--gray-200); border-radius:18px; overflow:hidden; display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s; }
.price-card:hover { transform:translateY(-5px); box-shadow:0 18px 44px rgba(12,35,64,.1); }
.price-card.featured { border-color:var(--green); position:relative; }
.price-card.featured::before { content:'MOST POPULAR'; position:absolute; top:16px; right:-1px; background:var(--green); color:white; font-size:.6rem; font-weight:700; letter-spacing: 0; padding:5px 14px; border-radius:4px 0 0 4px; }
.price-head { padding:28px 24px 22px; text-align:center; border-bottom:1px solid var(--gray-100); }
.price-head h3 { font-family:var(--font-display); font-size:1.15rem; font-weight:800; color:var(--navy); margin-bottom:8px; }
.price-amount { font-family:var(--font-display); font-size:2.4rem; font-weight:900; color:var(--green); letter-spacing: 0; line-height:1; }
.price-gst { font-size:.74rem; color:var(--gray-400); margin-top:4px; margin-bottom:10px; }
.price-desc { font-size:.86rem; color:var(--gray-600); line-height:1.55; }
.price-body { padding:22px 24px; flex:1; }
.price-features { list-style:none; }
.price-features li { display:flex; align-items:flex-start; gap:9px; font-size:.88rem; color:var(--gray-600); margin-bottom:10px; line-height:1.4; }
.price-features li svg { width:15px; height:15px; fill:var(--green); flex-shrink:0; margin-top:2px; }
.price-foot { padding:18px 24px; border-top:1px solid var(--gray-100); }
.price-cta { display:block; text-align:center; background:var(--green); color:white; font-weight:700; font-size:.9rem; padding:13px; border-radius:10px; text-decoration:none; transition:background .18s; }
.price-cta:hover { background:#155f39; }
.price-note { font-size:.68rem; color:var(--gray-400); text-align:center; margin-top:8px; }

/* ============================================================
   QUOTE MODAL
   ============================================================ */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:500; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open { display:flex; }
.modal-box { background:white; border-radius:20px; width:100%; max-width:620px; max-height:90vh; overflow-y:auto; box-shadow:0 24px 80px rgba(0,0,0,.25); }
.modal-head { background:linear-gradient(120deg,var(--navy) 0%,#0e5a44 100%); padding:32px 40px; border-radius:20px 20px 0 0; position:relative; }
.modal-head h2 { font-family:var(--font-display); font-size:1.4rem; font-weight:800; color:white; margin-bottom:6px; }
.modal-head p { font-size:.92rem; color:rgba(255,255,255,.6); }
.modal-close { position:absolute; top:16px; right:16px; width:32px; height:32px; background:rgba(255,255,255,.1); border:none; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; color:white; font-size:1.1rem; transition:background .15s; }
.modal-close:hover { background:rgba(255,255,255,.2); }
.modal-body { padding:32px 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:40px; }
  .hero-right { display:none; }
  .about-inner { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .predcare-top { grid-template-columns:1fr; gap:36px; }
  .predcare-features { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .stats-inner { grid-template-columns:repeat(3,1fr); }
  .process-steps { grid-template-columns:1fr; }
  .process-steps::before { display:none; }
  .process-step { margin-bottom:20px; text-align:left; display:flex; align-items:flex-start; gap:16px; }
  .ps-circle { flex-shrink:0; margin:0; }
  .testi-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .contact-layout { grid-template-columns:1fr; }
  .svc-detail-inner { grid-template-columns:1fr; gap:36px; }
  .svc-detail-inner.reverse { direction:ltr; }
  .pricing-grid { grid-template-columns:1fr; max-width:480px; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .predcare-hero-stats { grid-template-columns:repeat(2,1fr); }
  .form-card-head, .form-card-body { padding:32px; }
  .contact-info-panel { padding:40px 28px; }
  .contact-form-panel { padding:40px 32px; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .services-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .predcare-features { grid-template-columns:1fr 1fr; }
  .values-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .predcare-hero-stats { grid-template-columns:1fr 1fr; }
  .modal-head, .modal-body { padding:24px; }
}
@media (max-width:480px) {
  .about-pillars { grid-template-columns:1fr 1fr; }
  .predcare-features { grid-template-columns:1fr; }
  .hero-stat-grid { grid-template-columns:1fr 1fr; }
  .trust-bar { gap:16px; }
  .pricing-grid { grid-template-columns:1fr; }
  .stats-inner { grid-template-columns:1fr 1fr; }
}


/* ═══════════════════════════════════════════
   MOBILE HAMBURGER MENU
═══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 6px;
  border-radius: 8px;
  transition: background .15s;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--gray-100); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.nav-hamburger span:nth-child(2) { margin: 5px 0; }
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; position: fixed; inset: 0; z-index: 999; }
.mobile-nav-backdrop { position: absolute; inset: 0; background: rgba(12,35,64,.5); backdrop-filter: blur(2px); }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0;
  width: min(320px, 85vw); height: 100%;
  background: white; box-shadow: -8px 0 40px rgba(12,35,64,.18);
  overflow-y: auto; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mobile-nav.is-open { display: block; }
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px 16px; border-bottom: 1px solid var(--gray-100); }
.mobile-nav-logo { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--navy); text-decoration: none; letter-spacing: 0; }
.mobile-nav-logo .accent { color: var(--green); }
.mobile-nav-close { width: 32px; height: 32px; border: none; background: var(--gray-100); border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray-600); font-size: 1.1rem; transition: background .15s; }
.mobile-nav-close:hover { background: var(--gray-200); }
.mobile-nav-body { flex: 1; padding: 12px 0 24px; }
.mobile-nav-body a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; font-size: .92rem; font-weight: 500; color: var(--gray-700); text-decoration: none; transition: background .12s, color .12s; border-left: 3px solid transparent; }
.mobile-nav-body a:hover, .mobile-nav-body a.active { background: rgba(26,155,108,.06); color: var(--green); border-left-color: var(--green); }
.mobile-nav-body a svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; opacity: .6; }
.mobile-nav-section { font-size: .65rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; color: var(--gray-400); padding: 16px 20px 6px; }
.mobile-nav-divider { height: 1px; background: var(--gray-100); margin: 8px 20px; }
.mobile-nav-cta { margin: 16px 20px 0; display: block; background: var(--green); color: white !important; text-align: center; padding: 13px 20px !important; border-radius: 10px !important; font-weight: 700 !important; font-size: .9rem !important; border-left: none !important; }
.mobile-nav-cta:hover { background: #155f39 !important; color: white !important; }
.mobile-nav-wa { margin: 10px 20px 0; display: block; background: #25d366; color: white !important; text-align: center; padding: 12px 20px !important; border-radius: 10px !important; font-weight: 600 !important; font-size: .88rem !important; border-left: none !important; }
.mobile-nav-wa:hover { background: #1db954 !important; }

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--navy); color: white; border: none; border-radius: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(12,35,64,.3); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s, visibility .25s, transform .25s, background .15s; z-index: 900; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green); box-shadow: 0 6px 20px rgba(26,155,108,.35); }
.back-to-top svg { width: 20px; height: 20px; fill: white; }

/* ═══════════════════════════════════════════
   MOBILE — hamburger show + grid collapses only
   (no section padding overrides — originals preserved)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  nav { padding: 0 20px; }
  /* Grid collapses */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr 1fr; gap: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-detail-inner { grid-template-columns: 1fr !important; }
  .svc-detail-inner.reverse { direction: ltr !important; }
  .predcare-top { grid-template-columns: 1fr; gap: 28px; }
  .predcare-features { grid-template-columns: 1fr 1fr; }
  .predcare-hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; margin-bottom: 20px; }
  .ps-circle { flex-shrink: 0; margin: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-badges { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-panel { padding: 28px 20px; }
  .contact-form-panel { padding: 28px 20px; }
  .form-card-head, .form-card-body { padding: 24px 20px; }
  .modal-head, .modal-body { padding: 20px 16px; }
  .modal-inner { margin: 20px; width: calc(100% - 40px); max-height: calc(100vh - 40px); }
  /* predcare-themes grids */
  .packages-grid { grid-template-columns: 1fr !important; max-width: 480px; margin-left: auto; margin-right: auto; }
  .themes-grid { grid-template-columns: 1fr !important; }
  .feat-main-grid, .feat-doctor-grid { grid-template-columns: 1fr 1fr !important; }
  .compare-table-wrap { font-size: .78rem; }
  .combo-banner { margin: 0 0 48px; padding: 28px 20px; }
  .combo-top { flex-direction: column; gap: 20px; }
  .combo-inclusions { grid-template-columns: 1fr 1fr; }
  .combo-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .combo-actions { flex-direction: column; width: 100%; }
  .banner-btn, .banner-btn-wa { text-align: center; }
  .addons-strip { flex-direction: column; padding: 24px 20px; gap: 20px; margin: 0 0 48px; }
  .addons-items { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .trust-bar { flex-wrap: wrap; gap: 10px; justify-content: center; }
}

@media (max-width: 480px) {
  .predcare-features { grid-template-columns: 1fr; }
  .feat-main-grid, .feat-doctor-grid { grid-template-columns: 1fr !important; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .addons-items { flex-direction: column; align-items: center; }
  .back-to-top { bottom: 16px; right: 16px; }
  .combo-inclusions { grid-template-columns: 1fr; }
}

/* ============================================================
   ADD-ONS GRID
   ============================================================ */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.addon-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.addon-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 28px rgba(26,122,74,.1);
  transform: translateY(-3px);
}
.addon-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(26,122,74,.12) 0%, rgba(14,127,110,.1) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.addon-icon svg { width: 20px; height: 20px; fill: var(--green); }
.addon-body { flex: 1; }
.addon-body h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.addon-body p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.addon-cta a {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  gap: 4px;
  transition: color .15s;
}
.addon-cta a:hover { color: var(--teal); }
.addon-cta a::after { content: ' →'; }
@media (max-width: 900px) {
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .addon-grid { grid-template-columns: 1fr; }
}
