:root {
  --ink: #24160b;
  --muted: #765f4c;
  --line: #ead4a3;
  --paper: #fffaf0;
  --cream: #fff5df;
  --white: #ffffff;
  --orange: #f04400;
  --orange-dark: #ba3300;
  --gold: #d7a23a;
  --gold-deep: #a87312;
  --mahogany: #4a1f0b;
  --midnight-gold: #1d1208;
  --green: #0d5b15;
  --green-dark: #083c0e;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 80px rgba(89, 47, 4, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 162, 58, 0.16), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(240, 68, 0, 0.12), transparent 28%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 370px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(215, 162, 58, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(36, 22, 11, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand img:not(.brand-mark) {
  width: min(360px, 46vw);
  height: auto;
}

.brand-mark {
  width: 66px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1;
}

.brand-text small {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #4c3321;
  font-size: 14px;
  font-weight: 700;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 14px 28px rgba(240, 68, 0, 0.22);
}

.header-cta:hover,
.button.primary:hover,
.button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(240, 68, 0, 0.2);
}

.button.secondary {
  color: var(--orange-dark);
  background: var(--white);
  border: 1px solid rgba(215, 162, 58, 0.55);
}

.button.light {
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 5vw, 58px);
  min-height: 760px;
  padding: clamp(48px, 7vw, 100px) clamp(18px, 4vw, 56px) 48px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -26%;
  width: min(560px, 62vw);
  height: min(560px, 62vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 68, 0, 0.24), rgba(215, 162, 58, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 16%;
  right: clamp(18px, 4vw, 56px);
  width: min(280px, 28vw);
  height: min(280px, 28vw);
  border: 1px solid rgba(215, 162, 58, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(215, 162, 58, 0.04));
  box-shadow: inset 0 0 70px rgba(215, 162, 58, 0.16);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 245, 223, 0.92) 45%, rgba(255, 245, 223, 0.5) 100%),
    linear-gradient(135deg, rgba(74, 31, 11, 0.08), rgba(240, 68, 0, 0.12)),
    url("assets/varnas-training-desk.png") center / cover;
}

.hero-content {
  max-width: 790px;
  align-self: center;
}

.eyebrow,
.form-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(44px, 6.6vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-size: 23px;
}

.hero-copy,
.section-heading p,
.lead-magnet-copy p,
.varnas-copy p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.contact-actions,
.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 12px;
  max-width: 730px;
  margin: 36px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(215, 162, 58, 0.36);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(89, 47, 4, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(89, 47, 4, 0.16);
}

.hero-stats dt {
  color: var(--orange-dark);
  font-size: 26px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-card,
.calculator-workspace,
.expert-card,
.mini-lead {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(215, 162, 58, 0.46);
  border-radius: 8px;
  background: var(--glass-strong);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.lead-card {
  position: relative;
}

.lead-logo {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 48px;
  object-fit: contain;
}

.lead-card h2 {
  max-width: 270px;
  font-size: 26px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #4b2f1d;
  font-size: 14px;
  font-weight: 900;
}

.lead-field-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 12px;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(215, 162, 58, 0.55);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(240, 68, 0, 0.28);
  outline-offset: 2px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(215, 162, 58, 0.4);
  border-top: 1px solid rgba(215, 162, 58, 0.36);
  border-bottom: 1px solid rgba(215, 162, 58, 0.36);
}

.trust-strip span {
  padding: 18px;
  text-align: center;
  color: var(--green-dark);
  background: var(--white);
  font-weight: 900;
}

.compliance-band {
  display: grid;
  gap: 8px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(215, 162, 58, 0.36);
  border-bottom: 1px solid rgba(215, 162, 58, 0.36);
  background: #fff3d2;
}

.compliance-band p {
  max-width: 1120px;
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.section {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.ecosystem {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(215, 162, 58, 0.28), transparent 30%),
    linear-gradient(135deg, var(--midnight-gold), var(--mahogany));
  overflow: hidden;
}

.ecosystem::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 209, 117, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.ecosystem .eyebrow {
  color: #ffd175;
}

.ecosystem .section-heading p {
  color: #ffe9c5;
}

.ecosystem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ecosystem-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 209, 117, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, background 180ms ease;
}

.ecosystem-grid article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.ecosystem-grid span {
  color: #ffd175;
  font-weight: 950;
}

.ecosystem-grid p {
  color: #ffe9c5;
  line-height: 1.7;
}

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

.service-card {
  min-height: 258px;
  padding: 26px;
  border: 1px solid rgba(215, 162, 58, 0.42);
  border-radius: 8px;
  background: var(--glass-strong);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(89, 47, 4, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.platform-grid a:hover,
.resource-grid a:hover,
.testimonial-grid article:hover,
.page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(89, 47, 4, 0.15);
}

.service-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--gold-deep));
}

