/* =========================================================================
   assets/css/style.css
   -------------------------------------------------------------------------
   ONE stylesheet for the entire public website (as requested).
   Organised into clearly commented sections so it stays easy to manage:

     1. Design tokens (CSS variables)
     2. Reset & base typography
     3. Layout utilities
     4. Buttons & tags
     5. Navbar
     6. Hero
     7. Ticker
     8. Sections: USP / Services / Stories / Response time
     9. Forms (inquiry / subscribe)
    10. Footer
    11. Notification toast
    12. Scroll-reveal animation helper
    13. Responsive breakpoints
   ========================================================================= */

/* ---------- 1. DESIGN TOKENS -------------------------------------------- */
:root {
  --teal:        #009E8C;
  --teal-dark:   #007a6c;
  --teal-mid:    #00b5a0;
  --teal-light:  #33c9b5;
  --teal-pale:   #e0f5f2;
  --red:         #CC2222;
  --red-soft:    #e6433a;
  --white:       #ffffff;
  --body-bg:     #f5faf9;
  --text-dark:   #0f2622;
  --text-body:   #33534d;
  --text-muted:  #6d8c87;
  --border-soft: rgba(0,158,140,0.18);
  --shadow-soft: 0 8px 30px rgba(0,60,54,0.08);
  --shadow-card: 0 16px 44px rgba(0,60,54,0.1);
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   10px;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- 2. RESET & BASE TYPOGRAPHY ---------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h1 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.2vw, 40px); }
h3 { font-size: clamp(19px, 2vw, 24px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p  { color: var(--text-body); }
a  { color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--teal); font-weight: 800; }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }

/* ---------- 3. LAYOUT UTILITIES ----------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.tag::before { content: ''; width: 22px; height: 2px; background: var(--teal); border-radius: 2px; }

.section-intro { max-width: 560px; margin: 0 auto 48px; text-align: center; }
.section-intro p { font-size: 15px; margin-top: 12px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-soft), transparent);
  margin: 0 auto;
  max-width: 1200px;
}

/* ---------- 4. BUTTONS & TAGS ------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.3px; text-decoration: none; cursor: pointer;
  border: none; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-mid)); color: var(--white); box-shadow: 0 6px 20px rgba(0,158,140,0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,158,140,0.4); }
.btn-red { background: linear-gradient(135deg, var(--red), var(--red-soft)); color: var(--white); box-shadow: 0 6px 20px rgba(204,34,34,0.28); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(204,34,34,0.36); }
.btn-ghost { background: var(--white); color: var(--teal-dark); border: 1.5px solid var(--border-soft); }
.btn-ghost:hover { border-color: var(--teal); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--teal-dark); box-shadow: var(--shadow-soft); }
.btn-white:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-block { width: 100%; }

/* ---------- 5. NAVBAR ---------------------------------------------------- */
.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.nav-logo-text { font-weight: 800; color: var(--text-dark); font-size: 16px; line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 1px; color: var(--teal); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; text-decoration: none; color: var(--text-dark); position: relative; padding: 6px 0; transition: color 0.2s; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--teal); border-radius: 2px; transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; }

/* ---------- 6. HERO ------------------------------------------------------- */
.hero { padding: 64px 0 88px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -140px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,178,160,0.14), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal);
  padding: 8px 16px; border-radius: 50px; background: rgba(0,158,140,0.1);
  border: 1px solid rgba(0,158,140,0.2); margin-bottom: 20px;
}
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.4); } }
.hero h1 { margin-bottom: 18px; }
.hero-sub { font-size: 17px; line-height: 1.75; max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stat { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 14px 20px; box-shadow: var(--shadow-soft); min-width: 96px; text-align: center; }
.hero-stat b { display: block; font-size: 22px; color: var(--teal-dark); font-weight: 800; }
.hero-stat span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; }
.hero-trust { display: flex; align-items: center; gap: 18px; padding: 16px 22px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--border-soft); box-shadow: var(--shadow-soft); }
.trust-faces { display: flex; }
.trust-face { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--white); background: linear-gradient(135deg, var(--teal), var(--teal-light)); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--white); font-weight: 700; margin-left: -9px; }
.trust-face:first-child { margin-left: 0; }
.trust-text strong { display: block; font-size: 13px; color: var(--text-dark); }
.trust-text span { font-size: 11.5px; color: var(--text-muted); }
.trust-rating { margin-left: auto; text-align: right; }
.trust-rating .stars { color: #f5b000; font-size: 13px; }
.trust-rating span { font-size: 11px; color: var(--text-muted); display: block; }

/* Hero inquiry form panel */
.hero-panel { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); border: 1px solid var(--border-soft); }
.hero-panel h3 { margin-bottom: 4px; }
.hero-panel .panel-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-soft);
  font-family: var(--font-body); font-size: 14px; color: var(--text-dark); background: var(--body-bg);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,158,140,0.12); background: var(--white);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 11.5px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-msg { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600; margin-bottom: 16px; display: none; }
