:root {
  --ink: #14262c;
  --ink-strong: #071e24;
  --muted: #617279;
  --line: #d8e5e7;
  --paper: #ffffff;
  --mist: #f4f9f9;
  --teal: #087c86;
  --teal-deep: #073f4a;
  --emerald: #23a071;
  --blue: #255da8;
  --gold: #c89b3c;
  --gold-soft: #f7ead0;
  --coral: #d66a44;
  --shadow: 0 20px 60px rgba(7, 63, 74, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(7, 63, 74, 0.08);
}

.top-strip {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  color: #ffffff;
  font-weight: 700;
}

.navbar {
  border-bottom: 1px solid rgba(216, 229, 231, 0.9);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(37, 93, 168, 0.14);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--teal-deep);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.brand-motto {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  color: #1f3a42;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  background: rgba(8, 124, 134, 0.08);
}

.nav-links .nav-cta {
  color: #ffffff;
  background: var(--teal);
  padding-inline: 16px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  place-items: center;
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--teal-deep);
  border-radius: 2px;
}

.hero {
  min-height: 640px;
  min-height: 72svh;
  position: relative;
  display: grid;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 63, 74, 0.94) 0%, rgba(7, 63, 74, 0.84) 38%, rgba(7, 63, 74, 0.32) 72%),
    url("assets/corporate-healthcare-hero.png") center right / cover no-repeat;
}

.hero__inner {
  padding: 88px 0 104px;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-strong);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 68px;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.hero h1,
.hero h2,
.hero h3,
.dark-band h2,
.dark-band h3 {
  color: #ffffff;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark-band .eyebrow {
  color: var(--gold-soft);
}

.sanskrit {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 700;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.hero .button-primary {
  background: linear-gradient(135deg, var(--gold), var(--coral));
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 78px 0;
}

.section-intro {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.soft-band {
  background:
    linear-gradient(135deg, rgba(244, 249, 249, 0.98), rgba(248, 252, 250, 0.98));
}

.dark-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 63, 74, 0.98), rgba(16, 86, 89, 0.98));
}

.intro-grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
}

.align-center {
  align-items: center;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.section-lead {
  color: var(--muted);
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.blog-card,
.contact-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(20, 38, 44, 0.08);
}

.feature-card {
  padding: 28px;
}

.feature-card.accent {
  background: linear-gradient(135deg, #ffffff, #eef9f7);
  border-color: rgba(35, 160, 113, 0.25);
}

.feature-card p {
  color: var(--muted);
}

.feature-card a,
.blog-card a,
.footer a,
.contact-panel a {
  color: var(--teal);
  font-weight: 900;
}

.card-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 14px;
  font-weight: 900;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 900;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: right center;
}

.partner-row,
.pill-grid {
  display: grid;
  gap: 14px;
}

.partner-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-row span,
.pill-grid span {
  display: grid;
  place-items: center;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--teal-deep);
  padding: 16px;
  text-align: center;
  font-weight: 900;
}

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

.page-hero {
  padding: 82px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 63, 74, 0.96), rgba(8, 124, 134, 0.9)),
    url("assets/corporate-healthcare-hero.png") center right / cover no-repeat;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 54px;
}

.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

blockquote {
  margin: 28px 0 0;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--mist);
}

blockquote strong,
blockquote span {
  display: block;
}

blockquote strong {
  color: var(--teal-deep);
  font-size: 20px;
}

blockquote span {
  margin-top: 6px;
  color: var(--muted);
}

.clean-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.clean-list li {
  margin-bottom: 8px;
}

.notice {
  margin: 26px 0 0;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: #51401b;
  background: #fff8e8;
  font-size: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.status-badge {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 6px 12px;
  color: #68470b;
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
}

.stacked-cards {
  display: grid;
  gap: 18px;
}

.blog-card {
  padding: 28px;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 63, 74, 0.98), rgba(8, 124, 134, 0.96));
}

.contact-panel h2,
.contact-panel a {
  color: #ffffff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-panel a {
  display: block;
  margin-top: 10px;
}

.contact-logo,
.footer-logo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  background: #ffffff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--teal-deep);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.footer {
  color: rgba(255, 255, 255, 0.82);
  background: #0d2a32;
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.6fr) minmax(0, 1fr);
  gap: 36px;
}

.footer h2,
.footer h3 {
  color: #ffffff;
}

.footer h2 {
  font-size: 25px;
}

.footer h3 {
  font-size: 18px;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.82);
}

.footer p {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .top-strip__inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
  }

  .nav-inner {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-motto {
    max-width: 230px;
    font-size: 11px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 112px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 520px;
    background:
      linear-gradient(90deg, rgba(7, 63, 74, 0.96), rgba(7, 63, 74, 0.82)),
      url("assets/corporate-healthcare-hero.png") center / cover no-repeat;
  }

  .hero__inner {
    padding: 68px 0 80px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .intro-grid,
  .split-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.two,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-strip {
    display: none;
  }

  .nav-links {
    top: 86px;
  }

  .brand-copy {
    gap: 0;
  }

  .brand-motto {
    display: none;
  }

  .hero {
    min-height: 470px;
  }

  .hero__inner {
    padding: 56px 0 64px;
  }

  h1 {
    font-size: 38px;
  }

  h2,
  .page-hero h1 {
    font-size: 31px;
  }

  h3 {
    font-size: 20px;
  }

  .sanskrit,
  .hero__lead,
  .page-hero p:last-child,
  .section-heading p:last-child,
  .section-lead {
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
  }

  .card-grid.four,
  .values-grid,
  .partner-row {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .blog-card,
  .contact-panel,
  .contact-form {
    padding: 22px;
  }

  .image-panel img {
    height: 300px;
  }
}