.service-card span {
  color: var(--gold-deep);
  font-weight: 900;
}

.service-card.featured span {
  color: #ffe3a2;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card.featured p {
  color: #fff1d8;
}

.service-card a {
  color: var(--orange-dark);
  font-weight: 900;
}

.service-card.featured a {
  color: var(--white);
}

.calculator-section {
  background:
    linear-gradient(135deg, rgba(255, 245, 223, 0.96), rgba(255, 250, 240, 0.92)),
    radial-gradient(circle at 90% 5%, rgba(240, 68, 0, 0.18), transparent 34%);
}

.toolkit-heading {
  margin-bottom: 28px;
}

.toolkit-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.calculator-menu {
  display: grid;
  gap: 10px;
  max-height: 760px;
  overflow: auto;
  padding-right: 4px;
}

.calc-card {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid rgba(215, 162, 58, 0.46);
  border-radius: 8px;
  color: var(--ink);
  text-align: left;
  background: var(--glass);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.calc-card:hover {
  transform: translateX(4px);
  border-color: rgba(240, 68, 0, 0.32);
  box-shadow: 0 16px 34px rgba(89, 47, 4, 0.12);
}

.calc-card span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.calc-card strong {
  font-size: 15px;
}

.calc-card.active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 16px 32px rgba(240, 68, 0, 0.2);
}

.calc-card.active span {
  color: #fff2cd;
}

.calculator-workspace {
  min-height: 590px;
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
}

.calc-copy h3 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
}

.calc-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calc-output {
  display: block;
  margin: 8px 0 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(240, 68, 0, 0.18);
  border-radius: 8px;
  color: var(--orange-dark);
  background: linear-gradient(135deg, #fff1d7, #ffffff);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 950;
}

.chart-panel {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(215, 162, 58, 0.36);
  border-radius: 8px;
  background: #fff8e8;
}

.chart-panel h3 {
  margin-bottom: 16px;
}

#calculatorChart {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  background: var(--white);
}

.calc-note {
  color: var(--muted);
  line-height: 1.65;
}

.calculator-actions {
  margin-bottom: 0;
}

.varnas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36, 22, 11, 0.96), rgba(240, 68, 0, 0.78)),
    url("assets/varnas-workshop-2.png") center / cover;
}

.varnas .eyebrow {
  color: #ffd175;
}

.vkc-brand-lockup {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.vkc-logo {
  width: 118px;
  height: 118px;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.varnas-copy p {
  color: #ffe9c5;
}

.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.course-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.course-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 209, 117, 0.68);
  background: rgba(255, 255, 255, 0.2);
}

.varnas-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.varnas-highlights span {
  padding: 14px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffe1a2;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(36, 22, 11, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.varnas-highlights span:hover {
  transform: translateY(-4px);
  background: #fff0c2;
  box-shadow: 0 20px 42px rgba(36, 22, 11, 0.18);
}

.varnas-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.varnas-media-grid article {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 117, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.varnas-media-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 209, 117, 0.7);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.varnas-media-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 22, 11, 0.04), rgba(36, 22, 11, 0.78));
}

.varnas-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
  transition: transform 240ms ease;
}

.varnas-media-grid article:hover img {
  transform: scale(1.04);
}

.varnas-media-grid span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 16px;
  color: var(--white);
  font-weight: 950;
}

.expert-card {
  color: var(--ink);
}

.expert-logo {
  width: 88px;
  height: 78px;
  margin-bottom: 16px;
  object-fit: contain;
}

.expert-logo.portrait {
  width: 138px;
  height: 138px;
  border: 4px solid #fff2cd;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 36px rgba(89, 47, 4, 0.18);
}

.expert-card ul {
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.8;
}

.student-testimonials {
  background:
    radial-gradient(circle at 14% 10%, rgba(215, 162, 58, 0.18), transparent 30%),
    linear-gradient(180deg, var(--white), var(--cream));
}

.why-hvfs {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.why-grid article {
  min-height: 136px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid rgba(215, 162, 58, 0.42);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 204, 0.84)),
    radial-gradient(circle at 90% 10%, rgba(240, 68, 0, 0.15), transparent 34%);
  box-shadow: 0 18px 44px rgba(89, 47, 4, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(89, 47, 4, 0.15);
}

.image-proof {
  background: var(--cream);
}

.image-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.image-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 22, 11, 0.05), rgba(36, 22, 11, 0.78));
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(89, 47, 4, 0.2);
}

.image-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transition: transform 240ms ease;
}

.image-card:hover img {
  transform: scale(1.04);
}

