/* ============================================================
   HOMVED – Shared Stylesheet (index / about / for-doctors)
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --teal-primary: #37A3A5;
  --teal-dark: #2D8B8C;
  --teal-light: #EAF3F3;
  --teal-lighter: #f0f8f8;
  --green-check: #57CC98;
  --green-light: #D3F3E2;
  --green-lighter: #EFFAF5;
  --bg-white: #ffffff;
  --bg-light: #FAFCFD;
  --bg-dark: #225779;
  --bg-dark-light: #C8D7E4;
  --bg-dark-lighter: #E6EDF0;
  --bg-dark-deep: #1d4e6e;
  --text-dark: #3D3D3D;
  --text-mid: #656565;
  --text-muted: #525252;
  --border: #EFEFEF;
  --star-gold: #ffc300;
  --signin-border: #225779;
  --text-lighter: #EFEFEF;
  --text-light: #DCDCDC;
  --shadow-sm: 0 2px 8px rgba(33, 86, 121, .06);
  --shadow-md: 0 6px 24px rgba(33, 86, 121, .10);
  --shadow-lg: 0 16px 48px rgba(33, 86, 121, .14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  /* --font-main: 'Inter', sans-serif;
  --font-serif: 'Lora', serif; */
  --transition: all 0.25s ease;
}