.form-msg.success { background: #e5f7f2; color: #0d7d5f; border: 1px solid #b7e6d5; }
.form-msg.error { background: #fdecec; color: #b3261e; border: 1px solid #f5c2c2; }
.form-msg.show { display: block; }

/* ---------- 7. TICKER ----------------------------------------------------- */
.ticker { background: var(--teal-dark); overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; gap: 48px; white-space: nowrap; animation: ticker-scroll 32s linear infinite; width: max-content; }
.ticker-item { color: rgba(255,255,255,0.92); font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px; display: flex; align-items: center; gap: 10px; }
.ticker-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--white); opacity: 0.7; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 8. USP / SERVICES / STORIES / RESPONSE ----------------------- */
.usp-card, .service-card, .story-card {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-soft); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.usp-card:hover, .service-card:hover, .story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.usp-icon, .service-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.usp-icon.red, .service-icon { background: linear-gradient(135deg, var(--red), var(--red-soft)); }
.usp-icon.teal { background: linear-gradient(135deg, var(--teal), var(--teal-mid)); }
.usp-card h3, .service-card h3 { margin-bottom: 10px; }
.usp-card p, .service-card p { font-size: 14.5px; line-height: 1.75; }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-price { margin-top: auto; padding-top: 18px; font-weight: 700; color: var(--teal-dark); font-size: 14px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: 13.5px; color: var(--teal); text-decoration: none; }
.service-link:hover { text-decoration: underline; }

.story-card { position: relative; }
.story-stars { color: #f5b000; font-size: 13px; margin-bottom: 12px; }
.story-quote { font-size: 16px; font-weight: 600; color: var(--text-dark); line-height: 1.6; margin-bottom: 20px; }
.story-author { display: flex; align-items: center; gap: 12px; }
.story-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 14px; }
.story-author-info h5 { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.story-author-info p { font-size: 11.5px; color: var(--text-muted); }

.response-steps { list-style: none; margin-top: 10px; }
.response-step { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border-soft); }
.response-step:last-child { border-bottom: none; }
.step-time { min-width: 58px; font-weight: 800; color: var(--teal); font-size: 20px; }
.step-info h5 { font-size: 14.5px; margin-bottom: 3px; }
.step-info p { font-size: 13.5px; }

.stat-block { text-align: center; background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 24px 16px; box-shadow: var(--shadow-soft); }
.stat-block b { display: block; font-size: 28px; color: var(--teal-dark); font-weight: 800; }
.stat-block span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ---------- 9. PAGE HERO (inner pages) ------------------------------------ */
.page-hero { padding: 64px 0 56px; background: linear-gradient(160deg, var(--teal-pale), #eef8f6); text-align: center; }
.page-hero p { max-width: 560px; margin: 14px auto 0; font-size: 15.5px; }

/* Value / job / partner-step cards reuse .usp-card styling */
.value-grid, .job-list, .partner-steps { display: grid; gap: 24px; }
.job-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; box-shadow: var(--shadow-soft); }
.job-card h4 { margin-bottom: 4px; }
.job-meta { font-size: 12.5px; color: var(--text-muted); }
.job-meta span { margin-right: 14px; }

.partner-step { display: flex; gap: 18px; align-items: flex-start; }
.partner-step .step-num { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-mid)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }

/* ---------- 10. SUBSCRIBE / NEWSLETTER ------------------------------------ */
.subscribe-card { background: linear-gradient(150deg, rgba(0,158,140,0.08), var(--white)); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-soft); }
.subscribe-card h3 { margin-bottom: 8px; }
.subscribe-card p { font-size: 14px; margin-bottom: 20px; }
.subscribe-row { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe-row input { flex: 1; min-width: 200px; padding: 13px 18px; border-radius: 50px; border: 1.5px solid var(--border-soft); font-family: var(--font-body); font-size: 14px; outline: none; }
.subscribe-row input:focus { border-color: var(--teal); }

/* ---------- 11. FOOTER (light theme) ---------------------------------- */
.site-footer {
  background: linear-gradient(160deg, #eaf6f4, #f6fbfa);
  color: var(--text-body);
  padding: 64px 0 24px;
  margin-top: 40px;
  border-top: 1px solid var(--border-soft);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--border-soft); }
.footer-col h5 { color: var(--teal-dark); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; font-weight: 800; }
.footer-col p { color: var(--text-muted); font-size: 13.5px; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-body); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--teal-dark); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; color: var(--teal-dark); text-decoration: none; font-size: 13px; transition: background 0.2s, color 0.2s; box-shadow: var(--shadow-soft); }
.social-btn:hover { background: var(--teal); color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 22px; font-size: 12.5px; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: var(--teal-dark); }

