:root {
  --bg: #050505;
  --surface: #111111;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a1a1aa;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.2);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --nav-height: 86px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.44), transparent 88%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
}

body::selection {
  background: var(--gold);
  color: #111;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(201, 162, 39, 0.18), transparent 24%),
    radial-gradient(circle at 12% 75%, rgba(201, 162, 39, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%);
  background-size: 140% 140%, 120% 120%, 100% 100%;
  animation: ambientGlowDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.site-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.28;
  mix-blend-mode: screen;
  will-change: transform;
}

.site-glow-one {
  width: 36vw;
  height: 36vw;
  min-width: 360px;
  min-height: 360px;
  top: -8%;
  right: -8%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.34) 0%, rgba(201, 162, 39, 0.16) 35%, rgba(201, 162, 39, 0.02) 72%, transparent 100%);
  animation: fluidGlowOne 20s ease-in-out infinite alternate;
}

.site-glow-two {
  width: 28vw;
  height: 28vw;
  min-width: 280px;
  min-height: 280px;
  left: -6%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.08) 42%, transparent 82%);
  animation: fluidGlowTwo 24s ease-in-out infinite alternate;
}

.site-glow-three {
  width: 24vw;
  height: 24vw;
  min-width: 220px;
  min-height: 220px;
  top: 34%;
  left: 52%;
  background: radial-gradient(circle, rgba(255, 214, 92, 0.15) 0%, rgba(201, 162, 39, 0.08) 45%, transparent 78%);
  animation: fluidGlowThree 18s ease-in-out infinite alternate;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

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

.section-shell {
  position: relative;
  padding: 88px 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 0;
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-intro {
  max-width: 520px;
}

.navbar {
  padding: 1.15rem 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 0.85rem 0;
}

.brand-logo {
  display: block;
  width: 284px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 24px rgba(201, 162, 39, 0.18));
}

.brand-logo-footer {
  width: 230px;
}

.navbar-brand,
.footer-shell .d-flex.align-items-center.gap-3 {
  overflow: visible;
}

.navbar-brand {
  width: 284px;
  max-width: 52vw;
  min-width: 202px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 0.3rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

@media (min-width: 992px) {
  .navbar-nav {
    transform: translateX(-28px);
  }
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.5rem;
}

.btn-premium,
.btn-gold {
  background: linear-gradient(135deg, #d8b03d, var(--gold));
  color: #111;
  border: 1px solid rgba(255, 219, 119, 0.4);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.16);
  position: relative;
  overflow: hidden;
}

.btn-premium:hover,
.btn-gold:hover {
  background: linear-gradient(135deg, #e2bc55, #d0a92f);
  color: #111;
  transform: translateY(-2px);
}

.btn-outline-premium {
  border: 1px solid rgba(201, 162, 39, 0.65);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-outline-premium:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.btn-premium::after,
.btn-gold::after,
.btn-outline-premium::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  width: 32%;
  height: 320%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(20deg);
  animation: buttonShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-section {
  padding-top: calc(var(--nav-height) + 4px);
  overflow: hidden;
  padding-bottom: 26px;
}

.hero-section .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.45rem, 5.2vw, 4.45rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  margin-bottom: 0.65rem;
}

.hero-copy {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 0.75rem;
}

.hero-copy-secondary {
  max-width: 560px;
  margin-bottom: 1.05rem;
}

.hero-section .d-flex.flex-column.flex-sm-row.gap-3.reveal {
  margin-bottom: 0;
}

.hero-stats {
  margin-top: 0.75rem;
}

.stat-chip {
  height: 100%;
  padding: 0.95rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.stat-chip i,
.service-card i,
.feature-card i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.stat-chip strong,
.stat-chip span {
  display: block;
}

.stat-chip strong {
  font-size: 1.05rem;
}

.stat-chip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  max-width: 540px;
  margin-left: auto;
  padding: 0;
  animation: heroVisualFloat 7s ease-in-out infinite;
}

.portrait-ring {
  position: absolute;
  inset: 8% 10% 16% 12%;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 520px);
  max-height: 500px;
  margin: 0 auto;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 0 0 26px 26px;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.7));
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.9);
  box-shadow: var(--shadow);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  animation: badgePulse 5s ease-in-out infinite;
}

