/* =========================================================
   GOTHAM FONT - LOCAL SERVER
   Folder: ./Font/
   ========================================================= */

@font-face {
  font-family: "Gotham";
  src: url("./Font/gotham-book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("./Font/gotham-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("./Font/gotham-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("./Font/gotham-black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple-900: #2C0A52;
  --purple-800: #45127F;
  --purple-700: #5B1FA3;
  --purple-600: #6D28D9;
  --magenta-600: #9D189F;
  --magenta-500: #BC22C4;
  --gold-500: #C9A24B;
  --red-600: #C4281E;
  --lavender-50: #F8F5FC;
  --lavender-100: #EFE6FA;
  --ink: #1C1129;
  --ink-soft: #564B69;
  --white: #FFFFFF;
  --border: #E6DBF4;
  --radius: 16px;
  --maxw: 1180px;
  --shadow: 0 16px 40px rgba(56, 12, 105, .14);
  --ease: cubic-bezier(.22, .9, .32, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gotham", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: "Gotham", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.18;
  color: var(--purple-900);
  letter-spacing: -.01em;
}

h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 32px;
}

h3 {
  font-size: 21px;
  color: var(--purple-800);
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  color: var(--ink-soft);
}

.eyebrow {
  color: var(--magenta-600);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: var(--lavender-50);
}

.lede {
  max-width: 1140px;
  color: var(--ink-soft);
  margin-bottom: 39px;
  font-size: 16.5px;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal-stagger.in-view>*:nth-child(1) {
  transition-delay: .02s;
}

.reveal-stagger.in-view>*:nth-child(2) {
  transition-delay: .1s;
}

.reveal-stagger.in-view>*:nth-child(3) {
  transition-delay: .18s;
}

.reveal-stagger.in-view>*:nth-child(4) {
  transition-delay: .26s;
}

@media(prefers-reduced-motion:reduce) {

  .reveal,
  .reveal-stagger>* {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== Topbar ===== */
.topbar {
      background: #fff;
    color: #040404;
    font-size: 12.5px;
}

.topbar .wrap {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 9px 24px;
  flex-wrap: wrap;
}

.topbar a {
  opacity: .82;
  transition: opacity .15s;
}

.topbar a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===== Header / Nav ===== */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(60, 10, 100, .08);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}

header.site.scrolled {
  box-shadow: 0 10px 26px rgba(60, 10, 100, .1);
  background: rgba(255, 255, 255, .97);
}

.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo .word {
  font-family: "Gotham", Arial, sans-serif;
  font-size: 29px;
  font-weight: 600;
  color: var(--purple-800);
  letter-spacing: .2px;
}

.logo .word span {
  color: var(--magenta-500);
}

.logo .sub {
  font-size: 9.5px;
  color: var(--ink-soft);
  margin-top: 3px;
  font-family: "Gotham", Arial, sans-serif;
}

.logo .tag {
  font-size: 10px;
  color: var(--magenta-600);
  font-weight: 700;
  margin-top: 2px;
  font-family: "Gotham", Arial, sans-serif;
}

.logo img {
  height: 61px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

nav.main {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.main>ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav.main .navitem {
  position: relative;
}

nav.main .navitem>a {
  display: block;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--purple-900);
  border-radius: 8px;
}

nav.main .navitem>a:hover,
nav.main .navitem.active>a {
  background: var(--purple-800);
  color: #fff;
}

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .15s ease;
}

.navitem:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13.5px;
  color: var(--ink);
}

.dropdown a:hover {
  background: var(--lavender-100);
  color: var(--purple-800);
}

.navtoggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navtoggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--purple-900);
  margin: 5px 0;
  border-radius: 2px;
}

.navclose {
  display: none;
}

/* ===== Hero ===== */
.hero {
  padding: 0 !important;
  background: none !important;
  overflow: hidden;
}

.hero .wrap {
  max-width: none !important;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-copy {
  width: 100%;
  margin: 0;
}

.hero-copy .frame {
  width: 100%;
  height: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-copy img {
  width: 100%;
  height: auto;
  max-height: none !important;
  object-fit: cover;
  transform: none !important;
}

.hero-copy:hover img {
  transform: none !important;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero-badge {
  left: 40px;
  bottom: 40px;
}

.scroll-cue {
  right: 30px;
  bottom: 20px;
}

/* ===== Cards / grids ===== */
.grid {
  display: grid;
  gap: 20px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.card:hover {
  border-color: #D6C2ED;
  box-shadow: 0 14px 28px rgba(60, 10, 100, .08);
  transform: translateY(-3px);
}

.card ul {
  margin-top: 8px;
}

.card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta-600);
}

.check-list li {
  padding-left: 26px;
}

.check-list li::before {
  content: "✓";
  background: none;
  color: #16A34A;
  font-weight: 900;
  top: 0;
  width: auto;
  height: auto;
  font-size: 14px;
}

.no-list li {
  padding-left: 26px;
}

.no-list li::before {
  content: "✕";
  background: none;
  color: var(--red-600);
  font-weight: 900;
  top: 0;
  width: auto;
  height: auto;
  font-size: 14px;
}

.plain-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta-600);
}

/* ===== Table ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

thead th {
  background: var(--purple-800);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 13.5px;
}

tbody td {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

tbody tr:hover td {
  background: var(--lavender-50);
}

tbody tr:last-child td {
  border-bottom: none;
  background: var(--lavender-100);
  font-weight: 700;
  color: var(--purple-800);
}

tbody tr:last-child:hover td {
  background: var(--lavender-100);
}

/* ===== Callout ===== */
.callout {
  background: var(--lavender-100);
  border-left: 4px solid var(--magenta-600);
  padding: 18px 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
}

.callout p {
  color: var(--purple-900);
  font-size: 14px;
  margin: 0;
}

.did-you-know {
  background: linear-gradient(135deg, var(--purple-800), var(--magenta-600));
  color: #fff;
  padding: 24px;
  border-radius: var(--radius);
}

.did-you-know h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.did-you-know p {
  color: rgba(255, 255, 255, .92);
  font-size: 14.5px;
}

/* ===== HCP Tabs ===== */
.tabs {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  margin-bottom: 24px;
  justify-content: center;
  align-content: stretch;
  flex-direction: row;
  align-items: stretch;
}

.tab-btn {
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid transparent;
  border-bottom: 3px solid transparent;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 9px 9px 0 0;
  margin-bottom: -2px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.tab-btn:hover {
  background: var(--lavender-50);
  color: var(--purple-800);
}

.tab-btn.active {
  color: #fff;
  background: var(--purple-800);
  border-color: var(--purple-800);
  border-bottom-color: var(--magenta-600);
}

.tab-panel {
  display: none !important;
  width: 100%;
}

.tab-panel.active {
  display: block !important;
  animation: fade .25s ease;
}

.tab-panel .card,
.tab-panel .table-wrap,
.tab-panel .did-you-know {
  opacity: 1;
  transform: none;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

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

@media(max-width:600px) {
  .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-bottom: none;
  }

  .tab-btn {
    width: 100%;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 9px;
    text-align: left;
    padding: 11px 12px;
    font-size: 13px;
  }

  .tab-btn.active {
    border-color: var(--purple-800);
  }
}

/* ===== Form ===== */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 6px;
}

.form-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}