/* ===================== */
/* HENRIETTE */
/* ===================== */
@font-face {
  font-family: 'Henriette';
  src: url('/static/fonts/Henriette-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Henriette';
  src: url('/static/fonts/Henriette-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Henriette';
  src: url('/static/fonts/Henriette-Medium.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ===================== */
/* SHARP SANS */
/* ===================== */
@font-face {
  font-family: 'Sharp Sans';
  src: url('/static/fonts/SharpSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sharp Sans';
  src: url('/static/fonts/SharpSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sharp Sans';
  src: url('/static/fonts/SharpSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sharp Sans';
  src: url('/static/fonts/SharpSans-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sharp Sans', Arial, sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utilities ── */
.section-pad {
  padding: 96px 0;
}

.bg-light {
  background: var(--bg-light);
}

.bg-dark-green {
  background: var(--bg-dark);
}

.section-title {
  font-family: 'Henriette', serif;
  font-weight: 400;
  font-size: 3rem;
  font-weight: 700;
  color: #225779;
  text-align: center;
  padding-bottom: 52px;
  letter-spacing: -.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #525252;
  text-align: center;
  margin-bottom: 52px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sharp Sans', Arial, sans-serif;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-dark);
  /* transform: translateY(-1px); */
  box-shadow: 0 6px 20px rgba(33, 86, 121, .32);
}

.btn-sm {
  padding: 9px 22px;
  font-size: .875rem;
}

.btn-lg {
  padding: 15px 38px;
  font-size: 1.05rem;
}

/* Enroll button (for-doctors specialty cards) */
.btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  margin-top: 20px;
  background: var(--teal-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-enroll:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(33, 86, 121, .3);
}

.enroll-note {
  font-size: .8rem;
  text-align: center;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero entrance ── */
.hero-inner>* {
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal .7s ease forwards;
}

.hero-inner>*:nth-child(1) {
  animation-delay: .1s;
}

.hero-inner>*:nth-child(2) {
  animation-delay: .25s;
}

.hero-inner>*:nth-child(3) {
  animation-delay: .4s;
}

.hero-inner>*:nth-child(4) {
  animation-delay: .55s;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── About hero entrance ── */
.about-hero-inner>* {
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal .7s ease forwards;
}

.about-hero-inner>*:nth-child(1) {
  animation-delay: .15s;
}

.about-hero-inner>*:nth-child(2) {
  animation-delay: .35s;
}

/* ── Nav link hover underline ── */
.nav-links a:not(.btn):not(.nav-signin) {
  position: relative;
}

.nav-links a:not(.btn):not(.nav-signin)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-primary);
  border-radius: 2px;
  transition: width .25s ease;
}

.nav-links a:not(.btn):not(.nav-signin):hover::after,
.nav-links a:not(.btn):not(.nav-signin).nav-active::after {
  width: 100%;
}

.fa-solid,
.fas {
  font-weight: 900;
  /* color: #37A3A5; */
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  width: 200px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--bg-dark);
}

.logo-icon {
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--teal-primary);
}

.nav-signin {
  color: var(--bg-dark) !important;
  border: 1.5px solid var(--signin-border);
  border-radius: 50px;
  padding: 7px 20px;
  transition: var(--transition) !important;
}

.nav-signin:hover {
  background: var(--border);
  box-shadow: 0 6px 20px rgba(33, 86, 121, .32);
  transition: ease-in-out;
}

.nav-links .btn-primary {
  background: var(--teal-primary);
  color: #fff;
  transition: var(--transition);
}

.nav-links .btn-primary:hover {
  background: var(--teal-dark);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO  (shared patients + doctors)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(159deg, rgba(87, 204, 152, 0.04) 0%, rgba(55, 163, 165, 0.06) 55%, rgba(34, 87, 121, 0.04) 100%);
  padding: 108px 0 120px;
  text-align: center;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.c1 {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(33, 86, 121, .09), transparent 70%);
}

.c2 {
  width: 380px;
  height: 380px;
  bottom: -90px;
  left: -90px;
  background: radial-gradient(circle, rgba(33, 86, 121, .08), transparent 70%);
}

.c3 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(54, 163, 165, .07), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-icon-leaf {
  /*background: var(--teal-light);*/
  width: 132px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-primary);
  font-size: 1.3rem;
}

.hero-title {
  font-family: 'Henriette', serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.18;
  letter-spacing: -.03em;
  color: var(--bg-dark);
}

/* .hero-title-teal { color: #155678; } */
.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-box {
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.how-it-works.bg-light .hiw-box {
  background: var(--teal-light);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.step-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  transition: var(--transition);
}

/* .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-primary); } */
/*.hiw-box .step-card { background: #fff; }
.how-it-works.bg-light .hiw-box .step-card { background: #fff; } */

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sn-1 {
  background: var(--teal-primary);
}

.sn-2 {
  background: var(--teal-primary);
}

.sn-3 {
  background: var(--teal-primary);
}

.step-card h3 {
  font-family: 'Henriette', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 1rem;
  color: var(--text-muted);
}

.step-connector {
  width: 52px;
  height: 3px;
  background: var(--teal-primary);
  margin-top: 50px;
  flex-shrink: 0;
  border-radius: 2px;
}

/* ============================================================
   BROWSE BY SPECIALTY / CHOOSE YOUR PRACTICE
   ============================================================ */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}

.specialty-card {
  background: linear-gradient(159deg, rgba(240, 253, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  padding: 30px;

}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.home-card {
  background: linear-gradient(159deg, rgba(239, 246, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.specialty-img {
  position: relative;
  height: 250px;
  width: 100%;
  object-fit: cover;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius-md);
}

/* .ayurveda-img {
  background: url('https://images.unsplash.com/photo-1611532736597-de2d4265fba3?w=640&auto=format&fit=crop') center/cover;
} */
/* .homeopathy-img {
  background: url('https://elements-resized.envatousercontent.com/envato-dam-assets-production/EVA/TRX/da/14/90/90/7b/v1_E10/E104BTQ4.jpg?w=1600&cf_fit=scale-down&mark-alpha=18&mark=https%3A%2F%2Felements-assets.envato.com%2Fstatic%2Fwatermark4.png&q=85&format=auto&s=38f9db3a0dd7d29d14049ada666d39e2ccd080d75e3176081f13b9cd9d5c6496') center/cover;
} */
.specialty-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 60, 80, .6) 0%, transparent 60%);
}

.specialty-icon-wrap {
  position: relative;
  z-index: 1;
  background: var(--green-light);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 25%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-check);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.home-icon {
  color: var(--bg-dark);
  background: var(--bg-dark-light);
}

.specialty-body {
  margin-bottom: 26px;
}

.specialty-body h3 {
  font-family: 'Henriette', serif;
  font-weight: 400;
  font-size: 1.875rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.specialty-tagline {
  font-size: .85rem;
  color: var(--teal-primary);
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 500;
}

.specialty-body p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 18px;
  line-height: 1.65;
}

.specialty-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.specialty-list li i {
  color: var(--green-check);
  font-size: .75rem;
  background: var(--green-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.speciality-list-color li i {
  color: var(--bg-dark);
  background: var(--bg-dark-light);
}

/* ============================================================
   WHY CHOOSE HOMVED
   ============================================================ */
.why-grid {
  display: grid;
  gap: 32px;
}

.why-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.why-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  /* border-color: var(--bg-dark); */
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--teal-light);
  color: #225779;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-card h4 {
  font-family: 'Henriette', serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 7px;
  color: var(--text-dark);
}

.why-card p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================================
   APP SECTION (patients + doctors)
   ============================================================ */
.app-section {
  background-color: #FAFCFD
}

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.app-inner-reverse {
  grid-template-columns: 1.1fr 1fr;
}

/* ── Phone mockup ── */
.app-phone {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 380px;
}

/* ── App content text ── */
.tag-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 12px;
  background: rgba(54, 163, 165, .14);
  padding: 4px 14px;
  border-radius: 50px;
}

.doctor-color {
  color: var(--bg-dark);
  background: var(--bg-dark-lighter);
}

.app-content h2 {
  font-family: 'Henriette', serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--bg-dark);
}

.app-content>p {
  color: #525252;
  font-size: 1.25rem;
  margin-bottom: 26px;
  line-height: 1.7;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.app-feat-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.app-features li>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-features li {
  font-family: 'Henriette', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--text-dark);
}

.app-features li span {
  font-family: 'Sharp Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
}

.download-label {
  font-size: .82rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-weight: 500;
}

.store-badges {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.store-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 11px;
  padding: 9px 16px;
  color: var(--text-light);
  font-size: .87rem;
  font-weight: 500;
  transition: var(--transition);
}

.store-badge:hover {
  background: rgba(0, 0, 0);
  border-color: rgba(255, 255, 255, .32);
}

.store-badge i {
  font-size: 1.4rem;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 1rem;
  color: var(--text-lighter);
}

.store-badge small {
  font-size: .8rem;
  color: var(--text-light);
}

/* ============================================================
   ARTICLES
   ============================================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.article-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-img {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  width: 100%;
}

/* .ayurveda-art-img {
  background-image: url('https://images.unsplash.com/photo-1628771065518-0d82f1938462?w=620&auto=format&fit=crop');
}
.homeopathy-art-img {
  background-image: url('https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?w=620&auto=format&fit=crop');
} */
.article-tag {
  top: 14px;
  left: 14px;
  /* background: var(--teal-primary);  */
  color: var(--text-dark);
  font-size: 1.2rem;
  font-family: 'Henriette', serif;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}

.article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 13px 18px;
  background: #fff;
  font-weight: 500;
  font-size: .88rem;
  color: var(--teal-primary);
  transition: var(--transition);
}

/* .article-link:hover { background: var(--teal-light); } */

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
  box-shadow: var(--shadow-md)
}

/* .testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); 
  /* border-color: var(--teal-primary); 
 } */
.stars {
  color: var(--star-gold);
  font-size: .82rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

blockquote {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.av-pm {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.av-rd {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.av-ak {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.av-ki {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.testimonial-author {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   HELP CENTER
   ============================================================ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.help-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
  cursor: pointer;
}

.help-card:hover {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.help-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-primary);
  font-size: 1.05rem;
  margin-bottom: 13px;
}

.help-card h4 {
  font-family: 'Henriette', serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
  color: #3D3D3D;
}

.help-card p {
  font-size: 14px;
  color: #525252;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, .75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 60px 24px 44px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: .87rem;
  color: #d3d3d3;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  color: #fff;
}

.footer-col h5 {
  font-family: 'Henriette', serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-lighter);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: .84rem;
  color: #C7C7C7;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
}

.footer-contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contact p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-contact i {
  color: var(--teal-primary);
  font-size: .87rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 26px 0 22px;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-disclaimer {
  font-size: .74rem;
  color: #d3d3d3;
  max-width: 780px;
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .05);
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .09);
}

.footer-badge i {
  color: var(--teal-primary);
}

.footer-copy {
  font-size: .77rem;
  color: rgba(255, 255, 255, .28);
}

.footer-home {
  background: #225f80;
  /* color: rgba(255, 255, 255, .86); */
  padding: 42px 0 30px;
}

.footer-home-top {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.footer-home-logo {
  width: 15%;
  /*width: min(270px, 56vw);*/
  height: auto;
  object-fit: contain;
}

.footer-home-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer-home-brand {
  max-width: 250px;
}

.footer-cert-card {
  display: flex;
  gap: 7px;
  margin-bottom: 26px;
}

.footer-cert-card img {
  width: 118px;
  height: 118px;
}

.footer-cert-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid #176f8e;
  color: #176f8e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: #faf7f1;
}

.footer-cert-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
  color: #176f8e;
}

.footer-cert-text {
  font-size: .8rem;
  letter-spacing: .06em;
}

.footer-cert-text span {
  font-size: .58rem;
  letter-spacing: .12em;
}

.footer-home .footer-tagline {
  font-size: 1.02rem;
  /* color: rgba(255, 255, 255, .88); */
  line-height: 1.45;
  margin-bottom: 28px;
  max-width: 275px;
}

.footer-home .social-links {
  gap: 14px;
}

.footer-home .social-links a {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  border: 0;
  color: #fff;
  font-size: 1.18rem;
}

.footer-home .social-links a:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.footer-home .footer-col h5 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 26px;
  letter-spacing: 0;
}

.footer-home .footer-col ul {
  gap: 14px;
}

.footer-home .footer-col ul li a {
  font-size: .85rem;
  color: #d3d3d3;
  line-height: 1.45;
}

.footer-home .footer-col ul li a:hover {
  color: #fff;
}

.footer-home-divider {
  height: 1px;
  background: rgba(255, 255, 255, .18);
  margin-top: 34px;
}

.footer-home-disclaimer-wrap {
  padding: 36px 24px 34px 24px;
}

.footer-home .footer-disclaimer {
  max-width: none;
  font-size: .98rem;
  line-height: 1.4;
  color: #d3d3d3;
}

.footer-home-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 34px;
}

.footer-home .footer-copy {
  order: 1;
  font-size: .8rem;
  color: #d3d3d3;
}

.footer-home .footer-badges {
  order: 2;
  gap: 14px;
}

.footer-home .footer-badge {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .88);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
}

.footer-home .footer-badge i {
  color: #fff;
  font-size: .8rem;
}

.footer-home-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero */
.about-hero {
  background: linear-gradient(160deg, #f0f6f6 0%, #f9fcfc 55%, #edf4f4 100%);
  padding: 100px 0 90px;
  text-align: center;
  /* border-bottom: 1px solid var(--border);   */
}

.about-hero-title {
  font-family: 'Henriette', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--bg-dark);
  margin-bottom: 16px;
}

.about-hero-line2 {
  display: block;
}

.about-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Why we built */
.about-why {
  background: #fff;
}

.about-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-why-text h2.about-section-title {
  font-family: 'Henriette', serif;
  font-weight: 700;
  font-size: 3rem;
  color: #225779;
  margin-bottom: 20px;
}

.about-why-text p {
  font-size: 1.125rem;
  color: #525252;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-callout {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--bg-dark) !important;
  font-style: italic;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
}

/* What is Homved */
.what-is-homved .section-pad {
  background-color: #FAFCFD;
}

.what-inner {
  margin: 0 auto;
  text-align: center;
}

.what-para {
  font-size: 1.25rem;
  color: #525252;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* What we offer */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offer-card {
  background: linear-gradient(159deg, rgba(240, 253, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  text-align: start;
  box-shadow: var(--shadow-md);
}

.offer-card-color {
  background: linear-gradient(159deg, rgba(239, 246, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

/* .offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-primary); } */
.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--green-light);
  color: var(--green-check);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.offer-icon-color {
  background: var(--bg-dark-light);
  color: var(--bg-dark);
}

.offer-card h4 {
  font-family: 'Henriette', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #3D3D3D;
}

.offer-card p {
  font-size: 1rem;
  color: #525252;
  line-height: 1.6;
}

/* Mission */
.mission-section {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
}

.mission-title {
  font-family: 'Henriette', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

.mission-text {
  font-size: 1.5rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Approach */

.approach-section .section-pad {
  background-color: #FAFCFD;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.approach-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  transition: var(--transition);
}

/* .approach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-primary); } */
.approach-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-lighter);
  color: var(--green-check);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.approach-icon-color {
  background: var(--bg-dark-lighter);
  color: var(--bg-dark);
}

.approach-card h4 {
  font-family: 'Henriette', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #3D3D3D;
}

.approach-card p {
  font-size: 1rem;
  color: #525252;
  line-height: 1.6;
}

/* CTA Banner */
.about-cta-banner {
  background: #FAFCFD;
  padding: 90px 0;
  text-align: center;
}

.about-cta-title {
  font-family: 'Henriette', serif;
  font-weight: 400;
  font-size: 60px;
  font-weight: 600;
  color: var(--bg-dark);
  line-height: 1.28;
}

/* ============================================================
   POLICY PAGE
   ============================================================ */
.policy-hero {
  background:
    radial-gradient(circle at top left, rgba(55,163,165,.16), transparent 34%),
    radial-gradient(circle at top right, rgba(34,87,121,.16), transparent 34%),
    linear-gradient(160deg,#f0f6f6 0%,#f9fcfc 55%,#edf4f4 100%);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}
.policy-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(55,163,165,.1);
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.policy-title {
  font-family: 'Henriette', serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.18;
  letter-spacing: -.03em;
  color: var(--bg-dark);
  margin-bottom: 16px;
}
.policy-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0 auto 28px;
}
.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.policy-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(34,87,121,.12);
  background: rgba(255,255,255,.75);
  color: var(--bg-dark);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.policy-chip:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.policy-shell {
  max-width: 980px;
  margin: 0 auto;
}
.policy-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.policy-intro-copy h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--text-dark);
  margin-bottom: 8px;
}
.policy-intro-copy p {
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.policy-open-all {
  flex-shrink: 0;
}
.policy-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policy-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.policy-card[open] {
  border-color: rgba(55,163,165,.35);
  box-shadow: var(--shadow-md);
}
.policy-card summary {
  list-style: none;
}
.policy-card summary::-webkit-details-marker {
  display: none;
}
.policy-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
}
.policy-summary:hover {
  background: rgba(240,248,248,.65);
}
.policy-summary-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.policy-summary-main h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
}
.policy-summary-main p {
  font-size: .88rem;
  color: var(--text-muted);
}
.policy-summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .95rem;
  color: var(--teal-primary);
  transition: transform .25s ease;
}
.policy-card[open] .policy-summary::after {
  transform: rotate(180deg);
}
.policy-panel {
  padding: 0 24px 24px;
}
.policy-status {
  display: none;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 4px 0 12px;
}
.policy-status.is-visible {
  display: block;
}
.policy-content {
  border-top: 1px solid rgba(33,86,121,.08);
  padding-top: 20px;
}
.policy-content > :first-child {
  margin-top: 0;
}
.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4 {
  color: var(--bg-dark);
  line-height: 1.35;
  margin: 28px 0 12px;
}
.policy-content h1 {
  font-size: 1.5rem;
}
.policy-content h2 {
  font-size: 1.2rem;
}
.policy-content h3,
.policy-content h4 {
  font-size: 1.05rem;
}
.policy-content p,
.policy-content li {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.78;
}
.policy-content p {
  margin-bottom: 14px;
}
.policy-content strong {
  color: var(--text-dark);
}
.policy-content a {
  color: var(--teal-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-content hr {
  border: 0;
  border-top: 1px solid rgba(33,86,121,.12);
  margin: 26px 0;
}
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px;
}
.policy-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.policy-marker {
  min-width: 24px;
  color: var(--bg-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .why-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* .app-inner, .app-inner-reverse { grid-template-columns: 1fr; gap: 44px; } */
  .app-inner-reverse .app-phone {
    order: -1;
  }

  .footer-home-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 56px;
  }

  .footer-home-brand {
    max-width: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width:768px) {
  .section-pad {
    padding: 60px 0;
  }

  .section-subtitle {
    margin-bottom: 36px;
  }

  .app-inner,
  .app-inner-reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* Navbar */
  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 22px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    align-items: flex-start;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Grids → 1 col */
  .specialty-grid,
  .articles-grid,
  .testimonials-grid,
  .offer-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .why-grid-5,
  .why-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps */
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .step-connector {
    width: 2px;
    height: 24px;
    margin: 0;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  /* About */
  .about-why-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-img-wrap img {
    height: 260px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 24px 32px;
  }

  .footer-home {
    padding: 34px 0 26px;
  }

  .footer-home-top {
    margin-bottom: 28px;
  }

  .footer-home-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-home .footer-col h5 {
    margin-bottom: 14px;
  }

  .footer-home-divider {
    margin-top: 26px;
  }

  .footer-home-disclaimer-wrap {
    padding: 26px;
  }

  .footer-home-bottom {
    padding-top: 26px;
  }

  .policy-intro {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width:480px) {

  .why-grid-5,
  .why-grid-4 {
    grid-template-columns: 1fr;
  }

  .step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  .step-card {
    padding: 14px;
  }

  .specialty-icon-wrap {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .specialty-body h3 {
    font-size: 1.4rem;
  }

  .specialty-body p {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .specialty-list li {
    font-size: 0.85rem;
  }

  .phone-mockup {
    width: 100%;
  }

  .app-content h2 {
    font-size: 1.8rem;
  }

  .app-content p {
    font-size: 1rem;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .store-badge i {
    font-size: 1.2rem;
  }

  .store-badge span {
    font-size: 0.8rem;
  }

  .store-badge small {
    font-size: .7rem;
  }

  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 6px;
  }

  .hiw-box {
    padding: 28px 20px;
  }

  .footer-home .social-links a {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .footer-home .footer-badge {
    width: 100%;
    justify-content: center;
  }

  .specialty-card {
    padding: 20px;
  }

  .section-title {
    font-size: 1.8rem;
    padding-bottom: 24px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .about-why-text h2.about-section-title {
    font-size: 1.7rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .about-why-text p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .what-para {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .offer-card h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #3D3D3D;
  }

  .offer-card p {
    font-size: 0.8rem;
  }

  .mission-title {
    font-size: 1.8rem;
  }

  .mission-text {
    font-size: 1rem;
  }

  .approach-card h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .approach-card p {
    font-size: 0.8rem;
  }

  .approach-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .about-cta-title {
    font-size: 1.8rem;
  }

  .footer-home-logo {
    width: 40%;
  }

  .footer-cert-card img {
    width: 80px;
    height: 80px;

  }

  .footer-home .footer-tagline {
    font-size: 0.9rem;
    margin-bottom: 28px;
    max-width: 275px;
  }

  .footer-home .footer-disclaimer {
    font-size: .9rem;
  }

  .policy-hero { padding: 78px 0 62px; }
  .policy-summary { padding: 18px 18px; }
  .policy-panel { padding: 0 18px 18px; }
  .policy-links { justify-content: flex-start; }
}