:root {
  --bg: #f4f1eb;
  --surface: #ffffff;
  --ink: #0f1c1f;
  --muted: #56666a;
  --teal-950: #0d4d4f;
  --teal-900: #13484a;
  --teal-800: #1b5c5f;
  --gold: #ca9629;
  --gold-soft: rgba(202, 150, 41, 0.25);
  --accent: #d65a35;
  --accent-dark: #c7442b;
  --line: rgba(15, 28, 31, 0.12);
  --card-shadow: 0 18px 40px rgba(11, 30, 32, 0.09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(29, 96, 100, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(214, 90, 53, 0.09), transparent 26%),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 28, 31, 0.08);
  box-shadow: 0 8px 24px rgba(15, 28, 31, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(15, 28, 31, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(15, 28, 31, 0.2);
}

.menu-toggle-lines {
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle-lines span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  width: clamp(132px, 16vw, 186px);
}

.brand-logo,
.footer-brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-size: 0.98rem;
  color: #253438;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header.is-open .menu-toggle-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-cta {
  color: #fff;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 24px rgba(214, 90, 53, 0.24);
  text-transform: uppercase;
  font-size: 0.9rem;
  padding-inline: 1.1rem;
}

.header-cta:hover,
.btn:hover,
.header-cta:focus-visible,
.btn:focus-visible {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(19, 72, 74, 0.98), rgba(13, 77, 79, 0.99)),
    linear-gradient(135deg, var(--teal-950), var(--teal-800));
  color: #fff;
  border-bottom: 4px solid rgba(255, 255, 255, 0.78);
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  background: transparent;
}

.hero-inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 380px;
  padding: 2.6rem 0 4.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.4rem;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.77rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-badge {
  color: var(--gold);
  border: 1px solid rgba(202, 150, 41, 0.55);
  background: rgba(255, 255, 255, 0.02);
  min-height: 52px;
  padding: 0.88rem 1.5rem;
  font-size: 1.02rem;
  line-height: 1.15;
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.1rem, 2.75vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  margin: 0;
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  min-width: 150px;
  border: 1px solid transparent;
}

.hero .hero-actions {
  width: auto;
}

.hero .hero-actions .btn {
  flex: 0 0 auto;
}

.hero .btn {
  width: auto;
}

.btn-primary {
  background: linear-gradient(180deg, #dba63a, #ca9629);
  color: #fff;
  box-shadow: 0 12px 26px rgba(202, 150, 41, 0.28);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.section {
  padding: 5rem 0;
}

.condition-section {
  min-height: 335px;
  padding: 2.75rem 0 2.65rem;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0.22) 100%),
    url("assets/img/GINJAL.png") calc(100% + 240px) 42% / cover no-repeat;
  border-top: 1px solid rgba(202, 150, 41, 0.06);
  border-bottom: 1px solid rgba(15, 28, 31, 0.06);
}

.condition-section .container {
  width: min(1160px, calc(100% - 96px));
}

.condition-intro {
  max-width: 650px;
}

.eyebrow-warm {
  color: #d88c16;
  background: rgba(216, 140, 22, 0.08);
}

.condition-intro h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 3.35vw, 2.9rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: #051015;
}

.condition-intro h3 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #061217;
}

.condition-intro p {
  margin: 0.9rem 0 0;
  color: #1f2e33;
  line-height: 1.58;
  font-size: 1rem;
  text-align: justify;
}

.condition-list {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(12rem, 0.9fr);
  gap: 1.85rem;
  max-width: 640px;
  margin: 0.75rem 0 0;
  color: #101d22;
  font-size: 0.98rem;
}

.condition-list ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.42;
}

.condition-list li {
  margin: 0.03rem 0;
}

.symptom-section {
  padding: 0;
  background: #e8f5f8;
  border-bottom: 1px solid rgba(15, 28, 31, 0.08);
  overflow: hidden;
}

.symptom-inner {
  min-height: 320px;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: center;
  gap: 2.35rem;
}

.symptom-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.symptom-visual img {
  display: block;
  width: 430px;
  max-width: none;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}

.symptom-content {
  padding: 1.65rem 0 1.55rem;
}

.symptom-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.25vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #071217;
}

.symptom-content h3 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #09171c;
}

.symptom-content p {
  max-width: 780px;
  margin: 0.6rem 0 0;
  color: #26383e;
  font-size: 1.08rem;
  line-height: 1.48;
}

.symptom-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.92fr);
  gap: 3rem;
  max-width: 780px;
  margin-top: 0.95rem;
  color: #111e23;
  font-size: 1.05rem;
}

.symptom-list ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.4;
}

.symptom-list li {
  margin: 0.02rem 0;
}

