/* ============================================================
   Hypnotherapy Pvt Ltd — Premium Clinical Design System
   Palette: Steel Grey #2F3A44 · Cool Slate #6B7C8F · Electric Blue #2D8CFF · Silver #E5E9EF
   ============================================================ */

:root {
  --white: #FFFFFF;
  --steel: #2F3A44;
  --steel-deep: #1F2830;
  --slate: #6B7C8F;
  --blue: #2D8CFF;
  --blue-deep: #1971E5;
  --silver: #E5E9EF;
  --silver-soft: #F4F6F9;
  --line: #DCE2EA;
  --shadow-sm: 0 1px 2px rgba(31,40,48,.04), 0 2px 8px rgba(31,40,48,.04);
  --shadow-md: 0 4px 16px rgba(31,40,48,.06), 0 12px 32px rgba(31,40,48,.06);
  --shadow-lg: 0 24px 60px rgba(31,40,48,.10);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 40px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--steel);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Manrope','Inter',sans-serif;
  color: var(--steel-deep);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p { color: #45525E; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--slate); line-height: 1.6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  color: var(--blue); text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--blue);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { padding: clamp(70px, 9vw, 130px) 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 14px 0 18px; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: var(--r-md);
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--steel-deep); color: var(--white);
  border: 1px solid var(--steel-deep);
}
.btn-primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--steel-deep);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--steel-deep); }
.btn-ghost { color: var(--blue); padding: 10px 0; }
.btn-ghost:hover { color: var(--blue-deep); }
.btn-arrow::after {
  content: "→"; transition: transform .25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============= NAVIGATION ============= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; color: var(--steel-deep); letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px; height: 34px;
  background: var(--steel-deep); color: var(--white);
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.95rem;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 8px; height: 8px; background: var(--blue); border-radius: 2px;
}
.brand-text { font-size: 0.95rem; line-height: 1.1; }
.brand-text span { display: block; font-weight: 500; font-size: 0.7rem; color: var(--slate); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a {
  display: inline-block; padding: 8px 14px;
  font-size: 0.88rem; font-weight: 500; color: #4F5C68;
  border-radius: 6px; position: relative;
}
.nav-menu a:hover { color: var(--steel-deep); }
.nav-menu a.active { color: var(--steel-deep); font-weight: 600; }
.nav-menu a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--blue); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 18px; font-size: 0.85rem; }

.nav-toggle {
  display: none; width: 42px; height: 42px;
  background: var(--silver-soft); border-radius: 8px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--steel-deep); border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav.open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: all .25s var(--ease);
  }
  .nav.open .nav-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 14px 4px; border-bottom: 1px solid var(--silver); }
  .nav-menu a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 130px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(45,140,255,.06), transparent 60%),
    linear-gradient(180deg, var(--silver-soft) 0%, var(--white) 60%);
  z-index: -1;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; font-size: 0.78rem; font-weight: 500; color: var(--slate);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--blue) 0%, var(--steel-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { max-width: 540px; margin-bottom: 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-meta div strong {
  display: flex; align-items: baseline; gap: 3px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  font-weight: 800; color: var(--steel-deep); line-height: 1; letter-spacing: -0.03em;
}
.hero-meta div strong .suffix { font-size: 0.6em; color: var(--blue); font-weight: 700; }
.hero-meta div span { display:block; margin-top: 8px; font-size: 0.82rem; color: var(--slate); letter-spacing: 0.02em; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--silver);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
}
.hero-badge {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}
.hero-badge-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: grid; place-items: center; flex-shrink: 0;
  font-weight: 700; font-size: 1.1rem;
}
.hero-badge-text strong { display: block; font-size: 0.95rem; color: var(--steel-deep); }
.hero-badge-text span { font-size: 0.78rem; color: var(--slate); }