.floating-card-top {
  top: 14%;
  left: -2%;
}

.floating-card-middle {
  top: 46%;
  right: -3%;
  animation-delay: 1.1s;
}

.floating-card-bottom {
  bottom: 5%;
  left: 4%;
  animation-delay: 2s;
}

.hero-section .min-vh-100 {
  min-height: calc(100vh - 72px) !important;
}

.hero-section .btn-lg {
  padding: 0.8rem 1.3rem;
}

.hero-section .eyebrow {
  margin-bottom: 0.55rem;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.75;
  pointer-events: none;
}

.glow-orb-lg {
  width: 540px;
  height: 540px;
  right: -100px;
  top: 110px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.02) 62%, transparent 72%);
  animation: floatOrb 8s ease-in-out infinite;
}

.glow-orb-sm {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: 70px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  animation: floatOrb 10s ease-in-out infinite reverse;
}

.trust-bar {
  margin-top: -18px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.trust-strip {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0;
}

.trust-label {
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.65;
}

.trust-label span {
  display: block;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 1.5rem;
}

.trust-logo-img {
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  filter: grayscale(1) brightness(1.95) opacity(0.8);
  transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.trust-logo-img:hover {
  filter: grayscale(1) brightness(2.25) opacity(1);
  transform: translateY(-2px);
}

.trust-logo-tata {
  max-height: 26px;
}

.trust-logo-bluestone {
  max-height: 28px;
}

.trust-logo-upgrad {
  max-height: 24px;
}

.trust-logo-nestle {
  max-height: 24px;
}

.trust-logo-godrej {
  max-height: 26px;
}

.trust-logo-razorpay {
  max-height: 24px;
}

.trust-logo-slice {
  max-height: 26px;
}

.content-panel,
.results-wrap,
.story-panel,
.cta-panel,
.image-panel,
.insight-panel,
.story-note,
.book-panel,
.coaching-panel {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  position: relative;
}

.content-panel::before,
.results-wrap::before,
.story-panel::before,
.cta-panel::before,
.insight-panel::before,
.story-note::before,
.book-panel::before,
.coaching-panel::before,
.service-card::before,
.feature-card::before,
.testimonial-card::before,
.result-card::before,
.stat-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(201, 162, 39, 0.075) 48%, transparent 100%);
  transform: translateX(-125%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.content-panel:hover::before,
.results-wrap:hover::before,
.story-panel:hover::before,
.cta-panel:hover::before,
.insight-panel:hover::before,
.story-note:hover::before,
.book-panel:hover::before,
.coaching-panel:hover::before,
.service-card:hover::before,
.feature-card:hover::before,
.testimonial-card:hover::before,
.result-card:hover::before,
.stat-chip:hover::before {
  transform: translateX(125%);
}

.image-panel {
  padding: 0;
  overflow: hidden;
  min-height: 100%;
}

.panel-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 70%, rgba(201, 162, 39, 0.12));
}

.section-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.image-panel:hover .section-image {
  transform: scale(1.035);
}

.image-panel-story .section-image-story {
  object-position: center top;
}

.image-panel-coaching .section-image-coaching {
  object-position: center top;
}

.insight-title {
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.coaching-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.coaching-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.book-cover-wrap {
  position: relative;
  max-width: 250px;
  margin: 0 auto;
  padding: 1rem;
  animation: heroVisualFloat 8.5s ease-in-out infinite;
}

.book-cover-wrap::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.22), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}

.book-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.book-spark {
  position: absolute;
  top: 7%;
  right: 12%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 168, 0.95), rgba(201, 162, 39, 0.25) 70%, transparent 72%);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.6);
  animation: sparkleDrift 4.4s ease-in-out infinite;
  z-index: 2;
}

.service-card,
.feature-card,
.testimonial-card,
.result-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: var(--shadow);
}

.service-card:hover,
.feature-card:hover,
.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.service-card h3,
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.service-card p,
.feature-card p,
.testimonial-card p,
.result-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.result-card {
  text-align: center;
}

.result-card h3 {
  color: var(--gold);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.4rem;
}

.feature-card {
  text-align: left;
}

.testimonial-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-gutter: stable;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 162, 39, 0.5) rgba(255, 255, 255, 0.04);
}

