@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Hind+Siliguri:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #0a0a0a;
  --red: #c8102e;
  --red-dark: #a00d24;
  --warm-white: #fafaf8;
  --charcoal: #1a1a1a;
  --border: #e8e6e1;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --green: #167a3c;
  --red-tint: rgba(200, 16, 46, 0.08);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.08);
  --radius-md: 12px;
  --radius-lg: 16px;
  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-bangla: 'Hind Siliguri', sans-serif;
  --bg-primary: var(--warm-white);
  --bg-secondary: #ffffff;
  --bg-tertiary: #f3f1ec;
  --bg-muted: #eeece6;
  --surface: #ffffff;
  --text-primary: var(--ink);
  --text-secondary: #323232;
  --red-light: var(--red);
}

[data-theme="dark"] {
  --bg-primary: #0f0f0f;
  --bg-secondary: #151515;
  --bg-tertiary: #1f1f1f;
  --bg-muted: #282828;
  --surface: #171717;
  --text-primary: #f5f5f3;
  --text-secondary: #deded9;
  --text-muted: #a8a8a2;
  --border: #333330;
  --charcoal: #0f0f0f;
  --warm-white: #0f0f0f;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.bn,
:lang(bn) {
  font-family: var(--font-bangla);
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

p {
  color: var(--text-secondary);
}

::selection {
  background: var(--red);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 999px;
}

.container {
  width: min(100% - 48px, 1200px);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

section,
.section {
  padding: 100px 0;
}

.section-dark,
.card-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-dark p,
.card-dark h1,
.card-dark h2,
.card-dark h3,
.card-dark p {
  color: var(--white);
}

.section-tag,
.hero-badge,
.founder-kicker,
.recognition-eyebrow,
.contact-label,
.footer-col-title,
.calc-result-title,
.form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag::before,
.recognition-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

.section-title,
.recognition-title,
.founder-name,
.cta-title,
.hero-title {
  max-width: 820px;
}

.section-title em,
.recognition-title em,
.founder-name em,
.hero-title em {
  color: var(--red);
  font-style: italic;
}

.section-sub,
.hero-subtitle,
.recognition-copy,
.founder-copy,
.program-desc,
.mentor-desc,
.feat-desc,
.testi-text,
.footer-brand-desc,
.faq-answer {
  color: var(--text-muted);
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  background: color-mix(in srgb, var(--bg-primary) 92%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.nav-logo,
.logo-symbols,
.logo-text,
.nav-links,
.hero-actions,
.footer-socials,
.location-actions,
.testi-author,
.contact-item,
.recognition-point,
.about-feat {
  display: flex;
  align-items: center;
}

.nav-logo {
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 150px;
  height: auto;
}

nav .brand-logo {
  width: 136px;
}

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

.logo-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
}

.logo-text {
  gap: 4px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.logo-text span {
  color: var(--red);
}

.nav-links {
  gap: clamp(18px, 2.2vw, 34px);
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--text-primary);
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-white,
.nav-cta,
.form-submit,
.lead-form button,
.btn-play-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary,
.nav-cta,
.form-submit,
.lead-form button {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white) !important;
  padding: 16px 32px;
}

.btn-primary:hover,
.nav-cta:hover,
.form-submit:hover,
.lead-form button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
  transform: translateY(-2px);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 16px 32px;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  padding: 8px 0;
}

.btn-ghost:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.btn-ghost svg {
  transition: transform 0.25s ease;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 18px;
}

.btn-white {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--ink);
  padding: 16px 32px;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.card-premium,
.program-card,
.mentor-card,
.testi-card,
.score-card,
.recognition-award,
.about-badge,
.founder-stat,
.calc-container,
.calc-result,
.lead-magnet,
.wa-modal-content,
.mock-calendar,
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.card-premium {
  padding: 32px;
}

.card-premium:hover,
.program-card:hover,
.mentor-card:hover,
.testi-card:hover,
.price-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px clamp(24px, 5vw, 72px) 80px;
}

.hero-right {
  position: relative;
  min-height: 100%;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-right::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.16;
  pointer-events: none;
}

.hero-badge {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--red) 35%, var(--border));
  border-radius: 999px;
  background: var(--red-tint);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

.hero-number {
  position: absolute;
  top: 96px;
  left: clamp(18px, 4vw, 54px);
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
  opacity: 0.12;
  -webkit-text-stroke: 1px var(--red);
  pointer-events: none;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.hero-founder-line {
  margin-bottom: 28px;
  color: var(--text-muted);
}

.hero-founder-line a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.hero-founder-line a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-actions {
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap,
.geo-bg {
  position: absolute;
  inset: 0;
}

.geo-bg {
  background: linear-gradient(145deg, var(--charcoal), #2a2a2a);
}

.geo-line-v,
.geo-rect,
.geo-rect-1,
.geo-rect-2 {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.geo-line-v {
  inset: 0 auto 0 50%;
  width: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
}

.geo-rect-1 {
  inset: 15% 12%;
}

.geo-rect-2 {
  inset: 24% 22%;
}

.score-card {
  position: absolute;
  z-index: 3;
  min-width: 178px;
  padding: 20px;
}

.score-card-1 {
  top: 18%;
  left: 8%;
}

.score-card-2 {
  top: 42%;
  right: 8%;
}

.score-card-3 {
  bottom: 12%;
  left: 10%;
}

.score-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-value,
.stat-num,
.founder-stat strong,
.calc-result-score,
.price-amount {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
}

.score-value {
  margin-top: 8px;
  font-size: 2.6rem;
}

.score-value span,
.stat-num span {
  color: var(--red);
}

.score-desc {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero-founder-card {
  position: absolute;
  z-index: 2;
  inset: 50% 50% auto auto;
  width: min(420px, 58%);
  aspect-ratio: 4 / 5;
  transform: translate(50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.hero-founder-card img,
.founder-portrait img,
.about-photo img,
.award-photo img,
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-founder-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.hero-founder-caption strong,
.hero-founder-caption span {
  display: block;
}

.hero-founder-caption span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero-divider {
  width: 72px;
  height: 2px;
  margin: 32px 0;
  background: var(--red);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.stat-item {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.25s ease;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item:hover {
  background: var(--bg-tertiary);
}

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
}

.stat-label {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.recognition-section,
.programs-section,
.contact-section,
.faq-section,
.calculator-section {
  background: var(--bg-secondary);
}

.recognition-grid,
.about,
.founder-grid,
.contact-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.recognition-award {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.award-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.recognition-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.recognition-point {
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--border);
}

.recognition-point strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.about-visual {
  position: relative;
  min-height: 540px;
}

.about-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.about-photo-main {
  inset: 60px 0 0 24%;
}

.about-photo-secondary {
  inset: 0 48% 42% 0;
}

.about-badge {
  position: absolute;
  left: 0;
  bottom: 36px;
  padding: 22px 24px;
}

.about-badge strong {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.about-features {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.about-feat {
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.feat-icon,
.program-icon,
.contact-icon {
  color: var(--red);
}

.feat-title,
.program-title,
.mentor-title,
.testi-name {
  color: var(--text-primary);
  font-weight: 700;
}

.founder-section,
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.founder-section h2,
.founder-section h3,
.founder-section p,
.founder-section .founder-copy,
.founder-section .founder-role,
.founder-section .founder-quote {
  color: var(--white);
}

.founder-portrait {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.founder-role {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.founder-quote {
  margin-top: 28px;
  padding-left: 24px;
  border-left: 3px solid var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-style: italic;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.founder-stat {
  padding: 22px;
}

.founder-stat strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
}

.founder-stat span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.mentor-header,
.programs-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.mentor-grid,
.programs-grid,
.testi-grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.mentor-grid,
.programs-grid,
.testi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.mentor-card,
.program-card,
.testi-card {
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mentor-num,
.program-num {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.program-icon {
  margin: 24px 0 16px;
}

.program-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.program-tag,
.badge-trust,
.badge-urgent,
.price-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.program-tag,
.badge-trust {
  padding: 6px 12px;
  background: var(--bg-tertiary);
  color: var(--text-muted);
}

.badge-urgent {
  padding: 6px 12px;
  background: var(--red-tint);
  color: var(--red);
}

.marquee-section {
  overflow: hidden;
  padding: 28px 0;
  background: var(--charcoal);
  color: var(--white);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.marquee-name {
  font-family: var(--font-display);
  font-style: italic;
}

.marquee-score {
  color: var(--red);
  font-weight: 700;
}

.marquee-dest {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testi-quote {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.8;
}

.testi-text {
  margin: 22px 0;
}

.testi-author {
  gap: 14px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--bg-tertiary);
}

.testi-info {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.testi-score {
  margin-top: 18px;
  color: var(--red);
  font-weight: 700;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-title {
  margin-inline: auto;
  color: var(--white);
}

.contact-grid {
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 24px;
}

.contact-item {
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.contact-value {
  color: var(--text-primary);
  font-weight: 600;
}

.contact-form,
.lead-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-input,
.form-textarea,
.lead-form input,
.wa-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  outline: none;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.lead-form input:focus,
.wa-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.08);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: fit-content;
}

.location-section {
  background: var(--bg-primary);
}

.location-address {
  margin-top: 24px;
}

.location-address strong,
.location-address span {
  display: block;
}

.location-map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--charcoal);
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.location-pin {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 320px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.location-pin-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.location-pin-title {
  color: var(--ink);
  font-weight: 700;
}

.location-pin-text {
  color: #555;
}

footer {
  padding: 72px 0 32px;
  background: var(--charcoal);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 42px;
  margin-bottom: 48px;
}

.footer-brand-desc,
.footer-copy,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy span {
  color: var(--red);
}

.footer-socials {
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.price-card {
  position: relative;
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card.featured {
  border: 2px solid var(--red);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  padding: 6px 16px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-amount {
  margin-top: 20px;
  font-size: 48px;
}

.price-unit {
  color: var(--text-muted);
  font-size: 14px;
}

.price-old {
  color: var(--text-muted);
  font-size: 18px;
  text-decoration: line-through;
}

.price-save {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.calculator-section {
  border-bottom: 1px solid var(--border);
}

.calc-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 32px;
  padding: 32px;
}

.calc-input-group {
  margin-bottom: 20px;
}

.calc-input-group label {
  display: block;
  margin-bottom: 10px;
}

.calc-input-group input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}

.calc-val-display {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.calc-result {
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.calc-result-score {
  color: var(--red);
  font-size: clamp(4rem, 8vw, 5.6rem);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 260px;
  padding-bottom: 24px;
}

.faq-item.active .faq-question {
  color: var(--red);
}

.faq-icon {
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.lead-magnet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px auto;
  padding: 40px;
}

.lead-magnet-content h3 {
  margin-bottom: 8px;
}

.lead-magnet-content p {
  margin-bottom: 18px;
}

.lead-form {
  grid-template-columns: minmax(220px, 1fr) auto;
}

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
  transition: transform 0.25s ease;
}

.floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
}

.lang-toggle,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lang-toggle {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.lang-toggle:hover,
.theme-toggle:hover,
.lang-toggle.bn-active {
  border-color: var(--red);
  color: var(--red);
}

.lang-toggle.bn-active {
  background: var(--red-tint);
}

.video-modal,
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.video-modal.active,
.wa-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: min(900px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
}

.video-close,
.wa-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-primary);
}

.video-close {
  top: -48px;
  right: 0;
}

.wa-modal-content {
  position: relative;
  width: min(500px, 92vw);
  padding: 36px;
}

.wa-step {
  display: none;
}

.wa-step.active {
  display: block;
}

.wa-step-title {
  margin-bottom: 24px;
  text-align: center;
}

.wa-options {
  display: grid;
  gap: 12px;
}

.wa-opt {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  text-align: left;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wa-opt:hover {
  border-color: #25d366;
  color: #168444;
  transform: translateY(-2px);
}

.mock-calendar {
  padding: 24px;
}

.mock-cal-header {
  margin-bottom: 16px;
  font-weight: 700;
}

.mock-cal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.mock-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mock-date:hover,
.mock-date.selected {
  border-color: var(--red);
  background: var(--red-tint);
}

.mock-seats {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
}

.programs-page-hero,
.practice-hero,
.quiz-page,
.success-page {
  padding: 132px clamp(24px, 5vw, 72px) 72px;
  background: var(--bg-primary);
}

.programs-page-hero {
  min-height: 420px;
  display: grid;
  align-content: end;
}

.practice-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
}

.practice-wrapper {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
  padding: 0 0 110px;
  display: grid;
  gap: 18px;
}

.cb-book {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.cb-book:hover {
  border-color: color-mix(in srgb, var(--red) 34%, var(--border));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.cb-book-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  cursor: pointer;
}

.cb-book-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cb-num {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--charcoal);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

[data-theme="dark"] .cb-num {
  background: #ffffff;
  color: #0f0f0f;
}

.cb-title-wrap {
  min-width: 0;
}

.cb-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}

.cb-latest {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cb-subtitle {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cb-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-primary);
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.cb-book.open .cb-toggle {
  border-color: var(--red);
  color: var(--red);
  transform: rotate(180deg);
}

.cb-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.cb-book.open .cb-body {
  grid-template-rows: 1fr;
}

.cb-body-inner {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 24px 24px;
}

.cb-module {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
}

.cb-module-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.cb-module-label svg {
  color: var(--red);
}

.cb-test-list {
  display: grid;
  gap: 8px;
}

.cb-test-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cb-test-link svg {
  order: 2;
  color: var(--red);
}

.cb-test-link:hover,
.cb-test-link:focus-visible {
  border-color: color-mix(in srgb, var(--red) 28%, var(--border));
  background: var(--red-tint);
  color: var(--red);
  transform: translateX(2px);
}

/* Unavailable test (source content missing) */
.cb-test-link--soon {
  color: var(--text-secondary);
  opacity: 0.55;
  font-weight: 600;
  cursor: default;
  font-size: 0.82rem;
}

.cb-test-link--soon:hover,
.cb-test-link--soon:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--text-secondary);
  transform: none;
}

/* Writing / Speaking — paid-package call to action */
.cb-locked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 2px;
}

.cb-locked-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--red-tint);
  color: var(--red);
}

.cb-locked-note {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cb-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cb-buy-btn:hover,
.cb-buy-btn:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.22);
  transform: translateY(-1px);
}

.programs-layout {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  padding: 80px 0 100px;
}

.prog-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  align-self: start;
}

.prog-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.prog-nav-link:hover,
.prog-nav-link.active {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.prog-content {
  display: grid;
  gap: 32px;
}

.course-section {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.course-title {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
}

.course-desc {
  max-width: 860px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.course-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.detail-box {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
}

.detail-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-value {
  margin-top: 6px;
  color: var(--text-primary);
  font-weight: 800;
}

.course-features {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.course-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
}

.course-features svg {
  flex: 0 0 20px;
  margin-top: 4px;
  color: var(--red);
}

.quiz-page {
  min-height: 100vh;
}

.quiz-container {
  width: min(100% - 48px, 880px);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.quiz-header {
  text-align: center;
}

.quiz-header h1 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.quiz-header p {
  color: var(--text-muted);
}

.quiz-progress {
  height: 10px;
  overflow: hidden;
  margin: 32px 0;
  border-radius: 999px;
  background: var(--border);
}

.quiz-progress-bar {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--red);
  transition: width 0.3s ease;
}

.q-block {
  display: none;
}

.q-block.active {
  display: block;
  animation: fadeUp 0.35s ease forwards;
}

.q-text {
  margin-bottom: 18px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.q-opt {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.q-opt:hover {
  border-color: var(--red);
  background: var(--red-tint);
  color: var(--red);
  transform: translateY(-2px);
}

.quiz-page .lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quiz-page .lead-form .btn-primary {
  grid-column: 1 / -1;
}

.final-result {
  display: none;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-tertiary);
  text-align: center;
}

.band-score {
  margin: 12px 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 900px) {
  .programs-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .prog-sidebar {
    position: static;
  }

  .course-section,
  .quiz-container {
    padding: 28px;
  }

  .practice-wrapper {
    width: min(100% - 40px, 1100px);
  }

  .cb-body-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .programs-page-hero,
  .practice-hero,
  .quiz-page,
  .success-page {
    padding: 104px 16px 56px;
  }

  .programs-layout,
  .practice-wrapper,
  .quiz-container {
    width: min(100% - 32px, 1200px);
  }

  .cb-book-header,
  .cb-book-left {
    align-items: flex-start;
  }

  .cb-book-header {
    padding: 18px;
  }

  .cb-num {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 12px;
    font-size: 1.12rem;
  }

  .cb-body-inner {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .quiz-page .lead-form {
    grid-template-columns: 1fr;
  }
}

.text-red {
  color: var(--red) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-center {
  text-align: center !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-3 {
  margin-bottom: 24px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.gap-1 {
  gap: 8px !important;
}

.gap-2 {
  gap: 16px !important;
}

.gap-3 {
  gap: 24px !important;
}

.gap-4 {
  gap: 32px !important;
}

.cursor,
.cursor-ring {
  display: none;
}

[data-theme="dark"] .nav-links a:hover {
  color: var(--text-primary);
}

[data-theme="dark"] .btn-secondary {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

[data-theme="dark"] .btn-secondary:hover {
  background: var(--text-primary);
  color: var(--ink);
}

[data-theme="dark"] .hero-founder-caption,
[data-theme="dark"] .location-pin {
  background: rgba(23, 23, 23, 0.94);
}

[data-theme="dark"] .location-pin-title {
  color: var(--text-primary);
}

[data-theme="dark"] .location-pin-text {
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible {
  animation: fadeUp 0.7s ease forwards;
}

.reveal-delay-1.visible {
  animation-delay: 0.1s;
}

.reveal-delay-2.visible {
  animation-delay: 0.2s;
}

.reveal-delay-3.visible {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .hero-right {
    min-height: 520px;
  }

  .mentor-grid,
  .programs-grid,
  .testi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  nav {
    height: 70px;
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    position: absolute;
    inset: 70px 0 auto;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }

  .hamburger {
    display: inline-flex;
  }

  section,
  .section {
    padding: 60px 0;
  }

  .container {
    width: min(100% - 32px, 1200px);
    padding-inline: 0;
  }

  .hero-left {
    padding: 112px 24px 56px;
  }

  .hero-right {
    min-height: 420px;
  }

  .hero-founder-card {
    width: min(320px, 78vw);
  }

  .score-card {
    min-width: 150px;
    padding: 16px;
  }

  .score-card-2 {
    display: none;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .recognition-grid,
  .about,
  .founder-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 420px;
  }

  .founder-portrait {
    min-height: 420px;
  }

  .mentor-header,
  .programs-header,
  .lead-magnet,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .calc-container,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .brand-logo,
  nav .brand-logo {
    width: 120px;
  }

  .hero-actions,
  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-white,
  .nav-cta,
  .form-submit {
    width: 100%;
  }

  .hero-right {
    min-height: 360px;
  }

  .hero-founder-caption,
  .score-card-3 {
    display: none;
  }

  .stats-strip,
  .mentor-grid,
  .programs-grid,
  .testi-grid,
  .recognition-points,
  .founder-stats,
  .form-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about-photo-main {
    inset: 80px 0 0 12%;
  }

  .about-photo-secondary {
    inset: 0 42% 48% 0;
  }

  .about-badge {
    left: 12px;
    bottom: 12px;
  }

  .lead-magnet,
  .calc-container,
  .wa-modal-content {
    padding: 24px;
  }

  .floating-wa {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