.form-field input:focus {
  outline: none;
  border-color: var(--purple-600);
}

.req {
  color: var(--red-600);
}

.form-msg {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  display: none;
}

.form-msg.ok {
  color: #16A34A;
  display: block;
}

.form-msg.err {
  color: var(--red-600);
  display: block;
}

/* ===== Footer ===== */
footer {
  position: relative;
  background: linear-gradient(160deg, var(--purple-900) 0%, #210840 100%);
  color: #EDE4FB;
  padding: 56px 0 24px;
  margin-top: 20px;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--magenta-500), transparent);
  opacity: .6;
}

.footer-brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
}

.footer-brand .word {
  font-family: "Gotham", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

/* Footer Logo - White Round Background */
.footer-brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  display: block;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

footer h4 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-family: "Gotham", Arial, sans-serif;
  font-weight: 700;
}

footer a {
  color: #CBB8EE;
  font-size: 13.5px;
  display: block;
  margin-bottom: 9px;
  transition: color .15s, transform .15s;
  width: fit-content;
}

footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 18px;
  font-size: 12px;
  color: #B49BDD;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
}

/* Divider */
footer hr,
.footer-divider {
  width: 85%;
  margin: 0 auto 20px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

/* Copyright */
footer .copyright {
  text-align: center;
  color: #c9b7e8;
  font-size: 13px;
}

/* ===== Footer Contact block (icons) ===== */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-row.single-line {
  align-items: center;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  margin-top: 2px;
  transition: background .25s;
}

.footer-contact-row.single-line .footer-contact-icon {
  margin-top: 0;
}

.footer-contact-row:hover .footer-contact-icon {
  background: rgba(255, 255, 255, .18);
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #E7DAF7;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-row p {
  color: #CBB8EE;
  font-size: 13px;
  max-width: 280px;
  margin: 5px;
  line-height: 1.55;
}

.footer-contact-row a {
  color: #CBB8EE;
  font-size: 13px;
  display: inline;
  margin-bottom: 0;
  transition: color .15s;
}

.footer-contact-row a:hover {
  color: #fff;
  transform: none;
}

/* ===== Responsive ===== */
@media(max-width:960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.isi-strip {
  background: var(--lavender-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

section[id] {
  scroll-margin-top: 84px;
}

/* ===== Alternating Image + Content Layout ===== */
.section-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 50px;
  margin: 35px 0 45px;
}

.section-media.image-left .section-photo {
  order: 1;
}

.section-media.image-left .section-media-content {
  order: 2;
}

.section-media.image-right .section-photo {
  order: 2;
}

.section-media.image-right .section-media-content {
  order: 1;
}

.section-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0;
  width: 100%;
  max-height: 420px;
}

.section-photo img {
  width: 100%;
  height: 569px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  transition: transform 1.2s var(--ease);
}

.section-photo:hover img {
  transform: scale(1);
}

.section-media-content {
  padding: 10px 5px;
}

.section-media-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

.section-media-content p {
  margin-bottom: 0;
}

@media(max-width:960px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-art {
    max-width: 320px;
    margin: 0 auto;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-media {
    gap: 30px;
  }
}

@media(max-width:800px) {
  .section-media {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0 38px;
  }

  .section-media.image-left .section-photo,
  .section-media.image-right .section-photo {
    order: 1;
  }

  .section-media.image-left .section-media-content,
  .section-media.image-right .section-media-content {
    order: 2;
  }

  .section-photo {
    max-height: none;
  }

  .section-photo img {
    height: 300px;
  }

  .section-media-content {
    padding: 0;
  }

  .topbar .wrap {
    justify-content: center;
  }

  .navtoggle {
    display: block;
  }

  nav.main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: -6px 0 24px rgba(0, 0, 0, .15);
    transition: right .25s ease;
    overflow-y: auto;
  }

  nav.main.open {
    right: 0;
  }

  nav.main>ul {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 10px;
  }

  .navitem.open .dropdown {
    display: block;
  }

  .navclose {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--purple-900);
    cursor: pointer;
    margin-bottom: 10px;
  }
}

/* ===== Monitoring Recommendations ===== */
.monitoring-section {
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(109, 40, 217, .08), transparent 180px),
    radial-gradient(circle at 4% 92%, rgba(188, 34, 196, .06), transparent 160px),
    #fff;
}