/* ---------- 12. NOTIFICATION TOAST ----------------------------------------- */
.toast {
  position: fixed; top: 20px; right: 20px; z-index: 3000;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  border-left: 4px solid var(--teal); transform: translateX(140%); transition: transform 0.35s ease;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 20px; }
.toast h5 { font-size: 13.5px; margin-bottom: 2px; }
.toast p { font-size: 12.5px; color: var(--text-muted); }

/* ---------- 12b. HOSPITAL NETWORK -------------------------------------- */
.hospital-card {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-soft); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hospital-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.hospital-pill {
  display: inline-block; padding: 5px 14px; border-radius: 50px; background: var(--teal-pale);
  color: var(--teal-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hospital-card h4 { font-size: 18px; margin-bottom: 6px; }
.hospital-location { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.hospital-stats { display: flex; justify-content: space-between; border-top: 1px solid var(--border-soft); padding-top: 14px; gap: 8px; }
.hospital-stat { text-align: left; }
.hospital-stat .lbl { display: block; font-size: 10.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
.hospital-stat .val { font-weight: 800; color: var(--teal-dark); font-size: 15px; }

/* ---------- 12c. TESTIMONIALS (featured + regular) ---------------------- */
.testimonial-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 24px; align-items: stretch; }
.testimonial-card {
  border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border-soft); box-shadow: var(--shadow-soft);
}
.testimonial-card.featured {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal));
  color: rgba(255,255,255,0.95); border: none;
}
.testimonial-category { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.testimonial-card.featured .testimonial-category { color: rgba(255,255,255,0.75); }
.testimonial-stars { color: #f5b000; font-size: 14px; margin-bottom: 14px; }
.testimonial-quote { font-size: 16px; font-weight: 500; line-height: 1.65; font-style: italic; margin-bottom: 22px; flex: 1; }
.testimonial-card.featured .testimonial-quote { color: #fff; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0; background: var(--teal-pale); color: var(--teal-dark);
  border: 2px solid var(--white); box-shadow: var(--shadow-soft);
}
.testimonial-card.featured .testimonial-avatar { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); }
.testimonial-author-info strong { display: block; font-size: 13.5px; }
.testimonial-author-info span { font-size: 12px; color: var(--text-muted); }
.testimonial-card.featured .testimonial-author-info span { color: rgba(255,255,255,0.7); }
.testimonial-saved { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; align-items: flex-end; }
.testimonial-card.featured .testimonial-saved { border-top-color: rgba(255,255,255,0.2); }
.testimonial-saved .lbl { font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); }
.testimonial-card.featured .testimonial-saved .lbl { color: rgba(255,255,255,0.6); }
.testimonial-saved .amt { font-size: 22px; font-weight: 800; color: var(--teal-dark); }
.testimonial-card.featured .testimonial-saved .amt { color: #fff; }
.testimonial-saved .note { font-size: 11px; color: rgba(255,255,255,0.55); text-align: right; }

/* ---------- 12d. OUR PROMISE (response-time timeline + circles) --------- */
.promise-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.promise-steps-list { list-style: none; margin-top: 28px; }
.promise-step-row { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--border-soft); }
.promise-step-row:last-child { border-bottom: none; }
.promise-time { min-width: 64px; font-weight: 800; color: var(--teal); font-size: 22px; font-style: italic; }
.promise-step-row h5 { font-size: 15.5px; margin-bottom: 4px; }
.promise-step-row p { font-size: 13.5px; }
.promise-circles { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }
.promise-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(0,158,140,0.18); }
.promise-ring.r1 { width: 340px; height: 340px; }
.promise-ring.r2 { width: 250px; height: 250px; }
.promise-ring.r3 { width: 165px; height: 165px; }
.promise-badge {
  position: relative; z-index: 2; width: 150px; height: 150px; border-radius: 50%;
  background: var(--white); border: 2px solid rgba(0,158,140,0.3); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.promise-badge .val { font-size: 34px; font-weight: 800; color: var(--teal); font-style: italic; }
.promise-badge .lbl { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ---------- 12e. PARTNER PAGE: onboarding steps + benefits -------------- */
.onboarding-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; position: relative; }
.onboarding-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 24px 22px; position: relative; }
.onboarding-num { font-size: 30px; font-weight: 800; color: var(--border-soft); font-family: var(--font-body); margin-bottom: 10px; }
.onboarding-card h5 { font-size: 14.5px; margin-bottom: 6px; }
.onboarding-card p { font-size: 12.5px; line-height: 1.6; }
.onboarding-arrow { display: none; }
@media (min-width: 981px) {
  .onboarding-card:not(:last-child)::after {
    content: '→'; position: absolute; top: 24px; right: -20px; color: var(--border-soft); font-size: 18px; font-weight: 700; z-index: 1;
  }
}

