:root {
  --navy: #0f2a55;
  --navy-mid: #1b3b6f;
  --sky: #29abe2;
  --sky-lite: #e4f5fc;
  --sky-mid: #a8ddf3;
  --teal: #0e7ea4;
  --white: #ffffff;
  --off-white: #f6fbfe;
  --text: #111827;
  --muted: #6b7280;
  --border: #d6edf8;
  --wa: #25d366;
  --shadow-sky: rgba(41, 171, 226, 0.22);
  --shadow-nav: rgba(15, 42, 85, 0.12);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.1;
}

/* ─────────────────────────────────────────
   STICKY NAV
───────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 32px var(--shadow-nav);
}

.nav-logo img {
  height: 56px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: #0a1f3d;
  box-shadow: 0 6px 24px rgba(15, 42, 85, 0.35);
  transform: translateY(-1px);
  color: #fff;
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
}
.btn-wa:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-sky {
  background: var(--sky);
  color: var(--white);
}
.btn-sky:hover {
  background: var(--teal);
  box-shadow: 0 6px 24px var(--shadow-sky);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-lg {
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 10px;
}

/* ─────────────────────────────────────────
   HERO — DIAGONAL SPLIT
───────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* Diagonal divider */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 440px;
  width: 120px;
  height: 100%;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

/* Animated mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 600px 500px at 20% 30%,
      rgba(41, 171, 226, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 400px 400px at 60% 80%,
      rgba(14, 126, 164, 0.15) 0%,
      transparent 60%
    );
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* Dotted pattern */
.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-left {
  padding: 80px 5% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41, 171, 226, 0.18);
  border: 1px solid rgba(41, 171, 226, 0.4);
  color: var(--sky-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-left h1 em {
  font-style: normal;
  color: var(--sky);
  position: relative;
}

.hero-left h1 em::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), transparent);
  border-radius: 2px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.htrust-item {
  display: flex;
  flex-direction: column;
}
.htrust-item strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
}
.htrust-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: 0px;
  padding: 32px 28px 28px;
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  height: 520px;
}

.hero-form-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.hero-form-card p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  color: #1a1a2e;
  background: var(--light-bg);
  outline: none;
  transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--sky);
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.form-submit:hover {
  box-shadow: 0 8px 24px rgba(41, 171, 226, 0.45);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 10px;
}

/* ─────────────────────────────────────────
   PROOF BAR
───────────────────────────────────────── */
.proof-bar {
  background: linear-gradient(90deg, var(--navy-mid) 0%, var(--teal) 100%);
  padding: 0 5%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.proof-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 28px;
  margin-right: 28px;
}
.proof-item:last-child {
  border-right: none;
}

.proof-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.proof-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}
.proof-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ─────────────────────────────────────────
   SECTIONS — BASE
───────────────────────────────────────── */
.section {
  padding: 88px 5%;
}
.section-alt {
  background: var(--off-white);
}

.eyebrow {
  display: inline-block;
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
}

.s-header {
  margin-bottom: 52px;
}
.s-center {
  text-align: center;
}
.s-center .section-sub {
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   TYPES OF HERNIA — ICON GRID
───────────────────────────────────────── */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.type-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.type-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s;
}

.type-card:hover {
  border-color: var(--sky);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(41, 171, 226, 0.18);
}
.type-card:hover::before {
  transform: scaleX(1);
}

.type-emoji {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.type-card h4 {
  color: var(--navy);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.type-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   SYMPTOMS — TWO COLUMNS
───────────────────────────────────────── */
.symptoms-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sym-list {
  list-style: none;
}
.sym-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.sym-list li:last-child {
  border-bottom: none;
}

.sym-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  margin-top: 7px;
  box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.18);
}

.sym-list li strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.sym-list li span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Infographic panel */
.sym-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.sym-visual::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 171, 226, 0.2), transparent 70%);
}

.sym-visual-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
  position: relative;
}

.alert-row {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--sky);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  position: relative;
}

.alert-row strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.alert-row span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}
.alert-row.red {
  border-left-color: #ef4444;
}
.alert-row.amber {
  border-left-color: #f59e0b;
}

.sym-cta {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}