.reference-section {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.3rem;
  background: #2b3828;
  color: #ffffff;
}

.reference-intro {
  display: grid;
  justify-items: center;
  max-width: 100%;
  margin-bottom: 1.45rem;
  text-align: center;
}

.eyebrow-reference {
  justify-self: start;
  color: #dba63a;
  background: rgba(202, 150, 41, 0.12);
  border: 1px solid rgba(202, 150, 41, 0.72);
  font-size: 0.68rem;
  padding: 0.34rem 0.8rem;
}

.reference-intro h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.2rem, 4.1vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
  color: #ffffff;
}

.reference-intro p {
  margin: 0.25rem 0 0;
  color: #ffffff;
  line-height: 1.15;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 800;
}

.reference-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: start;
  margin-top: 1.2rem;
}

.reference-copy {
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.reference-copy p {
  margin: 0 0 0.75rem;
  text-align: justify;
  text-justify: inter-word;
}

.reference-copy .reference-subtitle {
  text-align: left;
}

.reference-value-stack {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
  margin-top: 0.9rem;
}

.reference-value-card {
  display: grid;
  justify-items: center;
  min-width: 210px;
  padding: 0.7rem 1.25rem 0.75rem;
  border-radius: 12px;
  border: 1px solid #dba63a;
  background: rgba(18, 33, 27, 0.22);
  color: #ffffff;
}

.reference-value-card--single {
  margin-top: 1.25rem;
}

.reference-value-card span {
  color: #dba63a;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-value-card strong {
  margin-top: 0.22rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.reference-source {
  margin: 1.45rem 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 800;
}

.egfr-panel {
  max-width: 900px;
  margin: 1.15rem auto 0;
  text-align: center;
}

.egfr-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.25vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.egfr-panel p {
  margin: 0.35rem 0 1.05rem;
  color: #dba63a;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.35;
  font-weight: 700;
}

.egfr-nowrap {
  white-space: nowrap;
}

.egfr-table {
  width: min(100%, 520px);
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 0.55rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.egfr-table th,
.egfr-table td {
  width: 50%;
  padding: 0.7rem 1rem;
  text-align: center;
}

.egfr-table th {
  background: #dba63a;
  color: #182319;
}

.egfr-table th:first-child {
  border-radius: 12px 0 0 12px;
}

.egfr-table th:last-child {
  border-radius: 0 12px 12px 0;
}

.egfr-table td {
  border: 1px solid #dba63a;
  background: rgba(18, 33, 27, 0.18);
}

.egfr-table td:first-child {
  border-radius: 10px 0 0 10px;
}

.egfr-table td:last-child {
  border-radius: 0 10px 10px 0;
}

.egfr-table tbody tr:last-child td:last-child {
  font-size: 0.78rem;
}

.dialysis-facts-section {
  padding: 2.6rem 0 3rem;
  background: #155b63;
  color: #ffffff;
}

.dialysis-facts-inner {
  width: min(1320px, calc(100% - 96px));
}

.dialysis-facts-section h2 {
  max-width: none;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.25rem, 3.25vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
  white-space: nowrap;
}

.dialysis-facts-lead {
  max-width: 850px;
  margin: 1.05rem auto 0;
  text-align: center;
}

.dialysis-facts-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
  line-height: 1.42;
  font-weight: 500;
}

.dialysis-facts-section p strong {
  font-weight: 800;
}

.dialysis-facts-copy,
.dialysis-facts-section p:not(.dialysis-facts-lead):not(.dialysis-reference) {
  text-align: justify;
  text-justify: inter-word;
}

.dialysis-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.1rem;
  align-items: end;
  margin: 1.4rem 0 1.5rem;
}

.dialysis-metric {
  display: grid;
  gap: 0.45rem;
}

.dialysis-metric span {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dialysis-metric strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.55rem 1rem;
  border: 1px solid #ffffff;
  border-radius: 10px;
  color: #dba63a;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.dialysis-reference {
  margin: 1rem 0 0;
  font-size: 0.68rem;
  font-style: italic;
  line-height: 1.35;
  opacity: 0.9;
}

.dialysis-facts-section h3 {
  max-width: 1120px;
  margin: 1.35rem auto 1.15rem;
  color: #dba63a;
  text-align: center;
  font-size: clamp(1.35rem, 2.25vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.dialysis-facts-section h3 span {
  display: block;
  white-space: nowrap;
}

.natural-solution-section {
  background: #f8f8f8;
  color: #00535d;
  padding: 3.3rem 0 3.15rem;
}

.natural-solution-inner {
  max-width: 1160px;
}

.natural-solution-section .eyebrow {
  margin-bottom: 1.05rem;
  padding: 0.42rem 0.8rem;
  color: #ffffff;
  background: #155b63;
  border: 1px solid rgba(21, 91, 99, 0.16);
  font-size: 0.68rem;
  line-height: 1;
}

.natural-solution-section h2 {
  max-width: none;
  margin: 0;
  color: #d7a42f;
  font-size: clamp(2.85rem, 3.1vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 800;
  white-space: nowrap;
}

.natural-solution-section .natural-solution-subtitle {
  margin: 0.18rem 0 0.42rem;
  color: #d7a42f;
  font-size: clamp(2.35rem, 2.65vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
  white-space: nowrap;
}

.natural-solution-section p {
  max-width: 1090px;
  margin: 0;
  color: #00535d;
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 500;
}

.natural-solution-section p strong {
  color: #00535d;
  font-weight: 800;
}

.natural-solution-list {
  display: grid;
  gap: 0.15rem;
  max-width: 980px;
  margin: 1.15rem 0 1.35rem;
  padding: 0;
  list-style: none;
  color: #00535d;
  font-size: 1.1rem;
  line-height: 1.24;
  font-weight: 500;
}

.natural-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.natural-solution-list span {
  flex: 0 0 auto;
  color: #008a28;
  font-size: 1.1em;
  line-height: 1;
  font-weight: 900;
}

.natural-solution-goal {
  text-align: left;
}

.comparison-section {
  padding: 2.15rem 0 2.75rem;
  background: #263322;
  color: #ffffff;
}

.comparison-inner {
  max-width: 1040px;
}

.comparison-intro {
  max-width: 840px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.comparison-intro h2 {
  margin: 0;
  color: #dba63a;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.comparison-intro p {
  margin: 0.55rem auto 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.28;
  font-size: 0.95rem;
  font-weight: 700;
}

.comparison-intro p strong {
  font-weight: 800;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  max-width: 1040px;
  margin: 0 auto;
}

.comparison-card {
  min-height: 0;
  padding: 0.75rem 0.95rem 0.82rem;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #dba63a;
  box-shadow: none;
}

.comparison-number {
  margin-bottom: 0.08rem;
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.comparison-label {
  display: block;
  margin-bottom: 0.22rem;
  color: #dba63a;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.comparison-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.3;
  font-size: 0.82rem;
  font-weight: 700;
}

.comparison-note {
  max-width: 1040px;
  margin: 2rem auto 0;
  padding: 0.16rem 0 0.16rem 0.95rem;
  border-left: 3px solid #dba63a;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.28;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: justify;
  text-justify: inter-word;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(202, 150, 41, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(13, 77, 79, 0.08), transparent 26%),
    linear-gradient(180deg, #f6efe5 0%, #fbf7f1 100%);
  color: #122224;
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.9;
}

.faq-section::before {
  width: 170px;
  height: 170px;
  top: -70px;
  right: -80px;
  background: rgba(202, 150, 41, 0.1);
}

.faq-section::after {
  width: 220px;
  height: 220px;
  left: -110px;
  bottom: -120px;
  background: rgba(13, 77, 79, 0.06);
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
}

.faq-intro {
  max-width: 780px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  color: #b97a10;
  background: rgba(202, 150, 41, 0.1);
  border: 1px solid rgba(202, 150, 41, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-intro h2 {
  margin: 0.8rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #122224;
}

.faq-intro p {
  margin: 0.9rem 0 0;
  max-width: 720px;
  color: #4f6165;
  line-height: 1.72;
  font-size: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  position: relative;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 28, 31, 0.08);
  box-shadow: 0 14px 30px rgba(11, 30, 32, 0.07);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #dba63a, #ca9629);
}

.faq-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.22rem 0.68rem;
  border-radius: 999px;
  background: rgba(202, 150, 41, 0.11);
  border: 1px solid rgba(202, 150, 41, 0.16);
  color: #b97a10;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq-item h3 {
  margin: 0.75rem 0 0.65rem;
  color: #122224;
  font-size: 1.06rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.faq-item p {
  margin: 0;
  color: #425558;
  line-height: 1.72;
  font-size: 0.95rem;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 150, 41, 0.16);
  box-shadow: 0 18px 36px rgba(11, 30, 32, 0.09);
}

.evidence-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #0d5c67 0%, #0a4a54 100%);
  color: #f4fbfb;
}

.evidence-section::before,
.evidence-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.evidence-section::before {
  width: 210px;
  height: 210px;
  top: -80px;
  left: -90px;
  background: rgba(255, 255, 255, 0.07);
}

.evidence-section::after {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -140px;
  background: rgba(255, 255, 255, 0.05);
}

.evidence-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.6rem;
}

.evidence-column {
  display: flex;
  flex-direction: column;
}

.evidence-copy {
  max-width: 500px;
}

.eyebrow-evidence {
  color: #d39a26;
  background: rgba(211, 154, 38, 0.08);
  border: 1px solid rgba(211, 154, 38, 0.14);
}

.evidence-copy h2 {
  margin: 0;
  max-width: 440px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.evidence-copy p {
  margin: 0.9rem 0 0;
  max-width: 470px;
  color: rgba(235, 244, 244, 0.86);
  line-height: 1.7;
  font-size: 1rem;
}

.evidence-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.evidence-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
}

.evidence-icon {
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 247, 248, 0.92));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.evidence-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
}

.evidence-icon--blue {
  color: #1787d8;
}

.evidence-icon--teal {
  color: #0e8c9d;
}

.evidence-icon--green {
  color: #18a64a;
}

.evidence-icon--amber {
  color: #d08b12;
}

.evidence-icon--sky {
  color: #1581dc;
}

.evidence-icon--indigo {
  color: #5b63e6;
}

.evidence-icon--cyan {
  color: #159bb5;
}

.evidence-icon--red {
  color: #d04d4d;
}

.evidence-item-body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.evidence-item-body p {
  margin: 0.25rem 0 0;
  color: rgba(235, 244, 244, 0.82);
  line-height: 1.5;
  font-size: 0.86rem;
}

.results-section {
  background: #ffffff;
  color: #171717;
}

.results-intro {
  max-width: 860px;
  margin: 0 auto 1.45rem;
  text-align: center;
}

.results-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #111111;
}

.results-intro p {
  margin: 0.7rem auto 0;
  max-width: 760px;
  color: #2a2a2a;
  line-height: 1.65;
  font-size: 0.98rem;
}

.results-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8e3e5, #faecee);
  border: 1px solid rgba(174, 119, 121, 0.14);
  box-shadow: 0 16px 36px rgba(83, 43, 45, 0.08);
}

.results-card + .results-card {
  margin-top: 1.25rem;
}

.results-card--secondary {
  padding-bottom: 1.15rem;
}

.results-case-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.results-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8a23a, #c88d16);
  color: #2d1d08;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.results-case-head h3 {
  margin: 0;
  flex: 1 1 320px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.15vw, 1.9rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  color: #111111;
}

.results-divider {
  height: 1px;
  margin: 1rem 0 1.15rem;
  background: rgba(99, 58, 60, 0.28);
}

.results-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.78fr);
  gap: 1.4rem;
  align-items: start;
}

