* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2B2F33;
  background: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* CONTAINER */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 414px) {
  .container {
    padding: 0 15px;
  }
}

/* SECTIONS PARENT CLASS */
.section {
  position: relative;
  width: 100%;
}
.section--pad {
  padding: 60px 0;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 414px) {
  .container {
    padding: 0 15px;
  }
  .section--pad {
    padding: 40px 0;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--navy {
  background: #0B2341;
  color: #fff;
}
.btn--navy:hover {
  background: #132c4f;
  box-shadow: 0 10px 24px rgba(11, 35, 65, .25);
  transform: translateY(-2px);
}
.btn--gold {
  background: #C6A25A;
  color: #0B2341;
}
.btn--gold:hover {
  background: #d4b06e;
  box-shadow: 0 10px 24px rgba(198, 162, 90, .35);
  transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent;
  color: #C6A25A;
  border-color: #C6A25A;
}
.btn--outline-gold:hover {
  background: #C6A25A;
  color: #0B2341;
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.btn--outline-white:hover {
  background: #fff;
  color: #0B2341;
  border-color: #fff;
  transform: translateY(-2px);
}

/* HERO */
.compare-hero {
  background:
    radial-gradient(ellipse at 88% 20%, rgba(198, 162, 90, .14), transparent 55%),
    #FAF9F6;
  padding-top: 56px;
  padding-bottom: 0;
}
.compare-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 46px;
}
.eyebrow-plain {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #C6A25A;
  margin-bottom: 18px;
}
.compare-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.18;
  color: #0B2341;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 20px;
}
.compare-hero h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width:156px;
  height: 3px;
  background: #C6A25A;
}
.compare-hero p {
  color: #6B7280;
  font-size:17px;
  max-width:550px;
}
.podium-visual.pen {
  width:26px;
  height:180px;
  background: linear-gradient(160deg, #2B2F33, #111417 60%);
  border-radius: 14px 14px 4px 4px;
}
.podium-visual.pen::before {
  display: none;
}
.hero-podium img {
  width: 100%;
  height: auto;
}

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

@media (max-width: 414px) {
  .compare-hero {
    padding-top: 40px;
  }
  .compare-hero-grid {
    padding-bottom: 40px;
  }
}

/* INFO BAR */
.info-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f7f7;
  border: 1px solid #E6E8EB;
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 44px;
}
.info-bar-icon {
  width:60px;
  height:60px;
  border-radius: 50%;
  background: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-bar-icon svg {
  width:32px;
  height:32px;color: #ffffff;
}
.info-bar span {
  font-size:17px;
  font-weight:600;
  color: #0B2341;
}

@media (max-width: 414px) {
  .info-bar {
    margin-bottom: 30px;
  }
}

/* COMPARE LAYOUT */
.compare-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: flex-start;
}
.sidebar {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  padding: 32px 28px;
  position: sticky;
  top: 24px;
}
.sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: #0B2341;
  line-height: 1.3;
  margin-bottom: 14px;
}
.sidebar .rule {
  width: 40px;
  height: 2px;
  background: #C6A25A;
  margin-bottom: 26px;
}
.sidebar-item {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}
.sidebar-item:last-child {
  margin-bottom: 0;
}
.sidebar-icon {
  width:36px;
  height:36px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.sidebar-icon svg {
  width:25px;
  height:25px;
}
.sidebar-item h4 {
  font-size:15px;
  color: #0B2341;
  font-weight: 700;
  margin-bottom: 4px;
}
.sidebar-item p {
  font-size:15px;
  color: #6B7280;
  line-height: 1.5;
}

/* TABLE */
.compare-table {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  overflow: hidden;
}
.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
.col-label {
  display: flex;
  align-items: center;
  font-size:15px;
  font-weight: 600;
  color: #0B2341;
  padding: 14px 24px;
}
.table-head .col-label {
  font-family: '', serif;
  font-size:22px;
  font-weight:600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0b2341;
/* align-items: flex-end; */
  vertical-align:middle;
  padding-left:63pt;
}
.col-head-cell {
  padding: 22px 20px;
  text-align: center;
  border-left: 1px solid #E6E8EB;
}
.col-head-cell.highlight {
  background: #0B2341;
  border-radius: 0;
}
.col-photo {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: #F5F0E8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
}
.col-head-cell.highlight .col-photo {
  background: rgba(255, 255, 255, .08);
}
.col-photo svg {
  width: 26px;
  height: 26px;
}
.col-head-cell h4 {
  font-family: '', serif;
  font-size:22px;
  color: #0B2341;
  margin-bottom: 8px;
}
.col-head-cell.highlight h4 {
  color: #fff;
}
.col-head-cell p {
  font-size:15px;
  color: #6B7280;
  line-height: 1.4;
}
.col-head-cell.highlight p {
  color: rgba(255, 255, 255, .65);
}
.group-row {
  background: #F5F0E8;
}
.group-row .col-label {
  display: flex;
  align-items: center;
  gap:8px;
  font-size:17px;
  font-weight:700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C6A25A;
  padding: 14px 24px;
  grid-column: 1 / -1;
}
.group-row .col-label svg {
  width:25px;
  height:25px;
}
.data-row {
  border-top: 1px solid #E6E8EB;
}
.data-row:hover {
  background: rgba(198, 162, 90, .04);
}
.data-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:14px 10px;
  border-left: 1px solid #E6E8EB;
  font-size:15px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap:6px;
  padding:6px 16px;
  border-radius:20px;
  font-size:11pt;
  font-weight:500;
  white-space: nowrap;
}
.badge svg {
  width:22px;
  height:22px;
  flex-shrink: 0;
}
.badge--best-gold {
  background: #C6A25A;
  color: #ffffff;
}
.badge--best-navy {
  background: #0B2341;
  color: #fff;
}
.badge--excellent {
  background: #F3DFC7;
  color: #8a5a1c;
}
.badge--available {
  background: #E6E8EB;
  color: #6B7280;
}
.badge--check {
  background: transparent;
  color: #0B2341;
  font-weight:600;
}
.badge--check svg {
  color: #C6A25A;
}
.plain-text {
  color: #2B2F33;
  font-weight: 600;
  font-size:15px;
}
.dash {
  color: #6B7280;
  font-size:17px;
}
.legend-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #E6E8EB;
  padding: 22px 24px;
  gap: 20px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.legend-icon {
  width:40px;
  height:40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legend-icon svg {
  width:28px;
  height:28px;
}
.legend-icon.gold {
  background: #C6A25A;
  color: #ffffff;
}
.legend-icon.check {
  background: #0B2341;
  color: #fff;
}
.legend-icon.grey {
  background: #E6E8EB;
  color: #6B7280;
}
.legend-icon.dash-icon {
  background: transparent;
  color: #6B7280;
  font-weight: 700;
  font-size: 18px;
}
.legend-text strong {
  display: block;
  font-size:17px;
  color: #0B2341;
  font-weight:600;
}
.legend-text span {
  font-size:14px;
  color: #6B7280;
}

@media (max-width: 1100px) {
  .compare-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .table-row {
    grid-template-columns: 1fr;
  }
  .col-label {
    padding: 10px 16px;
  }
  .data-cell {
    border-left: none;
    border-top: 1px solid #E6E8EB;
    justify-content: flex-start;
    padding: 10px 16px;
  }
  .legend-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* WHICH CLINIC */
.which-clinic {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 18px;
  padding: 48px 44px;
}
.which-head {
  text-align: center;
  margin-bottom: 40px;
}
.which-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: #0B2341;
  margin-bottom: 10px;
}
.which-head p {
  color: #6B7280;
  font-size:17px;
}
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.clinic-card
{
  padding: 0 12px;
}
.clinic-icon {
  width:70px;
  height:70px;
  border-radius: 50%;
  background: #F5F0E8;
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.clinic-card.dark .clinic-icon {
  background: #0B2341;
  color: #C6A25A;
}
.clinic-icon svg {
  width:50px;
  height:50px;
}
.clinic-card h3 {
  font-family: 'Playfair Display', serif;
  font-size:21px;
  color: #0B2341;
  font-weight:600;
  letter-spacing: .02em;
  line-height:1.3;
  margin-bottom: 12px;
}
.clinic-card p {
  font-size:15px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom:16px;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size:15px;
  font-weight:600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #C6A25A;
  transition: gap .2s ease;
}
.learn-more svg {
  width:21px;
  height:21px;
}
.learn-more:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .clinic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 678px) {
  .which-clinic {
    padding: 30px 26px;
  }
}

@media (max-width: 414px) {
  .which-clinic {
    padding: 22px 24px;
  }
}

/* FINAL CTA */
.compare-cta {
  background: #0B2341;
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.compare-cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 280px;
}
.cta-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.cta-icon-circle svg {
  width: 24px;
  height: 24px;
}
.cta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:30px;
  color: #ffffff;
  margin-bottom:6px;
  line-height: 1.3;
}
.cta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:17px;
  max-width:650px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-footer-row {
  display: flex;
  align-items: center;
  gap:52px;  
  margin-top:10px;
  padding-top:15px;
  width: 100%;
}
.cta-footer-item {
  display: flex;
  align-items: center;
  gap:10px;
  color: #fff;
  font-size:17px;
  font-weight: 600;
}
.cta-footer-item .dot {
  width:20px;
  height:20px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-footer-item .dot svg {
  width:11px;
  height: 11px;
}

@media (max-width: 678px) {
  .compare-cta {
    padding: 30px 26px;
  }
}

@media (max-width: 414px) {
  .compare-cta {
    padding: 30px;
  }
  .cta-footer-row {
    margin-top: 0px;
  }
  .cta-footer-row {
    gap: 20px;
  }
}