/* ─────────────────────────────────────────
   TREATMENT — TIMELINE STEPS
───────────────────────────────────────── */
.treat-bg {
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    #102d5e 50%,
    var(--teal) 100%
  );
  position: relative;
  overflow: hidden;
}
.treat-bg::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(41, 171, 226, 0.12),
    transparent 70%
  );
}

.treat-bg .eyebrow {
  color: var(--sky-mid);
}
.treat-bg .section-title {
  color: var(--white);
}
.treat-bg .section-sub {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 52px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(41, 171, 226, 0.5),
    transparent
  );
}

.tl-step {
  padding: 0 16px;
  text-align: center;
  position: relative;
}

.tl-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(41, 171, 226, 0.2);
  position: relative;
  z-index: 1;
}

.tl-step h4 {
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.tl-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   TECH / LAPAROSCOPIC SECTION
───────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tech-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: all 0.28s;
}
.tech-card:hover {
  border-color: var(--sky);
  box-shadow: 0 8px 28px rgba(41, 171, 226, 0.15);
  transform: translateX(4px);
}

.tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sky-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.tech-card h4 {
  color: var(--navy);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.tech-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Visual panel */
.tech-visual {
  background: linear-gradient(
    145deg,
    var(--sky-lite),
    rgba(41, 171, 226, 0.08)
  );
  border-radius: 20px;
  padding: 40px;
  border: 1.5px solid var(--border);
}

.tech-visual-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 14px;
  font-size: 0.82rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: left;
}
.compare-table th:first-child {
  border-radius: 8px 0 0 0;
}
.compare-table th:last-child {
  border-radius: 0 8px 0 0;
}

.compare-table td {
  padding: 11px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:nth-child(even) td {
  background: var(--sky-lite);
}

.tag-good {
  background: rgba(41, 171, 226, 0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.tag-bad {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ─────────────────────────────────────────
   TESTIMONIALS — LARGE QUOTE STYLE
───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--sky);
  box-shadow: 0 10px 32px rgba(41, 171, 226, 0.15);
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-text {
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}
.reviewer-loc {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
  transition: border 0.25s;
}
.faq-item.open {
  border-color: var(--sky);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sky-lite);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--sky);
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-item.open .faq-body {
  max-height: 280px;
  padding-bottom: 20px;
}

/* ─────────────────────────────────────────
   BOTTOM CTA STRIP
───────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 72px 5%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  left: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(41, 171, 226, 0.18),
    transparent 70%
  );
}
.cta-strip::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(41, 171, 226, 0.12),
    transparent 70%
  );
}

.cta-strip-text h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 10px;
  position: relative;
}
.cta-strip-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  max-width: 520px;
}

.cta-strip-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

/* ─────────────────────────────────────────
   FLOATING WA
───────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: waPulse 2.8s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.1);
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  }
  50% {
    box-shadow: 0 6px 44px rgba(37, 211, 102, 0.85);
  }
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow {
  animation-delay: 0.05s;
}
.hero-left h1 {
  animation-delay: 0.15s;
}
.hero-desc {
  animation-delay: 0.25s;
}
.hero-actions {
  animation-delay: 0.35s;
}
.hero-trust {
  animation-delay: 0.45s;
}
/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero::after {
    display: none;
  }
  .hero-form-panel {
    padding: 40px 6%;
    box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.18);
  }
  .symptoms-cols,
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .sym-visual,
  .tech-visual {
    display: none;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  .timeline::before {
    display: none;
  }
  .cta-strip {
    grid-template-columns: 1fr;
  }
  .proof-bar {
    flex-wrap: wrap;
  }
  .proof-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}
@media (max-width: 500px) {
  .hero-actions {
    flex-direction: column;
  }
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 10px 13px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
  }
  .nav-logo img {
    height: 50px;
  }
}
.center {
  text-align: center;
}
.center .section-tag {
  display: inline-block;
  color: var(--sky);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.center .section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

/* ---------------------common css--------------------------- */
.owl-dots {
  text-align: center;
  padding-top: 15px;
  display: flex;
  margin: auto;
  justify-content: center;
}
.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  padding: 0 5px;
  margin: 5px 2px;
  border: none;
  font-size: 16px;
  line-height: 16px;
  position: relative;
  background-color: var(--navy);
  bottom: 0px;
  display: block;
  border-radius: 50%;
}

/* Owl Dots Styling */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--sky) !important;
}