.results-left {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.results-symptoms h4 {
  margin: 0 0 0.65rem;
  color: #111111;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.results-symptom-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.3rem;
  color: #2f2f2f;
  line-height: 1.45;
  font-size: 0.95rem;
}

.results-metrics {
  display: grid;
  gap: 1rem;
}

.results-group {
  display: grid;
  gap: 0.55rem;
}

.results-group-label {
  color: #191919;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.results-group-label--after {
  color: #1a8f6d;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.results-stats--single {
  grid-template-columns: 1fr;
  max-width: 180px;
}

.results-stat {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.results-stat-value {
  display: block;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.results-stat-value--before {
  color: #ce5a36;
}

.results-stat-value--after {
  color: #1d9b7a;
}

.results-stat-label {
  color: #5c4b4c;
  font-size: 0.86rem;
  line-height: 1.35;
}

.results-photo {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.results-photo-image {
  width: min(100%, 320px);
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 28px rgba(75, 45, 48, 0.14);
  object-fit: contain;
}

.results-photo-placeholder {
  width: min(100%, 320px);
  min-height: 290px;
  border-radius: 18px;
  background: #000000;
  color: #ffffff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(75, 45, 48, 0.14);
}

.results-benefits {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}

.results-benefits li {
  position: relative;
  padding-left: 1.6rem;
  color: #2a2a2a;
  line-height: 1.45;
  font-size: 0.94rem;
}

.results-benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 2px;
  background: linear-gradient(180deg, #4ccf62, #2fb64d);
  color: #0f1d13;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1rem;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(12, 55, 19, 0.18);
}

.results-case-note {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0;
  color: #3d3d3d;
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: left;
  text-align-last: auto;
}

.results-slider-panel {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7e4e7, #faecee);
  border: 1px solid rgba(174, 119, 121, 0.14);
  box-shadow: 0 16px 36px rgba(83, 43, 45, 0.08);
}

.results-slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.results-slider-copy {
  min-width: 0;
}

.results-slider-copy h3 {
  margin: 0.2rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #111111;
}

.results-slider-copy p {
  margin: 0.35rem 0 0;
  max-width: 640px;
  color: #453a3b;
  line-height: 1.55;
  font-size: 0.93rem;
}

.results-slider-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.results-slider-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #6e4c4d;
  box-shadow: 0 10px 22px rgba(75, 45, 48, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.results-slider-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.results-slider-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(75, 45, 48, 0.16);
}

.results-slider-button:focus-visible {
  outline: 2px solid #c88d16;
  outline-offset: 2px;
}

.results-slider-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: 0 6px 14px rgba(75, 45, 48, 0.08);
}

.results-slider {
  overflow: hidden;
}

.results-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1rem) / 2);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.results-slider-track::-webkit-scrollbar {
  display: none;
}

.results-slide {
  margin: 0;
  min-width: 0;
  scroll-snap-align: start;
  background: transparent;
  border-radius: 18px;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  display: grid;
}

.results-slide-frame {
  aspect-ratio: 4 / 5;
  padding: 0.6rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.results-slide figcaption {
  padding: 0.8rem 0.95rem 0.95rem;
  color: #6a5051;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.outcome-disclaimer-section {
  padding: 2.8rem 0 3.15rem;
  background: #ffffff;
  color: #14545c;
}

.outcome-disclaimer-inner {
  max-width: 1100px;
}

.outcome-disclaimer-heading {
  display: inline-grid;
  margin-bottom: 1.55rem;
}

.outcome-disclaimer-title {
  padding-left: 1.1rem;
  color: #14545c;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.outcome-disclaimer-heading p {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0.08rem 0 0;
  padding: 0.32rem 1.45rem 0.34rem 1.1rem;
  border-radius: 999px;
  background: #155b63;
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1;
  font-weight: 800;
}

.outcome-factor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 2.3rem;
}

.outcome-factor {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.72rem;
  padding: 0 1.35rem;
  text-align: center;
}

.outcome-factor:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 2px;
  height: 76px;
  background: #14545c;
  opacity: 0.95;
}