/* Page hero (interior pages) */
.page-hero {
  padding: clamp(60px, 7vw, 100px) 0 clamp(50px, 6vw, 80px);
  background: var(--silver-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.page-hero .lead { max-width: 700px; }
.crumbs { font-size: 0.82rem; color: var(--slate); margin-bottom: 20px; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ============= CARDS ============= */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: all .3s var(--ease);
  position: relative;
}
.card:hover {
  border-color: var(--steel-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-num {
  display: inline-block;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 0.78rem; color: var(--blue);
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--silver-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
  transition: all .3s var(--ease);
}
.card:hover .card-icon { background: var(--steel-deep); color: var(--white); border-color: var(--steel-deep); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card-meta {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--silver);
  font-size: 0.82rem; font-weight: 600; color: var(--blue);
  display: flex; align-items: center; justify-content: space-between;
}

/* Specialty card variant */
.spec-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .3s var(--ease);
}
.spec-card:hover { border-color: var(--steel-deep); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.spec-card-img {
  aspect-ratio: 16/10; overflow: hidden; background: var(--silver);
}
.spec-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transition: transform .8s var(--ease);
}
.spec-card:hover .spec-card-img img { transform: scale(1.04); }
.spec-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.spec-card-body h3 { margin-bottom: 8px; }
.spec-card-body p { font-size: 0.92rem; flex: 1; }

/* ============= STEPS / PROCESS ============= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-right: none;
  background: var(--white);
  position: relative;
}
.step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.step:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--r-lg) var(--r-lg) 0; }
@media (max-width: 900px) {
  .step { border-right: 1px solid var(--line); border-bottom: none; }
  .step:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .step:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg); border-bottom: 1px solid var(--line); }
  .step:not(:first-child) { border-top: none; }
}
.step-num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 0.95rem; color: var(--blue);
  margin-bottom: 18px; letter-spacing: 0.05em;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.95rem; }

/* ============= STATS ============= */
.stats {
  background: var(--steel-deep); color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 3.5vw, 48px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; right: -160px; top: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(45,140,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; gap: 30px; } }

.stat {
  position: relative; z-index: 1;
  min-width: 0;
  padding-left: 18px;
  border-left: 3px solid var(--blue);
}

.stat strong {
  display: flex; align-items: baseline; gap: 4px; flex-wrap: nowrap;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.045em;
  line-height: 0.95;
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat strong [data-count] {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
}
.stat strong .suffix {
  font-size: 0.42em; color: var(--blue); font-weight: 700;
  letter-spacing: 0; margin-left: 3px;
  position: relative; top: -0.55em;
  line-height: 1;
}
.stat span {
  display: block; margin-top: 16px;
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  color: rgba(255,255,255,.7);
  letter-spacing: 0.06em;
  line-height: 1.45; text-transform: uppercase;
  font-weight: 600;
}

/* ============= TESTIMONIALS ============= */
.t-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all .3s var(--ease);
}
.t-card:hover { box-shadow: var(--shadow-md); border-color: var(--steel-deep); }
.t-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem; line-height: 1.55; color: var(--steel-deep);
  font-weight: 500;
}
.t-quote::before {
  content: "“"; display: block;
  font-family: 'Manrope', sans-serif; font-size: 3rem; line-height: 0.6;
  color: var(--blue); margin-bottom: 16px;
}
.t-meta { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--silver); display: grid; place-items: center;
  font-weight: 700; color: var(--steel-deep);
}
.t-meta strong { display: block; font-size: 0.92rem; color: var(--steel-deep); }
.t-meta span { font-size: 0.8rem; color: var(--slate); }

/* ============= FOOTER ============= */
.footer {
  background: var(--steel-deep);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
  font-size: 0.9rem;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--white); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--white); font-weight: 700; }
.footer-brand .brand-mark { background: var(--white); color: var(--steel-deep); }
.footer-brand .brand-text span { color: rgba(255,255,255,.55); }
.footer-col h4 {
  color: var(--white); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 22px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-contact p { color: rgba(255,255,255,.7); margin-bottom: 8px; line-height: 1.55; }
.footer-contact strong { color: var(--white); font-weight: 500; }

.social {
  display: flex; gap: 10px; margin-top: 18px;
}
.social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.social a:hover { background: var(--blue); border-color: var(--blue); }
.social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--blue); }

/* ============= UTILITY SECTIONS ============= */
.bg-soft { background: var(--silver-soft); }
.bg-dark { background: var(--steel-deep); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,.75); }
.bg-dark .lead { color: rgba(255,255,255,.8); }
.bg-dark .eyebrow { color: var(--blue); }
.bg-dark .eyebrow::before { background: var(--blue); }

