:root {
  --teal: #14B8A6;
  --teal-dark: #0d9488;
  --navy: #334155;
  --navy-dark: #1e293b;
  --orange: #f2733e;
  --orange-dark: #e05f2a;
  --bg-mint: #f0fdfa;
  --border: #e2e8f0;
  --muted: #64748b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy-dark);
  background: #fff;
  line-height: 1.5;
}

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

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

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 21px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-klik { color: var(--navy-dark); }
.logo-india { color: var(--teal); }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.main-nav a:hover { color: var(--teal-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
}

.btn-outline {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: transparent;
}
.btn-outline:hover { background: var(--bg-mint); }

.btn-ghost {
  color: var(--navy);
  background: transparent;
}
.btn-ghost:hover { color: var(--teal-dark); }

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 100%);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e7f9f5;
  color: var(--teal-dark);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-title {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.hero-title .accent { color: var(--teal); }

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 17px;
}

.search-bar {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 180px;
  padding: 6px 14px;
  color: var(--navy);
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  background: transparent;
  color: var(--navy-dark);
}

.city-field, .state-field, .category-field {
  border-left: 1px solid var(--border);
}

.search-field select:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.field-icon { color: var(--muted); flex-shrink: 0; }

.search-btn { border-radius: 999px; padding: 12px 26px; }

/* ---------- Listings ---------- */
.listings { padding: 56px 0 64px; }

.listings-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.listings-header h2 {
  font-size: 26px;
  margin: 0;
}

.muted { color: var(--muted); font-size: 14.5px; }

.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.lab-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  background: #fff;
}

.lab-card h3 {
  margin: 0;
  font-size: 18px;
}

.lab-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.category-badge {
  flex-shrink: 0;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.category-badge.lab {
  background: var(--bg-mint);
  color: var(--teal-dark);
}

.category-badge.radiology {
  background: #fff1e9;
  color: var(--orange-dark);
}

.lab-tests {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.lab-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.lab-price .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-dark);
}

.lab-price .original {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 15px;
}

.lab-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 14px;
  font-weight: 600;
}

.lab-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--muted);
}

.lab-badges span { display: flex; align-items: center; gap: 6px; }
.lab-badges .check { color: var(--teal-dark); }

.lab-card .btn-primary {
  margin-top: 4px;
  border-radius: var(--radius-sm);
  width: 100%;
}

.empty-state, .loading-state {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* ---------- Section heading helpers ---------- */
.section-eyebrow {
  text-align: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--navy-dark);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15.5px;
  margin: 0 0 36px;
}

/* ---------- Popular tags & hero stats ---------- */
.popular-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 10px;
}

.popular-label { color: var(--muted); font-size: 14px; font-weight: 600; }

.tag-pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--navy);
}

.tag-pill:hover { border-color: var(--teal); color: var(--teal-dark); }

.compare-cities-link {
  display: block;
  text-align: center;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 0;
}

.hero-stat-label {
  font-size: 12.5px;
  color: var(--muted);
  margin: 4px 0 0;
}

