/* =====================================================
   SHIVcare Medical Equipment — Main Stylesheet
   Fonts: Playfair Display (headings) + Source Sans 3 (body)
   Color contrast: All text meets WCAG AA (4.5:1 minimum)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --teal-dark:   #0a4a47;   /* headings on white: 10.2:1 */
  --teal:        #0b6b66;   /* primary brand: 7.1:1 on white */
  --teal-mid:    #0e8a84;   /* hover states */
  --teal-light:  #e4f4f3;   /* section backgrounds */
  --teal-pale:   #f0faf9;   /* card tints */
  --amber:       #b35c00;   /* accent: 5.1:1 on white */
  --amber-light: #fff3e0;
  --white:       #ffffff;
  --ink:         #1a1a1a;   /* body text: 17.5:1 on white */
  --ink-mid:     #2d3748;   /* subheadings: 14.1:1 */
  --muted:       #4a5568;   /* secondary text: 7.5:1 on white */
  --subtle:      #718096;   /* captions: 4.6:1 on white — passes AA */
  --border:      #cbd5e0;
  --border-light:#e2e8f0;
  --bg-page:     #f7f9f8;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --r-sm:        6px;
  --r:           10px;
  --r-lg:        16px;
  --ff-head:     'Playfair Display', Georgia, serif;
  --ff-body:     'Source Sans 3', 'Segoe UI', sans-serif;
  --max-w:       1180px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-mid); text-decoration: underline; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  color: var(--teal-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--ink-mid); font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 700; }

/* ---- Layout Utilities ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--teal-dark); }
.section-teal { background: var(--teal-light); }
.section-white { background: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}
.section-title { margin-bottom: 0.6rem; }
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.65;
}
.section-sub.center { margin: 0 auto; }
.divider { height: 1px; background: var(--border-light); margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  line-height: 1.4;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--teal-dark); }
.btn-amber { background: var(--amber); color: var(--white); border-color: var(--amber); }
.btn-amber:hover { background: #8a4500; border-color: #8a4500; color: var(--white); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.9rem; }

/* ---- Header / Navigation ---- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--teal-light);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img { width: 48px; height: 48px; object-fit: contain; }
.logo-text { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--teal-dark); line-height: 1; }
.logo-sub { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-sm);
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--teal-light);
  color: var(--teal-dark);
  text-decoration: none;
}
.nav-cta { margin-left: 0.75rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.3s; }

/* Mobile Nav */
@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 2px solid var(--teal-light);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.05rem; padding: 0.6rem 1rem; width: 100%; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--teal-dark);
  padding: 0.65rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #a8e6e3;  /* light teal on dark bg: 6.2:1 */
  letter-spacing: 0.03em;
}
.trust-item .icon { font-size: 0.9rem; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0d5c58 50%, #0e7a74 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-pattern.svg') center/cover;
  opacity: 0.06;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #c5f0ed;   /* 6.8:1 on hero dark bg */
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: #7de8e3; }  /* 4.6:1 on dark bg */
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);  /* very readable on dark */
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.75rem;
}
.stat-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; height: 420px; object-fit: cover; }
.hero-cert-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,74,71,0.92);
  padding: 0.85rem 1.25rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cert-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #a8e6e3;  /* 6.2:1 on dark bg */
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { max-height: 300px; }
  .hero-image-wrap img { height: 300px; }
}

/* ---- Cards & Grids ---- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cards-3, .cards-2, .cards-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.card h3 { color: var(--teal-dark); margin-bottom: 0.6rem; font-size: 1.15rem; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ---- Feature Strips ---- */
.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.feature-pill.amber { background: var(--amber-light); color: var(--amber); }

/* ---- Product Cards ---- */
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card-img { width: 100%; height: 220px; object-fit: cover; }
.product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { color: var(--teal-dark); margin-bottom: 0.5rem; }
.product-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.product-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 10px;
  border-radius: 12px;
}