/* CTA Banner */
.cta-banner {
  background: var(--steel-deep);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,140,255,.25) 0%, transparent 70%);
}
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.78); }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.cta-banner .btn-primary { background: var(--blue); border-color: var(--blue); }
.cta-banner .btn-primary:hover { background: var(--white); color: var(--steel-deep); border-color: var(--white); }
.cta-banner .btn-outline { color: var(--white); border-color: rgba(255,255,255,.3); }
.cta-banner .btn-outline:hover { border-color: var(--white); }
@media (max-width: 800px) { .cta-banner-actions { justify-content: flex-start; } }

/* Two-col content */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }

/* Feature list */
.feature-list { list-style: none; display: grid; gap: 16px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--silver-soft);
  border-radius: var(--r-md);
  border-left: 3px solid var(--blue);
}
.feature-list li strong { display: block; color: var(--steel-deep); margin-bottom: 2px; }
.feature-list li span { font-size: 0.92rem; color: var(--slate); }

/* Check list */
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.96rem;
}
.check-list li::before {
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blue) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center/12px no-repeat;
  border-radius: 50%;
  margin-top: 2px;
}

/* Service detail block */
.service-detail {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.service-detail:first-of-type { border-top: none; padding-top: 0; }
.service-detail:last-of-type { padding-bottom: 0; }
@media (max-width: 800px) { .service-detail { grid-template-columns: 1fr; gap: 18px; } }
.service-detail h3 { font-size: 1.4rem; }
.service-detail-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 700px) { .service-detail-body { grid-template-columns: 1fr; } }
.service-detail-body div h4 {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.service-detail-body div p { font-size: 0.93rem; }

/* Timeline */
.timeline {
  position: relative;
  display: grid; gap: 30px;
  padding-left: 40px;
}
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: var(--silver);
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: ""; position: absolute; left: -36px; top: 6px;
  width: 22px; height: 22px;
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 50%;
}
.timeline-item h3 { margin-bottom: 8px; font-size: 1.15rem; }
.timeline-item .tl-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: 6px;
}

/* Tabs (myths/facts) */
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  border-radius: var(--r-lg); padding: 30px;
  border: 1px solid var(--line);
}
.compare-myth { background: var(--silver-soft); }
.compare-fact { background: var(--white); border-color: var(--steel-deep); }
.compare-col h3 { margin-bottom: 18px; }
.compare-col h3 small {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 3px 10px; border-radius: 999px;
  text-transform: uppercase; margin-right: 8px;
  vertical-align: 4px;
}
.compare-myth h3 small { background: #FCEBEC; color: #C5444B; }
.compare-fact h3 small { background: #E5F2FF; color: var(--blue-deep); }
.compare-col ul { list-style: none; display: grid; gap: 10px; }
.compare-col li {
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px dashed var(--silver);
}
.compare-col li:last-child { border-bottom: none; }

/* Diagram */
.diagram {
  background: var(--silver-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 50px 30px;
  text-align: center;
}
.diagram-rings {
  position: relative;
  width: min(360px, 100%); aspect-ratio: 1;
  margin: 0 auto;
  display: grid; place-items: center;
}
.ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--slate);
  opacity: 0.4;
}
.ring.r2 { inset: 18%; }
.ring.r3 { inset: 36%; border-style: solid; opacity: .8; border-color: var(--blue); }
.ring-label {
  position: absolute;
  font-size: 0.78rem; font-weight: 600;
  background: var(--white); padding: 4px 12px; border-radius: 999px;
  border: 1px solid var(--line);
}
.ring-label.l1 { top: 6px; left: 50%; transform: translateX(-50%); }
.ring-label.l2 { top: 50%; right: 6px; transform: translateY(-50%); }
.ring-label.l3 { bottom: 6px; left: 50%; transform: translateX(-50%); }
.ring-core {
  width: 28%; height: 28%;
  background: var(--blue); color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.85rem;
  text-align: center; line-height: 1.2;
  box-shadow: 0 8px 24px rgba(45,140,255,.3);
}

/* Insights / Blog */
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .3s var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-img {
  aspect-ratio: 4/5; background: var(--silver); overflow: hidden;
}
.blog-card-img img { width:100%; height:100%; object-fit: cover; object-position: center top; transition: transform .8s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.blog-card p { font-size: 0.93rem; flex: 1; }
.blog-card-meta {
  margin-top: 18px; font-size: 0.82rem; color: var(--slate);
  display: flex; justify-content: space-between;
}

/* Media gallery — uniform grid, faces preserved */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .media-grid { grid-template-columns: 1fr; } }
.media-item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  background: var(--silver);
  cursor: zoom-in;
  aspect-ratio: 4/5;
}
.media-item.video-item { aspect-ratio: 4/5; }
.media-item img, .media-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease);
}
.media-item:hover img { transform: scale(1.04); }
.media-item .play-btn {
  position: absolute; inset: 0; display: grid; place-items: center;
  pointer-events: none;
}
.media-item .play-btn span {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.media-item .play-btn span::before {
  content: ""; display: block;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--steel-deep);
  margin-left: 4px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,22,30,.92);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.active { display: flex; }