/* ---------- Today's Deals ---------- */
.deals-section {
  background: linear-gradient(135deg, #fff7ed, #fff);
  padding: 56px 0;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.deal-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.deal-badge {
  align-self: flex-start;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.deal-card h3 { margin: 4px 0 0; font-size: 17px; }

.deal-offer-text {
  margin: 0;
  font-size: 13.5px;
  color: var(--orange-dark);
  font-weight: 600;
}

.deal-btn { margin-top: 4px; border-radius: var(--radius-sm); }

/* ---------- Popular Diagnostic Tests ---------- */
.popular-tests { padding: 60px 0; }

.popular-tests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.test-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.test-card h3 { margin: 0 0 8px; font-size: 15.5px; }
.test-desc { margin: 0 0 16px; font-size: 13px; color: var(--muted); min-height: 36px; }

.test-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.test-from { font-weight: 700; color: var(--navy-dark); font-size: 14px; }

.test-book {
  background: var(--bg-mint);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
}

.view-all-wrap { text-align: center; margin-top: 30px; }

/* ---------- Second stats bar ---------- */
.stats-bar-2 {
  background: var(--navy-dark);
  padding: 36px 0;
}

.stats-bar-2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-bar-2 .hero-stat-num { color: #fff; }
.stats-bar-2 .hero-stat-label { color: rgba(255,255,255,0.75); }

/* ---------- For Patients / For Laboratories ---------- */
.dual-cta { padding: 64px 0; }

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dual-cta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.dual-cta-eyebrow {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.dual-cta-eyebrow.orange { color: var(--orange); }

.dual-cta-card h2 { font-size: 22px; margin: 0 0 10px; }
.dual-cta-card > p.muted { margin: 0 0 20px; }

.dual-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dual-cta-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--navy); }
.dual-cta-list .check { color: var(--teal-dark); font-weight: 700; }

/* ---------- Home collection ---------- */
.home-collection {
  background: var(--bg-mint);
  padding: 64px 0;
}

.home-collection-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.hc-title { font-size: 28px; font-weight: 800; margin: 0 0 14px; color: var(--navy-dark); }
.hc-desc { margin: 0 0 20px; }

.hc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-list li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--navy); }
.hc-list .check { color: var(--teal-dark); font-weight: 700; }

.hc-badge-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.hc-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.hc-badge-title { font-weight: 700; font-size: 17px; margin: 0 0 4px; color: var(--navy-dark); }

/* ---------- Cities section ---------- */
.cities-section { padding: 64px 0; }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.city-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 14.5px;
}

.city-card:hover { border-color: var(--teal); background: var(--bg-mint); }
.city-card .muted { font-weight: 500; font-size: 12.5px; }

/* ---------- Trust badges row ---------- */
.trust-badges {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .popular-tests-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-2-grid { grid-template-columns: repeat(2, 1fr); }
  .dual-cta-grid { grid-template-columns: 1fr; }
  .home-collection-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .popular-tests-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Price comparison showcase ---------- */
.price-showcase {
  background: var(--bg-mint);
  padding: 60px 0;
}

.showcase-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 32px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.showcase-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.showcase-card h3 { margin: 6px 0 0; font-size: 16.5px; }

.showcase-best {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-md);
}

.showcase-badge {
  position: absolute;
  top: -13px;
  left: 16px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
}

.showcase-badge.best { background: var(--orange); }
.showcase-badge.top { background: var(--teal); }

.showcase-card .lab-badges {
  min-height: 20px;
}

.best-price { color: var(--orange); }

.showcase-btn { margin-top: auto; border-radius: var(--radius-sm); }

.savings-banner {
  margin-top: 28px;
  background: var(--teal-dark);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: var(--radius);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 3 Easy Steps ---------- */
.easy-steps { padding: 64px 0; }

.easy-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.easy-step-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.easy-step-num {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 20px;
}

.easy-step-num.teal { background: var(--teal); }
.easy-step-num.orange { background: var(--orange); }

.easy-step-card h3 { margin: 0 0 8px; font-size: 18px; }
.easy-step-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- About page ---------- */
.about-hero {
  background: var(--bg-mint);
  padding: 56px 0 44px;
  text-align: center;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--navy-dark);
  line-height: 1.2;
}

.about-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.about-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 0;
}

.about-story {
  padding: 56px 0;
}

.about-story-inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-inner p { font-size: 15.5px; line-height: 1.7; }

.easy-steps-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .easy-steps-grid.four-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .easy-steps-grid.four-col { grid-template-columns: 1fr; }
}

/* ---------- Legal pages ---------- */
.legal-page { padding: 48px 0 64px; }

.legal-container { max-width: 720px; }

