/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  --navy: #0a2540;
  --navy-2: #0f2f52;
  --blue: #3b82f6;
  --blue-deep: #1e40af;
  --orange: #ff6b35;
  --orange-soft: #ffa07a;
  --teal: #00d4aa;
  --ink: #0b1220;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f6f9fc;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(16, 24, 40, 0.18);
  --shadow-xl: 0 40px 80px -20px rgba(10, 37, 64, 0.35);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

html, body { height: 100%; overflow: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: #0a2540;
  background: #0ADD08;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--font-display); color: #0a2540; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

.accent { color: var(--orange); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-deep);
  background: rgba(59, 130, 246, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8354 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255, 107, 53, 0.42); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-300); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled { border-bottom-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--navy);
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(10, 37, 64, 0.12);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.02em; }
.brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO (CONSULTANT) ============ */
.hero-consult {
  position: relative;
  padding: 8px 0;
  overflow: hidden;
  isolation: isolate;
  flex: 0 0 auto;
}
.hero-consult > .container { width: 100%; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(59, 130, 246, 0.13), transparent 60%),
    radial-gradient(ellipse at 85% 50%, rgba(255, 107, 53, 0.13), transparent 60%);
  z-index: -1;
}
.hero-consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 600px;
  margin: 0 auto;
}
.main-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.main-row .contact-copy { min-width: 220px; margin-top: 180px; }
.main-row .center-col { display: flex; flex-direction: column; align-items: center; }
.main-row .contact-form { width: 340px; margin-top: 180px; }
.hero-consult-grid .hc-photo { justify-self: stretch; width: 100%; max-width: none; }
.hero-consult-grid .hc-bz { justify-self: stretch; width: 100%; max-width: none; }
.hcp-hook-top {
  width: 56px;
  height: 56px;
  margin: 0 auto 4px;
}
.hero-title {
  text-align: center;
  font-size: 1.8rem;

  font-weight: 800;
  color: red;
  margin: 0 auto 8px;
  letter-spacing: -0.02em;
}
.hc-bz {
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.hc-bz img {
  width: 100%;
  height: 180px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 0;
}
/* Logo "hook" that the photo hangs from */
.hcp-hook {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.hcp-hook img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px -8px rgba(10, 37, 64, 0.3);
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}
.hcp-hook:hover img { transform: rotate(-8deg) scale(1.04); }

/* Wavy "string" with knot bead */
.hcp-string {
  display: block;
  width: 20px;
  height: 44px;
  margin: -2px auto -4px;
  position: relative;
  z-index: 2;
}
.hcp-string path {
  stroke: rgba(10, 37, 64, 0.42);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
}
.hcp-string circle {
  fill: rgba(10, 37, 64, 0.55);
}

.hc-copy .lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin: 20px 0 32px;
  max-width: 560px;
}
.hc-copy .lead strong { color: var(--navy); font-weight: 700; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.05rem; color: var(--navy); font-weight: 700; font-family: var(--font-display); }
.trust-item span { font-size: 0.85rem; color: var(--gray-500); }

/* Hero photo */
.hc-photo { position: relative; }
.hcp-frame { display: none; }
.books-consultant {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.books-consultant img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}
.hcp-frame img { border-radius: 0; }
.hcp-nametag {
  position: absolute;
  bottom: -22px;
  left: 50%;
  right: -16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
}
.hcp-nametag strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.hcp-nametag span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
}
.hcp-frame img {
  width: 100%;
  height: 180px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin-left: 50%
}
.hcp-frame::after { content: none; }
.hcp-badge {
  position: absolute;
  bottom: -22px;
  left: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hcp-badge img {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}
.hcp-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}
.hcp-badge span {
  display: block;
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ============ SECTIONS ============ */
.section { padding: 8px 0; }
.section-alt { background: #0ADD08; }

.section-head {
  max-width: 720px;
  margin: 0 auto 6px;
  text-align: center;
}
.section-head h2 { font-size: 1.1rem; margin: 0; }
.section-head .eyebrow { display: none; }
.section-head p { display: none; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-card:hover::before { transform: scaleX(1); }
.ac-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gray-300);
  margin-bottom: 14px;
  line-height: 1;
}
.about-card h3 { margin-bottom: 10px; }
.about-card p { color: var(--gray-700); font-size: 0.95rem; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.service-card.primary { border-top: 4px solid var(--blue); }
.service-card.accent-card { border-top: 4px solid var(--orange); }
.sc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.service-card.primary h3 { color: var(--blue-deep); }
.service-card.accent-card h3 { color: var(--orange); }
.sc-lead {
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 22px;
}
.sc-list { margin-bottom: 28px; flex: 1; }
.sc-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  color: var(--gray-700);
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--gray-200);
}
.sc-list li:last-child { border-bottom: none; }
.sc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: rgba(0, 212, 170, 0.12);
  color: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition), gap var(--transition);
}
.service-card.primary .sc-link:hover { color: var(--blue-deep); gap: 10px; }
.service-card.accent-card .sc-link:hover { color: var(--orange); gap: 10px; }