.youtube-highlight img {
  object-position: center top;
}

.image-card span {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
  color: var(--white);
  font-weight: 950;
}

.investor-session {
  background-image: url("assets/varnas-workshop-1.png");
}

.nism-training {
  background-image: url("assets/varnas-workshop-2.png");
}

.corporate-workshop {
  background-image: url("assets/varnas-workshop-1.png");
}

.youtube-highlight {
  background-image: url("assets/gali-sarish.png");
}

.classroom-session {
  background-image: url("assets/varnas-training-desk.png");
}

.lead-magnet {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  background: var(--white);
}

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

.lead-option {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(215, 162, 58, 0.46);
  border-radius: 8px;
  text-align: left;
  background: var(--paper);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lead-option.active {
  border-color: rgba(240, 68, 0, 0.42);
  background: #fff0d2;
}

.lead-option:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 68, 0, 0.38);
  box-shadow: 0 18px 36px rgba(89, 47, 4, 0.1);
}

.lead-option strong,
.lead-option span {
  display: block;
}

.lead-option strong {
  margin-bottom: 7px;
  color: var(--orange-dark);
  font-size: 17px;
}

.lead-option span {
  color: var(--muted);
  line-height: 1.5;
}

.platform-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.platform-grid a,
.resource-grid a {
  min-height: 124px;
  padding: 22px;
  border: 1px solid rgba(215, 162, 58, 0.42);
  border-radius: 8px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.platform-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.resources {
  background: var(--cream);
}

.youtube-section {
  background: var(--cream);
}

.youtube-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(215, 162, 58, 0.46);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-copy {
  padding: 26px;
  border: 1px solid rgba(215, 162, 58, 0.42);
  border-radius: 8px;
  background: var(--white);
}

.video-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.video-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.video-list a {
  padding: 13px 14px;
  border-radius: 8px;
  color: var(--orange-dark);
  background: #fff2d2;
  font-weight: 900;
}

.youtube-channel-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 26px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 209, 117, 0.36), transparent 28%),
    linear-gradient(135deg, var(--orange), #24160b);
}

.youtube-channel-card img {
  width: 96px;
  height: 86px;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
}

.youtube-channel-card span {
  color: #ffe1a2;
  font-weight: 900;
  text-transform: uppercase;
}

.youtube-channel-card strong {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.youtube-channel-card small {
  color: #fff1d8;
  font-size: 16px;
  font-weight: 800;
}

.testimonials {
  background: var(--white);
}

.google-reviews {
  background:
    radial-gradient(circle at 86% 12%, rgba(215, 162, 58, 0.18), transparent 30%),
    linear-gradient(180deg, #fffaf0, var(--cream));
}

.google-review-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.google-review-panel article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(215, 162, 58, 0.42);
  border-radius: 8px;
  background: var(--glass-strong);
  box-shadow: 0 18px 44px rgba(89, 47, 4, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.google-review-panel article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(89, 47, 4, 0.15);
}

.google-review-panel span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.google-review-panel strong {
  display: block;
  margin: 10px 0;
  color: var(--orange-dark);
  font-size: 24px;
}

.google-review-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.insights {
  background: var(--cream);
}

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

.testimonial-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(215, 162, 58, 0.42);
  border-radius: 8px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(89, 47, 4, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: var(--orange-dark);
}

.testimonial-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid rgba(215, 162, 58, 0.42);
  border-radius: 8px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--orange-dark);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 54px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #5d260b);
}

.contact .eyebrow {
  color: #ffd175;
}

.contact p {
  max-width: 790px;
  color: #ffe9c5;
}

footer {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px clamp(18px, 4vw, 56px);
  color: #ffe9c5;
  background: #160d07;
  font-size: 13px;
  line-height: 1.7;
}

footer img {
  width: min(260px, 70vw);
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

footer p {
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
}

.footer-links a {
  color: #ffd175;
  font-weight: 900;
}

.calculator-footer-links {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 209, 117, 0.18);
}

.calculator-footer-links a {
  color: #fff1d8;
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 6px 16px 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(36, 22, 11, 0.24);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.mobile-bottom-bar {
  display: none;
}

.page-hero {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 245, 223, 0.97), rgba(255, 250, 240, 0.94)),
    radial-gradient(circle at 88% 16%, rgba(240, 68, 0, 0.22), transparent 34%);
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  max-width: 900px;
}

.page-content {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 4vw, 56px);
}

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

.page-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(215, 162, 58, 0.42);
  border-radius: 8px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-card p,
.page-content p {
  color: var(--muted);
  line-height: 1.7;
}

.page-card span {
  color: var(--orange-dark);
  font-weight: 900;
}