.monitoring-heading {
  text-align: center;
  margin-bottom: 28px;
}

.monitoring-heading .monitoring-line {
  width: 72px;
  height: 4px;
  margin: 0 auto 12px;
  border-radius: 99px;
}

.monitoring-heading h3 {
  font-size: clamp(25px, 3vw, 34px);
  margin-bottom: 7px;
}

.monitoring-heading p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 14.5px;
}

.monitoring-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.monitoring-item {
  position: relative;
  min-height: 190px;
  padding: 24px 22px 22px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 26px rgba(56, 12, 105, .07);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.monitoring-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--monitor-color, var(--purple-700));
}

.monitoring-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(56, 12, 105, .12);
  border-color: #D6C2ED;
}

.monitoring-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 17px;
  background: var(--monitor-bg, #F1E9FB);
  color: var(--monitor-color, var(--purple-700));
}

.monitoring-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.monitoring-item h4 {
  font-family: "Gotham", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  color: var(--purple-900);
  margin-bottom: 12px;
  font-weight: 800;
}

.monitoring-item h4::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 9px;
  border-radius: 99px;
  background: var(--monitor-color, var(--purple-700));
}

.monitoring-item p {
  font-size: 13.8px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.monitoring-note {
  margin-top: 18px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
}

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

@media(max-width:600px) {
  .monitoring-section {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .monitoring-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .monitoring-item {
    min-height: auto;
    padding: 21px 18px 20px 22px;
  }
}

.trigger-section {
  margin-top: 36px;
}

.trigger-intro {
  max-width: 850px;
  margin-bottom: 24px;
}

.trigger-intro h3 {
  margin-bottom: 8px;
}

.trigger-intro p {
  font-size: 14.5px;
  line-height: 1.7;
}

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

.trigger-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5d9f2;
  border-radius: 22px;
  padding: 28px 25px 25px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(73, 35, 110, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.trigger-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,
      #6d28d9,
      #b832c4);
}

.trigger-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(73, 35, 110, 0.13);
  border-color: #cdb4e7;
}

.trigger-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #f3edfb;
  color: #6d28d9;
}