.legal-container h1 {
  font-size: 30px;
  margin: 0 0 8px;
  color: var(--navy-dark);
}

.legal-updated { margin: 0 0 28px; font-size: 13.5px; }

.legal-container h2 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--navy-dark);
}

.legal-container p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--navy);
  margin: 0 0 8px;
}

.legal-container a { color: var(--teal-dark); font-weight: 600; }

/* ---------- Blog page ---------- */
.blog-hero {
  background: var(--bg-mint);
  padding: 56px 0 30px;
  text-align: center;
}

.blog-empty { padding: 20px 0 64px; }

.blog-empty-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px 30px;
}

.blog-empty-icon { font-size: 40px; display: block; margin-bottom: 14px; }

/* ---------- Login page ---------- */
.login-section {
  background: var(--bg-mint);
  padding: 56px 0 64px;
  min-height: 50vh;
}

.login-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 30px;
  color: var(--navy-dark);
}

.login-card { max-width: 420px; margin: 0 auto; }

.login-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
}

.login-note a { color: var(--teal-dark); font-weight: 600; }

/* ---------- Register Lab / Pricing page ---------- */

/* Partner hero */
.partner-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  padding: 56px 0 40px;
  text-align: center;
}

.partner-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 10px;
}

.partner-sub {
  font-size: 16px;
  opacity: 0.92;
  margin: 0 0 24px;
}

.partner-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.partner-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
}

.trial-banner {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 24px;
}

.partner-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  color: var(--navy-dark);
  padding-right: 22px;
  border-right: 1px solid var(--border);
}

.info-item:last-of-type { border-right: none; }

.info-icon { font-size: 22px; flex-shrink: 0; }

.info-title { margin: 0; font-weight: 700; font-size: 15px; }
.info-desc { margin: 2px 0 0; font-size: 13px; color: var(--muted); }

.info-cta { border-radius: 999px; flex-shrink: 0; }

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.step-item.active .step-circle {
  background: var(--orange);
  border-color: var(--orange);
}

.step-item.done .step-circle {
  background: #fff;
  color: var(--teal-dark);
  border-color: #fff;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 6px;
  margin-bottom: 20px;
  min-width: 16px;
}

/* Registration form */
.reg-form-section {
  padding: 44px 0 64px;
  background: var(--bg-mint);
}

.reg-form { max-width: 640px; margin: 0 auto; }

.form-step { display: none; }
.form-step.active { display: block; }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.form-card-title {
  font-size: 20px;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  margin: 0 0 8px;
}

.field-input {
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  background: #eafaf6;
  color: var(--navy-dark);
  margin-bottom: 18px;
  resize: vertical;
}

.field-input::placeholder { color: #5f9d92; }

.field-input:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

select.field-input:disabled {
  color: #8fb8b0;
  cursor: not-allowed;
}

.file-input {
  padding: 10px 14px;
  cursor: pointer;
}

.field-hint {
  margin: -12px 0 18px;
  font-size: 12.5px;
}

.doc-step-note {
  background: var(--bg-mint);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  margin: -6px 0 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.checkbox-single { margin-bottom: 18px; }

.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eafaf6;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-dark);
  cursor: pointer;
}

.checkbox-pill input { width: 16px; height: 16px; accent-color: var(--teal); }

.form-next-btn, .form-submit-btn {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 15.5px;
}

.form-btn-row {
  display: flex;
  gap: 12px;
}

.form-btn-row .form-back-btn {
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  padding: 14px 22px;
}

.form-btn-row .form-next-btn,
.form-btn-row .form-submit-btn {
  flex: 1;
}

.review-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 18px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.review-label { color: var(--muted); flex-shrink: 0; }
.review-value { color: var(--navy-dark); font-weight: 600; text-align: right; }

.review-note { font-size: 13px; margin: 0; }

.success-card {
  text-align: center;
  padding: 48px 30px;
}

.success-icon { font-size: 48px; margin-bottom: 16px; }