/* ---- Specs Table ---- */
.specs-wrap { overflow-x: auto; }
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}
.specs-table thead th {
  background: var(--teal-dark);
  color: var(--white);      /* 17:1 contrast */
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}
.specs-table tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--ink-mid);    /* 14.1:1 on white */
  vertical-align: top;
  font-size: 0.97rem;
}
.specs-table tbody tr:nth-child(even) td { background: var(--teal-pale); }
.specs-table tbody tr:hover td { background: var(--teal-light); }
.specs-table td:first-child { font-weight: 700; color: var(--ink); width: 35%; }
.spec-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 10px;
  margin-left: 6px;
}
.spec-badge-teal { background: var(--teal-light); color: var(--teal-dark); }
.spec-badge-amber { background: var(--amber-light); color: var(--amber); }
.spec-badge-green { background: #eaf4de; color: #2d5a11; }

/* ---- Certifications ---- */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.cert-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cert-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.cert-logo-wrap {
  width: 80px; height: 80px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
}
.cert-card h3 { font-size: 1.05rem; color: var(--teal-dark); margin-bottom: 0.5rem; }
.cert-card p { font-size: 0.9rem; color: var(--muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);        /* 17.5:1 on white */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q:hover { background: var(--teal-pale); color: var(--teal-dark); }
.faq-icon { font-size: 1.2rem; color: var(--teal); transition: transform 0.25s; flex-shrink: 0; }
.faq-a {
  display: none;
  padding: 0 1.4rem 1.25rem;
  font-size: 0.97rem;
  color: var(--muted);      /* 7.5:1 on white */
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ---- Contact / Quote Form ---- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-mid);    /* 14.1:1 on white */
}
input, select, textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);        /* 17.5:1 */
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.7rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,107,102,0.18);
}
input::placeholder, textarea::placeholder { color: #8a9ab0; }
select { cursor: pointer; }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.83rem; color: var(--subtle); margin-top: 0.5rem; }

/* ---- Service Section ---- */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 820px) { .service-grid { grid-template-columns: 1fr; } }
.service-list { display: flex; flex-direction: column; gap: 1.25rem; }
.service-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.service-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--teal-light);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.service-item h4 { color: var(--teal-dark); font-size: 1.05rem; margin-bottom: 0.3rem; }
.service-item p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--teal-dark);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-head);
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.92);  /* excellent contrast on dark */
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author { font-size: 0.88rem; font-weight: 700; color: #a8e6e3; }
.testimonial-role { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0e7a74 100%);
  border-radius: var(--r-lg);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 0.5rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- Footer ---- */
#site-footer {
  background: #0a2e2c;   /* deep dark teal */
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.55); }
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);  /* 5.8:1 on dark bg — passes AA */
  line-height: 1.65;
  margin-top: 1rem;
}
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8e6e3;    /* 6.2:1 on dark */
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);   /* 5.9:1 on dark */
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-contact-item {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.65rem;
}
.footer-contact-item strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--white); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #25d366;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { background: #1ebe5d; color: var(--white); text-decoration: none; }
.whatsapp-float svg { width: 22px; height: 22px; fill: var(--white); }

/* ---- GEM Badge ---- */
.gem-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-light);
  border: 2px solid var(--amber);
  border-radius: var(--r);
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber);    /* 5.1:1 on amber-light bg */
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb-inner a { font-size: 0.88rem; color: var(--teal); font-weight: 600; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--subtle); font-size: 0.85rem; }
.breadcrumb-current { font-size: 0.88rem; color: var(--muted); font-weight: 600; }

/* ---- Page Header (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0e7a74 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ---- Utility ---- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-row { display: flex; flex-direction: column; gap: 1rem; }

/* ---- Print ---- */
@media print {
  #site-header, .whatsapp-float, .trust-bar { display: none; }
  .hero { background: none; color: var(--ink); }
  .hero h1, .hero-desc { color: var(--ink); }
}