.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.95), rgba(201, 162, 39, 0.65));
  border-radius: 999px;
  border: 1px solid rgba(5, 5, 5, 0.35);
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(214, 178, 68, 1), rgba(201, 162, 39, 0.82));
}

.testimonial-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
}

.testimonial-card p {
  font-size: 1.15rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-meta strong {
  color: #fff;
  display: block;
}

.testimonial-meta span {
  color: var(--muted);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(255, 255, 255, 0.04);
  object-fit: cover;
  flex: 0 0 auto;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators .active {
  background-color: var(--gold);
}

.footer-shell {
  padding: 1.8rem 0 2.4rem;
  border-top: 1px solid var(--border);
}

.footer-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.footer-links a:hover {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-meta {
  margin-top: 1rem;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--gold);
}

.micro-accent {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 18px;
  opacity: 0.55;
  pointer-events: none;
}

.micro-accent::before,
.micro-accent::after {
  content: "";
  position: absolute;
  background: rgba(201, 162, 39, 0.32);
}

.micro-accent::before {
  width: 18px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.micro-accent::after {
  width: 1px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.micro-accent-left {
  top: 7%;
  left: -2%;
  animation: accentFloat 7.5s ease-in-out infinite;
}

.micro-accent-right {
  top: 10%;
  right: 8%;
  animation: accentFloat 6.5s ease-in-out infinite reverse;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientGlowDrift {
  0% {
    background-position: 82% 14%, 12% 76%, 0 0;
  }
  30% {
    background-position: 76% 22%, 14% 70%, 0 0;
  }
  60% {
    background-position: 88% 32%, 18% 82%, 0 0;
  }
  100% {
    background-position: 80% 18%, 10% 74%, 0 0;
  }
}

@keyframes heroVisualFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes badgePulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
  }
}

@keyframes accentFloat {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-10px); }
}

@keyframes buttonShimmer {
  0%, 100% { transform: translateX(-220%) rotate(20deg); opacity: 0; }
  10% { opacity: 0.7; }
  28% { transform: translateX(420%) rotate(20deg); opacity: 0; }
}

@keyframes sparkleDrift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-8px, 10px) scale(1.22);
    opacity: 1;
  }
}

@keyframes fluidGlowOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-6vw, 3vh, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-2vw, 8vh, 0) scale(0.96);
  }
}

@keyframes fluidGlowTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(6vw, -4vh, 0) scale(1.12);
  }
  100% {
    transform: translate3d(2vw, -8vh, 0) scale(0.92);
  }
}

@keyframes fluidGlowThree {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.16;
  }
  50% {
    transform: translate3d(-3vw, 4vh, 0) scale(1.15);
    opacity: 0.24;
  }
  100% {
    transform: translate3d(4vw, -3vh, 0) scale(0.94);
    opacity: 0.14;
  }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(10, 10, 10, 0.95);
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-portrait {
    width: min(100%, 460px);
    max-height: 500px;
    object-position: 50% 15%;
  }

  .floating-card-top {
    left: 4%;
  }

  .floating-card-middle {
    right: 6%;
  }

  .section-shell {
    padding: 72px 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .testimonial-slide {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .micro-accent {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 203px;
  }

  .brand-logo-footer {
    width: 176px;
  }

  .navbar-brand {
    width: 203px;
    min-width: 0;
  }

  .section-shell {
    padding: 58px 0;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 2px);
    padding-bottom: 18px;
  }

  .hero-copy,
  .section-copy {
    font-size: 1rem;
  }

  .trust-strip {
    padding: 1rem 0;
  }

  .trust-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.2rem;
  }

  .trust-logo-img {
    margin: 0;
    max-height: 24px;
  }

  .testimonial-slide {
    flex-basis: 88%;
  }

  .content-panel,
  .results-wrap,
  .story-panel,
  .cta-panel,
  .service-card,
  .feature-card,
  .testimonial-card,
  .result-card {
    padding: 1.4rem;
  }

  .floating-card {
    position: static;
    display: inline-flex;
    margin: 0.45rem 0.4rem 0 0;
  }

  .hero-visual {
    text-align: center;
    max-width: 100%;
    padding-top: 0.5rem;
  }

  .hero-portrait {
    width: 100%;
    max-height: 440px;
    object-position: 52% 14%;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