.lightbox img, .lightbox video {
  max-width: 92vw; max-height: 88vh; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%; color: var(--white);
  font-size: 1.4rem;
  display: grid; place-items: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ============= FORM ============= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: span 2; }
@media (max-width: 700px) { .field.full { grid-column: span 1; } }
.field label {
  font-size: 0.82rem; font-weight: 600; color: var(--steel-deep);
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: inherit; font-size: 0.95rem;
  color: var(--steel-deep);
  background: var(--white);
  transition: all .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45,140,255,.12);
}
.field textarea { resize: vertical; min-height: 130px; }

/* Contact info card */
.contact-info {
  background: var(--steel-deep); color: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
}
.contact-info h3 { color: var(--white); margin-bottom: 22px; }
.contact-info ul { list-style: none; display: grid; gap: 18px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.contact-info li strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 4px; font-weight: 600; }
.contact-info li span, .contact-info li a { color: var(--white); font-size: 0.96rem; }
.contact-info li a:hover { color: var(--blue); }
.contact-info .social { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }

/* About profile block */
.profile-block {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .profile-block { grid-template-columns: 1fr; gap: 40px; } }
.profile-img {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.profile-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.profile-img-tag {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--white); padding: 14px 18px; border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.profile-img-tag strong { display: block; font-size: 1.1rem; color: var(--steel-deep); }
.profile-img-tag span { font-size: 0.78rem; color: var(--slate); letter-spacing: 0.08em; text-transform: uppercase; }

/* Cred grid */
.cred-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 30px;
}
@media (max-width: 800px) { .cred-grid { grid-template-columns: repeat(2,1fr); } }
.cred {
  background: var(--silver-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
}
.cred strong { display: block; font-size: 0.92rem; color: var(--steel-deep); }
.cred span { font-size: 0.78rem; color: var(--slate); }

/* Result/case block */
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  align-items: start;
}
@media (max-width: 600px) { .case-card { grid-template-columns: 1fr; } }
.case-num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 2rem; color: var(--blue); line-height: 1;
}
.case-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.case-card p { font-size: 0.93rem; margin-bottom: 14px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.case-meta .tag {
  font-size: 0.74rem; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: var(--silver-soft); color: var(--steel-deep);
  border: 1px solid var(--line);
}

/* Pre/Post block */
.prepost {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 16px; align-items: center;
}
@media (max-width: 700px) { .prepost { grid-template-columns: 1fr; } }
.pp-col {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; background: var(--silver-soft);
}
.pp-col.after { background: var(--steel-deep); color: var(--white); border-color: var(--steel-deep); }
.pp-col.after h4, .pp-col.after p { color: var(--white); }
.pp-col h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; color: var(--blue); }
.pp-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: grid; place-items: center; margin: 0 auto;
  font-size: 1.4rem; font-weight: 700;
}
@media (max-width: 700px) { .pp-arrow { transform: rotate(90deg); } }

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 54px; height: 54px;
  background: #25D366; color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .2s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.06); }
.fab-whatsapp svg { width: 26px; height: 26px; fill: currentColor; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Section title underline */
.title-line {
  width: 40px; height: 3px; background: var(--blue);
  margin-bottom: 18px;
}
.center .title-line { margin-left: auto; margin-right: auto; }

/* Helpers */
.muted { color: var(--slate); }
.center-text { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex-actions { display: flex; flex-wrap: wrap; gap: 14px; }