.pricing-plans-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-plans-header h2 {
  font-size: 26px;
  margin: 0 0 8px;
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .partner-info-card { flex-direction: column; align-items: stretch; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 14px; }
  .step-label { display: none; }
  .step-indicator { max-width: 100%; }
}

.pricing-hero {
  text-align: center;
  padding: 56px 0 24px;
  background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 100%);
}

.pricing-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--navy-dark);
}

.pricing-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}

.pricing-plans { padding: 40px 0 64px; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.plans-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
}

.plans-grid-4 .plan-card {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.plan-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-popular {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: -2px;
  right: -2px;
  background: var(--teal);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 8px;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -28px -26px 20px;
}

.plan-name {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 6px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-price .amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-dark);
}

.plan-price .period {
  color: var(--muted);
  font-size: 15px;
}

.plan-gst {
  margin: 2px 0 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.plan-save {
  display: inline-block;
  background: var(--bg-mint);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 4px 0 8px;
}

.plan-billed {
  font-size: 13.5px;
  margin: 0 0 20px;
}

.plan-btn {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 12px;
  background: var(--navy-dark);
  color: #fff;
  border: none;
}
.plan-btn:hover { background: #14213d; }

.plan-details-link {
  display: block;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: underline;
  margin-bottom: 22px;
}

.plan-features {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--navy);
}

.plan-features .check {
  color: var(--teal-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.gst-note {
  text-align: center;
  font-size: 13px;
  margin-top: 28px;
}

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

@media (min-width: 641px) and (max-width: 1024px) {
  .plans-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}

/* ---------- Contact page ---------- */
.contact-hero {
  background: var(--bg-mint);
  padding: 56px 0 48px;
  text-align: center;
}

.contact-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--navy-dark);
}

.contact-sub {
  max-width: 520px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 16px;
}

.contact-info-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  text-align: left;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: #d7f3ec;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13.5px;
}

.contact-info-value {
  margin: 0;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 15.5px;
}

.partnership-callout {
  background: #fff;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 26px 28px;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.partnership-title {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--orange);
  font-size: 15px;
}

.partnership-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14.5px;
}

.partnership-link {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14.5px;
}

.partnership-icon {
  width: 54px;
  height: 54px;
  background: var(--teal-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-form-section {
  padding: 48px 0 64px;
}

.contact-form-card {
  max-width: 620px;
  margin: 0 auto;
}

.contact-submit-btn {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 15.5px;
}

.contact-success {
  text-align: center;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 16px;
  margin: 8px 0 0;
}

@media (max-width: 640px) {
  .partnership-callout { flex-direction: column; align-items: flex-start; }
}

/* Ready to book CTA */
.book-cta {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  text-align: center;
  padding: 56px 0;
}

.book-cta-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 12px;
}

.book-cta-sub {
  font-size: 16px;
  opacity: 0.92;
  margin: 0 0 26px;
}

.book-cta-btn {
  border-radius: 999px;
  padding: 14px 30px;
  font-size: 15.5px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  background: #fafcfc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand .logo-img { height: 30px; }

.footer-tagline {
  margin: 14px 0 12px;
  max-width: 280px;
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-email {
  margin: 0;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal, #0F6E56);
  color: #fff;
  transition: opacity 0.15s ease;
}

.social-links a:hover {
  opacity: 0.85;
}

.footer-col h4 {
  font-size: 14px;
  margin: 0 0 16px;
  color: var(--navy-dark);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--muted);
}

.footer-col a:hover { color: var(--teal-dark); }

.footer-trust-row {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 18px 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav, .header-actions .btn-ghost, .header-actions .btn-outline { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-title { font-size: 32px; }
  .easy-steps-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .search-bar { border-radius: var(--radius); flex-direction: column; }
  .city-field, .state-field, .category-field { border-left: none; border-top: 1px solid var(--border); }
}

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