.trigger-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trigger-card:nth-child(2) .trigger-icon {
  background: #f8eefb;
  color: #a329ae;
}

.trigger-card:nth-child(3) .trigger-icon {
  background: #eeeafb;
  color: #5630a8;
}

.trigger-number {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 12px;
  font-weight: 800;
  color: #cdb9df;
  letter-spacing: 1px;
}

.trigger-card h4 {
  margin: 0 0 15px;
  font-family: "Gotham", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #4b167d;
  font-weight: 800;
}

.trigger-card h4::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 9px;
  border-radius: 20px;
  background: linear-gradient(90deg,
      #6d28d9,
      #b832c4);
}

.trigger-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trigger-list li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #554968;
}

.trigger-list li:last-child {
  margin-bottom: 0;
}

.trigger-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8b45c7;
}

@media (max-width: 950px) {
  .trigger-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .trigger-cards {
    grid-template-columns: 1fr;
  }

  .trigger-card {
    padding: 24px 21px;
  }

  .trigger-icon {
    width: 56px;
    height: 56px;
  }
}

/* ===== Caregivers Section Redesign ===== */
.cg-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.cg-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease);
}
.cg-hero:hover img { transform: scale(1); }
.cg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,10,82,0) 30%, rgba(28,7,45,.82) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px 34px;
}
.cg-hero-overlay h3 { color: #fff; font-size: clamp(22px,2.6vw,30px); margin-bottom: 6px; }
.cg-hero-overlay p { color: #E7DAF7; font-size: 14.5px; max-width: 560px; margin: 0; }

.cg-dodont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 30px;
}
.cg-dodont-card {
  border-radius: 20px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cg-dodont-card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(56,12,105,.12); }
.cg-do { background: linear-gradient(160deg,#F3FBF6,#fff); }
.cg-dont { background: linear-gradient(160deg,#FFF3F3,#fff); }
.cg-dodont-head { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.cg-dodont-head .icon-circle {
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.cg-do .icon-circle { background:#DFF6E7; color:#16A34A; }
.cg-dont .icon-circle { background:#FBE1DF; color:var(--red-600); }
.cg-dodont-head h4 { font-family:"Fraunces",serif; font-size:19px; margin:0; color:var(--purple-900); }
.cg-item-row {
  display:flex; align-items:flex-start; gap:10px;
  padding:10px 0; border-bottom:1px dashed rgba(0,0,0,.07);
  font-size:14.3px; color:var(--ink-soft);
}
.cg-item-row:last-child { border-bottom:none; }
.cg-item-row svg { flex-shrink:0; margin-top:2px; width:18px; height:18px; }
.cg-do .cg-item-row svg { stroke:#16A34A; }
.cg-dont .cg-item-row svg { stroke:var(--red-600); }

.cg-emergency {
  background: linear-gradient(135deg,#C4281E,#8E1811);
  border-radius: 22px;
  padding: 30px 32px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.cg-emergency::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cg-emergency h3 { color:#fff; display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.cg-emergency h3 svg { width:26px; height:26px; stroke:#fff; }
.cg-emergency-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.cg-emergency-item {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  padding: 16px 14px;
  font-size: 13.3px;
  line-height: 1.5;
  transition: background .25s;
}
.cg-emergency-item:hover { background: rgba(255,255,255,.22); }
.cg-emergency-note { margin-top:16px; font-size:12.5px; color:rgba(255,255,255,.85); }

.cg-appt-stat {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.cg-stat-card {
  background: linear-gradient(160deg, var(--purple-800), var(--magenta-600));
  border-radius: 20px;
  padding: 30px 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.cg-stat-number {
  font-family: "Gotham", Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg,#fff,#F3D9F6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cg-stat-card p { color: rgba(255,255,255,.92); font-size: 13.8px; margin:0; }

.cg-cta {
  text-align: center;
  margin-top: 44px;
  padding: 40px 30px;
  border-radius: 22px;
  background: var(--lavender-50);
  border: 1px dashed #D6C2ED;
}
.cg-cta h3 { margin-bottom: 10px; }
.cg-cta p { max-width: 620px; margin: 0 auto 20px; }
.cg-cta .btn-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--purple-700), var(--magenta-600));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 99px;
  box-shadow: 0 12px 26px rgba(109,40,217,.25);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.cg-cta .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(109,40,217,.32); }

@media(max-width:900px){
  .cg-dodont { grid-template-columns: 1fr; }
  .cg-emergency-grid { grid-template-columns: repeat(2,1fr); }
  .cg-appt-stat { grid-template-columns: 1fr; }
}
@media(max-width:600px){
  .cg-emergency-grid { grid-template-columns: 1fr; }
  .cg-hero img { height: 240px; }
}

/* ===== Home page minimal hero ===== */
.home-hero-only .hero-copy .frame img {
  max-height: 640px;
}
/* ===== Footer 4 Equal Sections ===== */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 32px;
  width: 100%;
}

.footer-grid > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo sections */
.footer-grid > div:first-child,
.footer-grid > div:last-child {
  justify-content: flex-start;
}

/* Patients & Contact */
.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  align-items: flex-start;
}

/* Keep logo perfectly centered in its section */
.footer-grid .footer-brand {
  width: 100%;
  justify-content: center;
  margin-bottom: 0;
}

/* Contact block */
.footer-grid .footer-contact {
  width: 100%;
}

/* ===== Mobile ===== */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 35px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid > div {
    align-items: center;
    text-align: center;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    align-items: center;
  }

  .footer-contact-row {
    justify-content: center;
    text-align: left;
  }
}