.benefit-list { list-style: none; margin-top: 20px; }
.benefit-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { color: var(--teal); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.benefit-item p { font-size: 14px; line-height: 1.6; }
.benefit-item strong { color: var(--text-dark); }

.stat-highlight { background: linear-gradient(150deg, var(--teal-dark), var(--teal)); color: #fff; border-radius: var(--radius-lg); padding: 30px 32px; margin-top: 24px; }
.stat-highlight .pre { font-style: italic; font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.stat-highlight .big { font-size: 40px; font-weight: 800; }
.stat-highlight .big sup { font-size: 20px; }
.stat-highlight .post { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 6px; line-height: 1.6; }

/* Expanded application form grid (Partner page) */
.form-field-inline { display: flex; flex-direction: column; }

/* ---------- 12g. WELLNESS TOURISM PACKAGES ------------------------------ */
.wellness-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wellness-card {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.wellness-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.wellness-cover { width: 100%; height: 200px; object-fit: cover; background: var(--teal-pale); display: block; }
.wellness-cover-placeholder {
  width: 100%; height: 200px; background: linear-gradient(135deg, var(--teal-pale), #e6f4f2);
  display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--teal);
}
.wellness-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.wellness-body h3 { font-size: 18px; margin-bottom: 10px; }
.wellness-body p.desc { font-size: 13.5px; line-height: 1.7; color: var(--text-body); margin-bottom: 16px; flex: 1; }
.wellness-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: var(--text-muted); margin-bottom: 18px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.wellness-meta span { display: inline-flex; align-items: center; gap: 5px; }
.wellness-meta .rating { color: var(--text-dark); font-weight: 700; }
.wellness-meta .rating .star { color: #f5b000; }

/* ---------- 12f. LEGAL / STATIC CONTENT PAGES ---------------------------- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h3 { margin: 28px 0 10px; }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; line-height: 1.8; }

/* ---------- 13. SCROLL-REVEAL ANIMATION ------------------------------------ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .ticker-track, .pulse-dot { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- 14. RESPONSIVE -------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .testimonial-grid, .wellness-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-circles { min-height: 220px; }
  .onboarding-grid { grid-template-columns: repeat(2, 1fr); }
  .onboarding-card::after { display: none !important; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 20px 24px; gap: 18px; box-shadow: var(--shadow-card);
    border-top: 1px solid var(--border-soft);
  }
  .hamburger { display: flex; }
  .grid-3, .grid-4, .testimonial-grid, .wellness-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .onboarding-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-stats { gap: 8px; }
  .hero-stat { padding: 10px 14px; min-width: 78px; }
  .hero-panel { padding: 24px; }
}