.outcome-factor img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.outcome-factor p {
  margin: 0;
  color: #171717;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 500;
}

.outcome-proof-box {
  padding: 1.5rem 2.1rem 1.65rem;
  border: 3px solid #dba63a;
  border-radius: 28px;
}

.outcome-proof-box h3 {
  margin: 0;
  color: #dba63a;
  font-size: 1.27rem;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.outcome-proof-box p {
  margin: 0.18rem 0 0;
  color: #14545c;
  font-size: 1rem;
  line-height: 1.38;
  font-weight: 500;
  text-align: justify;
}

.doctors-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 32%),
    linear-gradient(180deg, #f7f2e9, #f2ece0);
  padding: clamp(4.8rem, 8vw, 6.8rem) 0;
  overflow: hidden;
}

.doctors-section__container {
  position: relative;
}

.doctors-section__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.doctors-section__heading {
  display: flex;
  align-items: center;
}

.doctors-section__heading h2 {
  margin: 0;
  color: #0f1838;
  font-size: clamp(3.2rem, 6.4vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.09em;
  font-weight: 800;
}

.doctors-section__gallery {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  flex-wrap: nowrap;
}

.doctor-card {
  margin: 0;
  flex: 0 0 clamp(170px, 18vw, 212px);
  aspect-ratio: 1 / 1.02;
  padding: 0.34rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.92));
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 32px rgba(24, 26, 29, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.doctor-card__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: center top;
  background: #ddd6cb;
  filter: saturate(1.02) contrast(1.02);
}