.article-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.article-page h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.article-page h2 {
  margin-top: 36px;
  font-size: clamp(26px, 3vw, 36px);
}

.article-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.article-intro {
  color: var(--ink) !important;
  font-size: 22px !important;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(215, 162, 58, 0.42);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 980px) {
  .hero,
  .toolkit-layout,
  .varnas,
  .lead-magnet,
  .youtube-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .calculator-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .hero-stats,
  .trust-strip,
  .ecosystem-grid,
  .why-grid,
  .image-proof-grid,
  .service-grid,
  .platform-grid,
  .resource-grid,
  .varnas-media-grid,
  .google-review-panel,
  .testimonial-grid,
  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand img:not(.brand-mark) {
    width: min(330px, 88vw);
  }

  .brand-mark {
    width: 56px;
    height: 50px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .header-cta {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 16px;
    font-size: 13px;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero-stats,
  .trust-strip,
  .ecosystem-grid,
  .why-grid,
  .image-proof-grid,
  .service-grid,
  .platform-grid,
  .resource-grid,
  .calculator-menu,
  .calc-fields,
  .lead-field-grid,
  .varnas-highlights,
  .varnas-media-grid,
  .google-review-panel,
  .testimonial-grid,
  .page-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions,
  .calculator-actions {
    flex-direction: column;
  }

  .button,
  .calc-card {
    width: 100%;
  }

  h1 {
    font-size: 40px;
  }

  .varnas {
    gap: 22px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .vkc-brand-lockup {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vkc-logo {
    width: 104px;
    height: 104px;
  }

  .course-list {
    gap: 8px;
    margin: 18px 0;
  }

  .course-list span,
  .varnas-highlights span {
    padding: 11px 12px;
  }

  .varnas .hero-actions {
    margin: 20px 0;
  }

  .varnas-media-grid {
    margin-top: 18px;
  }

  .varnas-media-grid article,
  .varnas-media-grid img {
    min-height: 190px;
  }

  .expert-logo.portrait {
    width: 116px;
    height: 116px;
  }

  .lead-logo {
    opacity: 0.24;
  }

  body {
    padding-bottom: 66px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(215, 162, 58, 0.42);
    background: var(--white);
    box-shadow: 0 -12px 30px rgba(36, 22, 11, 0.14);
  }

  .mobile-bottom-bar a {
    display: grid;
    place-items: center;
    min-height: 58px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 950;
  }

  .mobile-bottom-bar a:nth-child(2) {
    color: var(--white);
    background: var(--green);
  }
}

@media print {
  .site-header,
  .hero,
  .trust-strip,
  .service-grid,
  .calculator-menu,
  .calculator-actions,
  .varnas,
  .lead-magnet,
  .youtube-section,
  .testimonials,
  .platform-grid,
  .resource-grid,
  .faq,
  .contact,
  .floating-whatsapp,
  .mobile-bottom-bar,
  footer {
    display: none !important;
  }

  .calculator-section,
  .calculator-workspace,
  .calc-panel.active,
  .chart-panel {
    display: block !important;
    box-shadow: none;
  }
}

.hvfs-popup-shell {
  display: none;
}

.hvfs-popup-shell.active {
  display: block;
}

.hvfs-popup-dimmer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 10000000;
}

.hvfs-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 44px);
  background: #ffffff;
  border-radius: 8px;
  transform: translate(-50%, -50%);
  z-index: 10000001;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.hvfs-popup-header {
  display: grid;
  gap: 10px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #fff5df, #ffffff);
  border-bottom: 1px solid rgba(215, 162, 58, 0.42);
}

.hvfs-popup-header strong {
  color: #24160b;
  font-size: 22px;
  line-height: 1.2;
}

.hvfs-popup-header span {
  color: #765f4c;
  font-size: 14px;
  line-height: 1.5;
}

.hvfs-popup-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  padding: 0 16px;
  border-radius: 8px;
  color: #ffffff;
  background: #0d5b15;
  font-weight: 900;
  text-decoration: none;
}

.hvfs-popup-form {
  height: min(650px, calc(100vh - 210px));
  overflow: auto;
}

.hvfs-popup-form iframe {
  width: 100%;
  min-height: 100%;
  border: 0;
}

.hvfs-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #24160b;
  cursor: pointer;
  z-index: 2;
}

.hvfs-popup-close::before,
.hvfs-popup-close::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 16px;
  width: 2px;
  height: 18px;
  background: #ffffff;
}

.hvfs-popup-close::before {
  transform: rotate(45deg);
}

.hvfs-popup-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 680px) {
  .hvfs-popup-header strong {
    font-size: 19px;
  }

  .hvfs-popup-form {
    height: calc(100vh - 220px);
  }
}