.services-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sx {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.sx:hover { transform: translateY(-2px); border-color: var(--orange); }
.sx h4 { color: var(--navy); margin-bottom: 6px; }
.sx p { font-size: 0.9rem; color: var(--gray-500); }

/* ============ APPROACH / STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: flex-start;
}
.step {
  text-align: center;
  padding: 20px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff8354);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.32);
}
.step:nth-of-type(3) .step-num { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); box-shadow: 0 10px 24px rgba(59, 130, 246, 0.32); }
.step:nth-of-type(5) .step-num { background: linear-gradient(135deg, var(--teal), #22c9a0); box-shadow: 0 10px 24px rgba(0, 212, 170, 0.28); }
.step:nth-of-type(7) .step-num { background: linear-gradient(135deg, var(--navy), var(--navy-2)); box-shadow: 0 10px 24px rgba(10, 37, 64, 0.32); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--gray-700); font-size: 0.92rem; }
.step-line {
  align-self: center;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-300), transparent);
  margin-top: 30px;
}

/* ============ BOOKS ============ */
.books-showcase {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}
.books-vtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.books-vtitle { padding: 0 10px; }
.books-vtitle span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: white;
  text-transform: none;
  white-space: nowrap;
}
.book-card {
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  display: block;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.book-card img {
  height: 180px;
  width: auto;
  max-width: 100%;
  /* margin: 0 auto; */
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
.bc-body { display: flex; flex-direction: column; }
.bc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 8px;
}
.book-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.book-card p { color: var(--gray-700); font-size: 0.92rem; line-height: 1.55; }

/* ============ RESOURCES ============ */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}
.resource-card {
  display: block;
  background: transparent;
  border: 1px solid rgba(10, 37, 64, 0.2);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.resource-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.resource-card:hover::after { transform: scaleX(1); }
.rc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  color: #fff;
}
.rc-icon svg { width: 18px; height: 18px; }
.rc-icon-video { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 8px 18px rgba(239, 68, 68, 0.3); }
.rc-icon-doc   { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); box-shadow: 0 8px 18px rgba(59, 130, 246, 0.3); }
.resource-card h3 { margin-bottom: 4px; font-size: 1rem; }
.resource-card p { display: none; }
.rc-link {
  font-weight: 700;
  color: #0a2540;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
}
.resource-card:hover .rc-link { color: var(--orange); gap: 10px; }

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

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  max-width: 780px;
  margin: 0 auto;
}
.contact-copy .lead, .contact-copy p {
  color: #0a2540;
  margin: 6px 0 12px;
  font-size: 0.95rem;
}
.contact-copy h2 { margin-bottom: 10px; font-size: 1.2rem; }
.contact-info { display: flex; flex-direction: column; gap: 4px; }
.ci {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  background: transparent;
  border: none;
  transition: transform var(--transition);
}
a.ci:hover strong { color: var(--orange); }
.ci-icon {
  width: 36px;
  height: 36px;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci strong { display: block; color: #0a2540; font-weight: 700; font-size: 0.95rem; transition: color var(--transition); }
.ci span { display: block; color: #1f3a5a; font-size: 0.88rem; }

.contact-form {
  background: transparent;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 37, 64, 0.2);
  box-shadow: none;
  width: 50%;
}
.field { margin-bottom: 8px; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 2px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 6px 10px;
  border: 1.5px solid rgba(10, 37, 64, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: #0a2540;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: rgba(255, 255, 255, 0.7);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(10, 37, 64, 0.5); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #0a2540 50%), linear-gradient(135deg, #0a2540 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}
.field textarea { resize: vertical; min-height: 50px; }
.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 20px;
}
.form-note.success { color: #059669; }
.form-note.error { color: #dc2626; }

/* ============ SOCIAL ICONS (brand colors) ============ */
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}
.soc svg { width: 17px; height: 17px; }
.soc:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18); }

.soc-linkedin  { background: #0A66C2; }
.soc-x         { background: #000000; }
.soc-instagram { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }
.soc-tiktok    { background: #000000; position: relative; }
.soc-tiktok::before,
.soc-tiktok::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  mix-blend-mode: screen;
}
.soc-tiktok::before { box-shadow: inset 2px 2px 0 #25F4EE; opacity: 0.55; }
.soc-tiktok::after  { box-shadow: inset -2px -2px 0 #FE2C55; opacity: 0.55; }
.soc-youtube   { background: #FF0000; }
.soc-whatsapp  { background: #25D366; }


/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-consult-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-consult-grid .hc-photo { max-width: 420px; margin: 0 auto; width: 100%; justify-self: center; }
  .hc-bz { max-width: 520px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-extra { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step-line { display: none; }
  .books-showcase { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  html, body { overflow-x: hidden; overflow-y: auto; height: auto; }
  body { display: block; }
  .hero-title { font-size: 1.1rem; margin-bottom: 6px; }
  .hcp-hook-top { width: 44px; height: 44px; }
  .main-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    width: 100%;
  }
  .main-row .contact-copy { order: 2; width: 100%; min-width: 0; margin-top: 0; }
  .main-row .center-col { order: 1; width: 100%; }
  .main-row .contact-form { order: 3; width: 100%; margin-top: 0; }
  .book-card img { height: 260px; }
  .books-consultant img { width: 180px; height: 180px; }
  .books-vtitle { padding: 0 4px; }
  .books-vtitle span { font-size: 0.95rem; }
  .footer-skill { font-size: 1.6rem; white-space: nowrap; }
  .section { padding: 72px 0; }
  .hero-consult { padding: 60px 0 90px; }
  .nav-inner { height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 1.05rem; }
  .brand-tag { font-size: 0.62rem; }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .steps { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .book-card img { max-width: auto; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 20px; }
  .contact-form { padding: 24px; }
  .section-head { margin-bottom: 44px; }
  .service-card { padding: 28px 24px; }
  .hcp-badge { left: 16px; right: 16px; padding: 12px 14px; }
  .hcp-badge img { width: 38px; height: 38px; }
  .hcp-nametag { bottom: -18px; right: -8px; padding: 10px 12px; }
  .hcp-nametag strong { font-size: 0.85rem; }
  .hcp-nametag span { font-size: 0.62rem; letter-spacing: 0.12em; }
}


.footer-skill {
  object-position: center 24%;
  margin: 8px auto;
  font-size: clamp(1.6rem, 6vw, 9rem);
  color: yellow;
  text-align: center;
  white-space: nowrap;
}