/* =========================================================
   Minna Medical Concierge Korea — Stylesheet
   Premium, calm, nurse-led medical concierge aesthetic
   ========================================================= */

:root {
  --white: #FFFFFF;
  --ivory: #FAF7F2;
  --beige: #EDE3D5;
  --blue-gray: #6D8797;
  --navy: #1F3440;
  --sage: #AEBFB4;
  --gold: #C8A96A;

  --font-heading: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --font-body: 'Inter', 'Noto Sans KR', sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 40px rgba(31, 52, 64, 0.08);
  --shadow-hover: 0 16px 50px rgba(31, 52, 64, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1rem 0; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--ivory { background-color: var(--ivory); }
.section--beige { background-color: var(--beige); }
.section--navy { background-color: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.section-head p {
  color: #46606c;
  font-size: 1.05rem;
}

.section--navy .section-head p { color: #cfd9de; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background-color: #142530; box-shadow: var(--shadow-hover); transform: translateY(-1px); }

.btn-gold {
  background-color: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background-color: #b6975a; box-shadow: var(--shadow-hover); transform: translateY(-1px); }

.btn-outline {
  background-color: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background-color: var(--navy); color: var(--white); }

.btn-outline-light {
  background-color: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover { background-color: var(--white); color: var(--navy); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,52,64,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue-gray);
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 10px 24px 24px 24px;
  border-top: 1px solid rgba(31,52,64,0.08);
}
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(31,52,64,0.06);
  font-weight: 500;
}
.mobile-menu.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
  padding: 70px 0 90px 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { }
.official-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.official-tag i { color: var(--gold); }
.official-tag .official-tag-ext { color: rgba(255,255,255,0.6); font-size: 0.7rem; }
.official-tag:hover {
  background-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.official-tag:hover i { color: var(--navy); }
.official-tag:hover .official-tag-ext { color: var(--navy); }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .subhead {
  font-size: 1.15rem;
  color: #3c545f;
  margin-bottom: 22px;
}
.hero-copy .body-copy p {
  font-size: 1rem;
  color: #45606b;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 20px 0;
}
.trust-microcopy {
  font-size: 0.86rem;
  color: var(--blue-gray);
  letter-spacing: 0.3px;
  border-top: 1px solid rgba(109,135,151,0.25);
  padding-top: 16px;
  margin-top: 8px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.94);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-width: 260px;
}
.hero-badge strong { display:block; font-size: 0.95rem; color: var(--navy); }
.hero-badge span { font-size: 0.8rem; color: var(--blue-gray); }

/* ---------- Trust badges ---------- */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.badge-card {
  background: var(--white);
  border: 1px solid rgba(31,52,64,0.08);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.badge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.badge-card--official {
  background: var(--navy);
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.badge-card--official h3 { color: var(--white); }
.badge-card--official p { color: #cfd9de; }
.badge-card--official .badge-icon { background: var(--gold); color: var(--navy); }
.badge-card--official .badge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2px;
}
.badge-card--official:hover .badge-link { text-decoration: underline; }
.badge-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px auto;
  font-size: 1.3rem;
}
.badge-card h3 { font-size: 1rem; margin-bottom: 6px; }
.badge-card p { font-size: 0.85rem; color: #56707b; margin: 0; }

.safety-note {
  background: var(--beige);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #4a3f2b;
  max-width: 900px;
  margin: 0 auto;
}
.safety-note--dark {
  background: rgba(255,255,255,0.08);
  color: #dfe7ea;
  border-left-color: var(--gold);
}

.partner-highlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,106,0.4);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  max-width: 900px;
  margin: 0 auto 30px auto;
}
.partner-highlight-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.partner-highlight h3 { font-size: 1.05rem; margin-bottom: 8px; }
.partner-highlight p { font-size: 0.92rem; color: #cfd9de; margin: 0; }

/* ---------- Meet Minna ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-media img { width: 100%; display: block; object-fit: cover; }
.about-copy .credential-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.about-copy .credential-list li {
  font-size: 0.92rem;
  color: var(--navy);
  padding-left: 26px;
  position: relative;
}
.about-copy .credential-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.pull-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
  color: #3c545f;
  margin: 22px 0;
  font-size: 1.02rem;
}

/* ---------- Who I Help ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.patient-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid rgba(31,52,64,0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.patient-card:hover { transform: translateY(-5px); }
.patient-card .card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--blue-gray);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.patient-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.patient-card p { font-size: 0.9rem; color: #56707b; flex-grow: 1; }
.patient-card .btn { margin-top: 16px; align-self: flex-start; }

/* ---------- Treatments ---------- */
.treatment-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.treatment-col {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid rgba(31,52,64,0.08);
}
.treatment-col h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--beige);
  color: var(--navy);
}
.treatment-col ul { list-style: none; padding: 0; margin: 0; }
.treatment-col li {
  font-size: 0.88rem;
  color: #45606b;
  padding: 7px 0;
  position: relative;
  padding-left: 18px;
}
.treatment-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.disclaimer-strip {
  margin-top: 34px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--blue-gray);
  font-style: italic;
}

/* ---------- Benefit blocks ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.benefit-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.benefit-card .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: #4a5f68; margin: 0; }

/* ---------- Process / How it works ---------- */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(31,52,64,0.1);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-body p { font-size: 0.92rem; color: #4a5f68; margin: 0 0 4px 0; }
.step-micro {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}
.process-cta { text-align: center; margin-top: 40px; }

/* ---------- Comparison table ---------- */
.compare-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 6px;
}
table.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
table.compare-table th, table.compare-table td {
  text-align: left;
  padding: 14px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(31,52,64,0.08);
}
table.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
table.compare-table th:first-child { border-radius: 10px 0 0 0; }
table.compare-table th:last-child { border-radius: 0 10px 0 0; }
table.compare-table tr:nth-child(even) td { background: var(--ivory); }

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
}
.checklist li {
  font-size: 0.94rem;
  color: var(--navy);
  padding-left: 30px;
  position: relative;
  padding-top: 2px;
}
.checklist li::before {
  content: "?";
  position: absolute;
  left: 0; top: -2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Safety cards ---------- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.safety-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid rgba(31,52,64,0.08);
}
.safety-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--navy);
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 12px auto;
}
.safety-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.safety-card p { font-size: 0.82rem; color: #56707b; margin: 0; }

.emergency-banner {
  margin-top: 36px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.emergency-banner i { color: var(--gold); font-size: 1.3rem; margin-top: 2px; }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(31,52,64,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 12px; }
.service-card ul { padding-left: 18px; margin: 0 0 16px 0; font-size: 0.88rem; color: #4a5f68; }
.service-card ul li { margin-bottom: 5px; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(31,52,64,0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .icon { color: var(--gold); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.94rem;
  color: #4a5f68;
  padding: 0 4px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 4px 22px 4px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}
.contact-info h2 { color: var(--white); }
.contact-info p { color: #cfd9de; }
.contact-info .whatsapp-box {
  margin-top: 26px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 0.88rem;
}
.contact-form {
  background: var(--white);
  border: 1px solid rgba(31,52,64,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31,52,64,0.2);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--ivory);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.checkbox-group input { width: auto; margin-top: 4px; }
.checkbox-group label { font-size: 0.85rem; font-weight: 400; color: #4a5f68; }
.support-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.support-options label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 0.88rem; color: var(--navy); }
.support-options input { width: auto; }
#form-success {
  display: none;
  background: var(--beige);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.9rem;
  color: #3d3222;
  margin-top: 14px;
}

/* ---------- Disclaimer ---------- */
.disclaimer-box {
  background: var(--beige);
  padding: 40px 0;
}
.disclaimer-box .container {
  max-width: 900px;
}
.disclaimer-box h2 { font-size: 1.3rem; margin-bottom: 14px; }
.disclaimer-box p { font-size: 0.86rem; color: #4a3f2b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #cfd9de;
  padding: 56px 0 26px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-size: 0.88rem; color: #a9bac2; margin-top: 10px; max-width: 320px; }
.footer-col h3 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.8rem;
  color: #90a4ad;
}
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Sticky mobile WhatsApp ---------- */
.sticky-whatsapp {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  padding: 12px 20px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
.sticky-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .badge-grid { grid-template-columns: repeat(3, 1fr); }
  .treatment-columns { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media img { min-height: 320px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 0; }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-columns { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .support-options { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .sticky-whatsapp { display: block; }
  body { padding-bottom: 66px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .badge-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