.eyebrow {
  color: var(--gold);
  background: rgba(202, 150, 41, 0.08);
  padding: 0.45rem 0.9rem;
  margin-bottom: 0.9rem;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.about-copy p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.about-panel {
  background: var(--surface);
  border: 1px solid rgba(15, 28, 31, 0.08);
  box-shadow: var(--card-shadow);
}

.about-section {
  background:
    radial-gradient(circle at top right, rgba(202, 150, 41, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(244, 241, 235, 0.92), rgba(247, 244, 238, 0.96));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #314247;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #dba63a, #ca9629);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.about-panel {
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  display: grid;
  gap: 0.9rem;
}

.panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(13, 77, 79, 0.05), rgba(13, 77, 79, 0.02));
}

.panel-item span {
  color: var(--muted);
  font-weight: 700;
}

.panel-item strong {
  text-align: right;
  color: var(--ink);
  font-size: 1rem;
}

.footer-cta-section {
  background: linear-gradient(180deg, #135255, #0f4345);
  padding: 0;
  scroll-margin-top: 100px;
}

.footer-cta {
  padding: 3.4rem 1.2rem 2.8rem;
  text-align: center;
  color: #fff;
  max-width: 860px;
}

.footer-cta-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin: 0.65rem 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.footer-cta h2 span {
  display: block;
  font-style: italic;
}

.footer-cta p {
  margin: 0.9rem auto 0;
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #25d366, #1fb95a);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(29, 180, 88, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.footer-wa-btn:hover,
.footer-wa-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 16px 34px rgba(29, 180, 88, 0.34);
}

.footer-wa-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.footer-cta-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.site-footer {
  padding: 1.55rem 0 2.25rem;
  background: #050505;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(150px, 0.7fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
  max-width: none;
  justify-items: center;
  text-align: center;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  width: min(100%, 220px);
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-map {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.footer-map-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal-900);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-map-link:hover,
.footer-map-link:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  color: var(--teal-950);
}

.footer-map-frame {
  aspect-ratio: 16 / 9;
  min-height: 220px;
}

.footer-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-contact {
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.92);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item span {
  display: block;
  overflow-wrap: anywhere;
}

@media (max-width: 960px) {
  .site-nav {
    gap: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .reference-copy-grid {
    gap: 2rem;
  }

  .reference-value-card {
    min-width: 190px;
  }

  .egfr-panel {
    max-width: 840px;
  }

  .dialysis-facts-inner {
    width: min(100% - 64px, 1320px);
  }

  .dialysis-metrics {
    gap: 1.2rem;
  }

  .natural-solution-section h2 {
    font-size: clamp(2.35rem, 5vw, 2.75rem);
  }

  .natural-solution-section .natural-solution-subtitle {
    font-size: clamp(2.05rem, 4.4vw, 2.4rem);
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    min-height: 0;
  }

  .comparison-note {
    margin-top: 1.8rem;
    padding-left: 0.95rem;
  }

  .symptom-inner {
    min-height: 300px;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 2rem;
  }

  .symptom-visual img {
    width: 360px;
    max-width: none;
    height: 300px;
    object-fit: cover;
    object-position: center top;
  }

  .symptom-content h2 {
    font-size: clamp(2rem, 4.6vw, 2.65rem);
  }

  .symptom-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.65rem);
  }

  .symptom-content p {
    font-size: 1rem;
  }

  .symptom-list {
    gap: 1.85rem;
    font-size: 0.98rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    max-width: none;
  }

  .faq-intro h2 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .faq-intro p {
    max-width: none;
  }

  .faq-item {
    padding: 1.05rem 1rem 1.1rem;
  }

  .results-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .results-slider-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .results-body {
    grid-template-columns: 1fr;
  }

  .results-photo {
    justify-content: center;
  }

  .results-photo-image {
    width: min(100%, 340px);
  }

  .results-photo-placeholder {
    width: min(100%, 340px);
    min-height: 260px;
  }

  .results-benefits {
    grid-template-columns: 1fr;
  }

  .results-stats--single {
    max-width: none;
  }

  .results-case-note {
    margin-top: 0.9rem;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
    gap: 2.1rem;
  }

  .evidence-copy {
    max-width: none;
  }

  .evidence-copy h2 {
    max-width: none;
  }

  .evidence-copy p {
    max-width: none;
  }

  .evidence-list {
    margin-top: 1.15rem;
  }

  .evidence-item {
    padding: 0.85rem 0.95rem;
  }

  .doctors-section__layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .outcome-disclaimer-inner {
    width: min(100% - 48px, 1100px);
  }

  .outcome-factor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.75rem;
  }

  .outcome-factor {
    padding: 0 1rem;
  }

  .outcome-factor:not(:last-child)::after {
    display: none;
  }

  .doctors-section__heading {
    justify-content: center;
    text-align: center;
  }

  .doctors-section__gallery {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1160px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    padding: 0.75rem 0;
  }

  .brand {
    width: clamp(118px, 34vw, 156px);
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-actions {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(15, 28, 31, 0.08);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(11, 30, 32, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 9;
  }

  .site-header.is-open .header-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 0.96rem;
  }

  .site-nav a {
    width: 100%;
    padding: 0.95rem 0.2rem;
  }

  .site-nav a::after {
    bottom: 0.45rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero-inner {
    width: min(100% - 20px, 1160px);
    padding: 2.2rem 0 3.9rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7.4vw, 2.3rem);
    line-height: 1.12;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .reference-section {
    padding: 3.4rem 0 3.7rem;
  }

  .reference-intro {
    margin-bottom: 1.4rem;
  }

  .reference-intro h2 {
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

  .reference-intro p {
    font-size: clamp(1.05rem, 5vw, 1.4rem);
  }

  .reference-copy-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .reference-copy {
    font-size: 0.95rem;
  }

  .reference-value-stack {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .reference-value-card {
    min-width: 0;
  }

  .egfr-panel h3 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .egfr-nowrap {
    white-space: normal;
  }

  .egfr-table {
    font-size: 0.92rem;
  }

  .egfr-table th,
  .egfr-table td {
    padding: 0.62rem 0.6rem;
  }

  .dialysis-facts-section {
    padding: 2.8rem 0 3rem;
  }

  .dialysis-facts-inner {
    width: min(100% - 32px, 1320px);
  }

  .dialysis-facts-section h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    white-space: normal;
  }

  .dialysis-facts-lead {
    margin-top: 0.9rem;
  }

  .dialysis-facts-section p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .dialysis-metrics {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    margin: 1.25rem auto 1.35rem;
    max-width: 420px;
  }

  .dialysis-metric strong {
    min-height: 46px;
  }

  .dialysis-facts-section h3 {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
  }

  .dialysis-facts-section h3 span {
    white-space: normal;
  }

  .natural-solution-section {
    padding: 3rem 0 3.15rem;
  }

  .natural-solution-section .eyebrow {
    margin-bottom: 0.95rem;
    font-size: 0.64rem;
  }

  .natural-solution-section h2 {
    font-size: 2.1rem;
    white-space: normal;
  }

  .natural-solution-section .natural-solution-subtitle {
    margin: 0.18rem 0 0.75rem;
    font-size: 1.72rem;
    white-space: normal;
  }

  .natural-solution-section p,
  .natural-solution-list {
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .natural-solution-list {
    margin: 1rem 0 1.2rem;
  }

  .natural-solution-goal {
    text-align: justify;
    text-align-last: left;
  }

  .comparison-section {
    padding: 2.6rem 0 2.9rem;
  }

  .comparison-inner {
    width: min(100% - 32px, 1040px);
  }

  .comparison-intro {
    margin-bottom: 1.15rem;
  }

  .comparison-intro h2 {
    font-size: 1.65rem;
  }

  .comparison-intro p {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .comparison-grid {
    gap: 0.82rem;
  }

  .comparison-card {
    padding: 0.72rem 0.82rem 0.78rem;
    border-radius: 8px;
  }

  .comparison-number {
    font-size: 1.55rem;
  }

  .comparison-label {
    font-size: 0.62rem;
  }

  .comparison-card p,
  .comparison-note {
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .comparison-note {
    margin-top: 1.65rem;
    padding-left: 0.78rem;
  }

  .evidence-section {
    padding: 4.3rem 0 4.5rem;
  }

  .evidence-grid {
    gap: 1.9rem;
  }

  .evidence-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .evidence-copy p {
    font-size: 0.96rem;
  }

  .evidence-item {
    gap: 0.8rem;
  }

  .evidence-icon {
    flex-basis: 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  .evidence-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .evidence-item-body h3 {
    font-size: 0.94rem;
  }

  .evidence-item-body p {
    font-size: 0.84rem;
  }

  .results-section {
    padding: 4.2rem 0 4.4rem;
  }

  .results-intro {
    margin-bottom: 1.2rem;
  }

  .results-intro h2 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .results-card {
    padding: 1.05rem;
    border-radius: 18px;
  }

  .results-case-head h3 {
    font-size: clamp(1.2rem, 5.5vw, 1.55rem);
  }

  .results-divider {
    margin: 0.95rem 0 1rem;
  }

  .results-body {
    gap: 1.15rem;
  }

  .results-symptom-list,
  .results-benefits li,
  .results-stat-label {
    font-size: 0.92rem;
  }

  .results-stats {
    gap: 0.8rem;
  }

  .results-stats {
    grid-template-columns: 1fr;
  }

  .results-photo-image {
    width: min(100%, 280px);
  }

  .results-photo-placeholder {
    width: min(100%, 280px);
    min-height: 220px;
    font-size: clamp(1.2rem, 7vw, 1.7rem);
  }

  .results-case-note {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .outcome-disclaimer-section {
    padding: 2.7rem 0 2.9rem;
  }

  .outcome-disclaimer-inner {
    width: min(100% - 28px, 1100px);
  }

  .outcome-disclaimer-heading {
    margin-bottom: 1.3rem;
  }

  .outcome-disclaimer-title {
    padding-left: 0.9rem;
    font-size: 0.92rem;
  }

  .outcome-disclaimer-heading p {
    min-height: 30px;
    padding: 0.34rem 1rem;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .outcome-factor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
    margin-bottom: 1.9rem;
  }

  .outcome-factor {
    gap: 0.55rem;
    padding: 0;
  }

  .outcome-factor img {
    width: 74px;
    height: 74px;
  }

  .outcome-factor p {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .outcome-proof-box {
    padding: 1.1rem 1.05rem 1.18rem;
    border-width: 2px;
    border-radius: 18px;
  }

  .outcome-proof-box h3 {
    font-size: 1.02rem;
  }

  .outcome-proof-box p {
    font-size: 0.88rem;
    line-height: 1.45;
    text-align: left;
  }

  .results-slider-panel {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .results-slider-track {
    grid-auto-columns: 100%;
    gap: 0.85rem;
  }

  .results-slider-copy p {
    max-width: none;
    font-size: 0.9rem;
  }

  .condition-section {
    min-height: 0;
    padding: 2.7rem 0;
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 54%, rgba(255, 255, 255, 0.78) 100%),
      url("assets/img/GINJAL.png") calc(100% + 170px) 42% / cover no-repeat;
  }

  .condition-section .container {
    width: min(100% - 32px, 1160px);
  }

  .condition-intro {
    max-width: 100%;
  }

  .condition-intro h2 {
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

  .condition-intro h3 {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
  }

  .condition-intro p {
    font-size: 0.98rem;
  }

  .condition-list {
    grid-template-columns: minmax(0, 1fr) minmax(10.5rem, 0.9fr);
    font-size: 0.95rem;
  }

  .condition-list ul {
    padding-left: 1.1rem;
    line-height: 1.45;
  }

  .symptom-section {
    padding: 0;
  }

  .symptom-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .symptom-visual {
    order: 1;
    height: 270px;
    align-items: center;
  }

  .symptom-visual img {
    width: min(112%, 390px);
    max-width: none;
    height: 270px;
    object-fit: cover;
    object-position: center top;
  }

  .symptom-content {
    order: 2;
    padding: 1.5rem 0 2rem;
  }

  .symptom-content h2 {
    font-size: clamp(2rem, 8.5vw, 2.7rem);
  }

  .symptom-content h3 {
    font-size: clamp(1.25rem, 5.8vw, 1.6rem);
  }

  .symptom-content p {
    font-size: 1rem;
    text-align: justify;
    text-align-last: left;
  }

  .symptom-list {
    grid-template-columns: minmax(0, 1fr) minmax(10.5rem, 0.9fr);
    gap: 1.1rem;
    font-size: 1rem;
  }

  .symptom-list ul {
    padding-left: 1.1rem;
    line-height: 1.45;
  }

  .doctors-section {
    padding: 3.8rem 0;
  }

  .doctors-section__heading h2 {
    font-size: clamp(2.6rem, 12vw, 3.35rem);
  }

  .doctors-section__gallery {
    gap: 0.8rem;
  }

  .doctor-card {
    flex-basis: clamp(140px, 42vw, 180px);
    padding: 0.28rem;
    border-radius: 24px;
  }

  .doctor-card__image {
    border-radius: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    flex: 1 1 240px;
  }

  .footer-cta {
    padding: 2.8rem 1rem 2.4rem;
  }

  .footer-cta h2 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .footer-wa-btn {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin: 1.1rem auto 0;
  }

  .footer-brand-mark {
    width: min(100%, 200px);
  }

  .footer-map-link {
    top: 12px;
    left: 12px;
    min-height: 34px;
    padding: 0.4rem 0.75rem;
    font-size: 0.84rem;
  }

  .footer-map-frame {
    min-height: 200px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 1.25rem;
  }

  .footer-contact-item {
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .header-actions {
    padding: 0.9rem;
  }

  .condition-section {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 68%, rgba(255, 255, 255, 0.86) 100%),
      url("assets/img/GINJAL.png") calc(100% + 110px) 42% / cover no-repeat;
  }

  .condition-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .symptom-visual {
    height: 245px;
  }

  .symptom-visual img {
    width: min(116%, 340px);
    max-width: none;
    height: 245px;
    object-fit: cover;
    object-position: center top;
  }

  .symptom-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .outcome-factor-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .outcome-factor {
    max-width: 280px;
    margin: 0 auto;
  }

  .doctors-section__gallery {
    gap: 0.7rem;
  }

  .doctor-card {
    flex-basis: calc((100% - 0.7rem) / 2);
    min-width: 0;
  }

  .doctors-section__heading h2 {
    font-size: clamp(2.25rem, 15vw, 2.95rem);
  }

  .results-slider-panel {
    padding: 0.82rem;
  }

  .results-slider-button {
    width: 40px;
    height: 40px;
  }

  .results-slider-copy h3 {
    font-size: clamp(1.1rem, 6vw, 1.4rem);
  }

  .results-slide figcaption {
    padding-inline: 0.85rem;
    font-size: 0.74rem;
  }

  .footer-map-frame {
    min-height: 180px;
  }
}
