:root {
  --navy: #071426;
  --navy-2: #0d2138;
  --gold: #c9a24d;
  --gold-dark: #9f7830;
  --cream: #f7f1e7;
  --white: #ffffff;
  --ink: #132033;
  --muted: #637083;
  --line: #e6dccb;
  --soft: #fbf8f1;
  --shadow: 0 22px 60px rgba(7, 20, 38, 0.14);
  --radius: 8px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}

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

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

ul {
  padding-left: 1.1rem;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(201, 162, 77, 0.22);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand img {
  height: 62px;
  width: auto;
}

.footer-logo {
  height: 82px;
  margin-bottom: 12px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  display: none;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  padding: 10px;
}

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

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

.nav-cta {
  background: var(--navy);
  border-radius: 999px;
  color: var(--white) !important;
  padding: 10px 18px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.96), rgba(7, 20, 38, 0.72)),
    /* Original image: https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80 */
    url("../img/students_applications.jpg") center/cover;
  color: var(--white);
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 760px;
  padding: 96px clamp(20px, 6vw, 86px);
}

.webinar-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.96), rgba(7, 20, 38, 0.74)),
    url("../img/students_applications.jpg") center/cover;
  color: var(--white);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  min-height: 680px;
  padding: 100px clamp(20px, 6vw, 86px);
}

.webinar-hero h1 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  max-width: 980px;
}

.webinar-hero .lead {
  max-width: 760px;
}

.webinar-panel,
.webinar-thank-you {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 30px;
}

.webinar-panel h2,
.webinar-thank-you h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.12;
}

.webinar-points {
  display: grid;
  gap: 10px;
  max-width: none;
}

.webinar-points li {
  background: var(--soft);
  border-color: var(--line);
  color: var(--ink);
}

.webinar-learn-list {
  margin: auto;
  max-width: 1000px;
}

.webinar-bonus {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.webinar-bonus h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
  max-width: 980px;
}

.webinar-form-section {
  display: grid;
  justify-items: center;
}

.webinar-form,
.webinar-thank-you {
  max-width: 760px;
  width: 100%;
}

.webinar-thank-you {
  text-align: center;
}

.form-note {
  font-size: 0.92rem;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.split h2,
.final-cta h2,
.price-card h2,
.product-card h2,
.mini-card h2,
.tool-card h2,
.legal h2,
.calendar-placeholder h2,
.booking-panel h2,
.login-card h2 {
  font-family: var(--serif);
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.45rem, 5vw, 5rem);
  max-width: 980px;
}

.lead,
.page-hero p,
.section-heading p,
.split p,
.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin-top: 20px;
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 12px !important;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button-row.center {
  justify-content: center;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(201, 162, 77, 0.28);
  color: var(--navy);
}

.btn.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.cream .btn.ghost,
.booking-panel .btn.ghost {
  border-color: var(--line);
  color: var(--navy);
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  padding-top: 20px;
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  padding: 8px 14px;
}

.hero-panel {
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-panel > img,
.page-hero.image-right img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-carousel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.slide {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.8s ease;
  animation: heroSlide 20s infinite;
}

.slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.slide::after {
  background: linear-gradient(180deg, rgba(7, 20, 38, 0.08), rgba(7, 20, 38, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.slide.one {
  animation-delay: 0s;
}

.slide.two {
  animation-delay: 5s;
}

.slide.three {
  animation-delay: 10s;
}

.slide.four {
  animation-delay: 15s;
}

@keyframes heroSlide {
  0%,
  20% {
    opacity: 1;
  }

  25%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.metric-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: 290px;
  padding: 20px;
  position: absolute;
}

.metric-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.metric-card span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin-top: 4px;
}

.metric-card.top {
  right: -18px;
  top: 42px;
}

.metric-card.bottom {
  bottom: 42px;
  left: -18px;
}

.section,
.page-hero,
.final-cta,
.notice {
  padding: 88px clamp(20px, 6vw, 86px);
}

.section.compact {
  padding-bottom: 38px;
  padding-top: 38px;
}

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

.navy {
  background: var(--navy);
  color: var(--white);
}

.centered-kicker {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  margin: auto;
  max-width: 900px;
  text-align: center;
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 820px;
  text-align: center;
}

.section-heading h2,
.split h2,
.final-cta h2,
.page-hero h1 {
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.section-heading p,
.split p,
.page-hero p {
  color: var(--muted);
}

.card-grid,
.pricing-grid,
.product-grid,
.tools-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three,
.pricing-grid,
.product-grid,
.tools-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card,
.mini-card,
.price-card,
.product-card,
.tool-card,
.login-card,
.calendar-placeholder,
.status-card,
.booking-panel,
.intake-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(7, 20, 38, 0.06);
  padding: 28px;
}

.service-card {
  min-height: 250px;
  overflow: hidden;
}

.service-card img,
.price-card img,
.product-card > img {
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 2px);
  height: auto;
  margin: -10px -10px 18px;
  object-fit: cover;
  width: calc(100% + 20px);
}

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

.service-card h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 16px 0 12px;
}

.choice-card {
  display: grid;
  gap: 12px;
}

.choice-icon {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.choice-card h3,
.comparison-card h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.comparison-card {
  display: grid;
  gap: 16px;
}

.comparison-card ul,
.trust-points {
  display: grid;
  gap: 10px;
}

.comparison-card li,
.trust-points li {
  color: var(--ink);
}

.comparison-card .check-list {
  list-style: none;
  padding-left: 0;
}

.comparison-card .check-list li {
  display: grid;
  gap: 10px;
  grid-template-columns: 22px 1fr;
}

.comparison-card .check-list li::before {
  color: var(--gold-dark);
  content: "✅";
  font-weight: 800;
}

.comparison-card.highlight {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.section-note {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.25;
  margin: 34px auto 0;
  max-width: 980px;
  text-align: center;
}

.trust-statement {
  background: var(--navy);
  color: var(--white);
}

.trust-statement .section-heading h2,
.trust-statement .section-heading p {
  color: var(--white);
}

.trust-points {
  list-style: none;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0;
}

.trust-points li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  padding: 16px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.post-meta {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article {
  margin: auto;
  max-width: 900px;
}

.article .post-meta {
  margin-bottom: 16px;
}

.article h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  margin: 34px 0 12px;
}

.article p,
.article li {
  color: var(--ink);
}

.article ul {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.article-note {
  background: var(--soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  margin: 26px 0;
  padding: 18px;
}

.service-card p,
.mini-card p,
.price-card p,
.product-card p,
.tool-card p,
.status-card span,
.site-footer p,
.legal p,
.calendar-placeholder p,
.booking-panel span,
.intake-form p {
  color: var(--muted);
}

.service-card:hover,
.price-card:hover,
.product-card:hover,
.mini-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.split,
.page-hero.image-right,
.product-feature,
.portal-layout {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  background: var(--soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px;
}

.feature-list strong,
.status-card strong {
  color: var(--navy);
  display: block;
  font-weight: 800;
}

.feature-list span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.product-feature h2,
.product-feature p {
  color: var(--white);
}

.toolkit-preview {
  display: grid;
  gap: 14px;
}

.image-stack {
  align-items: stretch;
  grid-template-columns: 1.1fr 0.9fr;
}

.image-stack img {
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.image-stack div {
  display: grid;
  gap: 14px;
}

.toolkit-preview span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  padding: 18px;
}

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

blockquote {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1.02rem;
  padding: 30px;
}

cite {
  color: var(--gold-dark);
  display: block;
  font-style: normal;
  font-weight: 800;
  margin-top: 18px;
}

.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  max-width: 980px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero.image-right {
  min-height: 580px;
}

.price-card,
.product-card,
.tool-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card strong,
.product-card strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.price-card span {
  color: var(--gold-dark);
  font-weight: 700;
}

.featured {
  border-color: var(--gold);
}

.product-art {
  align-items: center;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy), #16385f);
  border-radius: var(--radius);
  color: var(--gold);
  display: flex;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  justify-content: center;
}

.faq {
  max-width: 920px;
  margin: auto;
}

.faq h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.4rem;
  margin-bottom: 22px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.tool-card label {
  align-items: flex-start;
  color: var(--ink);
  display: flex;
  gap: 12px;
  line-height: 1.45;
}

.tool-card input[type="checkbox"] {
  accent-color: var(--gold);
  flex: 0 0 18px;
  height: 18px;
  margin-top: 3px;
  min-height: 0;
  width: 18px;
}

.result {
  background: var(--soft);
  border-radius: var(--radius);
  font-weight: 800;
  min-height: 54px;
  padding: 14px;
}

input:not([type="checkbox"]),
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 46px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

.notice {
  background: #fff7e8;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.booking-panel,
.intake-form,
.login-card {
  display: grid;
  gap: 14px;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(7, 20, 38, 0.06);
  padding: 28px;
}

.contact-card h2,
.contact-form h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.08;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-list a {
  background: var(--soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  display: block;
  padding: 18px;
}

.contact-list strong {
  color: var(--navy);
  display: block;
}

.contact-list span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.calendar-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 241, 231, 0.95)),
    repeating-linear-gradient(90deg, transparent, transparent 72px, rgba(201, 162, 77, 0.2) 73px);
  min-height: 260px;
}

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

.legal {
  margin: auto;
  max-width: 920px;
}

.legal h2 {
  color: var(--navy);
  font-size: 2rem;
  margin-top: 28px;
}

.whatsapp-float {
  background: #128c7e;
  border-radius: 999px;
  bottom: 20px;
  box-shadow: var(--shadow);
  color: var(--white);
  font-weight: 800;
  padding: 12px 18px;
  position: fixed;
  right: 20px;
  z-index: 9;
}

.whatsapp-float {
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  color: transparent;
  font-size: 0;
  height: 58px;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  text-indent: -9999px;
  width: 58px;
}

.whatsapp-float::before {
  animation: whatsapp-pulse 2s ease-out infinite;
  background: rgba(37, 211, 102, 0.36);
  border-radius: 50%;
  content: "";
  inset: -6px;
  position: absolute;
}

.whatsapp-float::after {
  background: center / 28px 28px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M19.1 17.3c-.3-.1-1.6-.8-1.9-.9-.2-.1-.4-.1-.6.1-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.1-.4-2.2-1.4-.8-.7-1.3-1.6-1.5-1.9-.2-.3 0-.4.1-.6.1-.1.3-.3.4-.5.1-.1.2-.3.3-.4.1-.2.1-.3 0-.5-.1-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4-.2 0-.3 0-.5 0-.2 0-.5.1-.7.3-.2.3-.9 1-.9 2.5s1 2.9 1.2 3.1c.2.2 2.1 3 5 4.2.7.3 1.2.5 1.7.6.7.2 1.3.2 1.8.1.6-.1 1.7-.7 2-1.4.2-.7.2-1.2.1-1.4-.1-.1-.3-.2-.5-.3zM16 3C8.8 3 3 8.8 3 16c0 2.9.9 5.7 2.6 8L4 29l5.2-1.6c2.2 1.2 4.7 1.8 7.2 1.8 7.2 0 13-5.8 13-13S23.2 3 16 3zm0 23.5c-1.9 0-3.7-.5-5.3-1.5l-.4-.2-4 1.2 1.3-3.9-.2-.4A10.5 10.5 0 1 1 16 26.5z'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  position: absolute;
}

.site-footer {
  align-items: start;
  background: var(--navy);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 38px clamp(20px, 6vw, 86px);
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1050px) {
  .hero,
  .webinar-hero,
  .split,
  .page-hero.image-right,
  .product-feature,
  .portal-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .webinar-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .image-stack {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.two,
  .pricing-grid,
  .product-grid,
  .tools-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .brand img {
    height: 56px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    background: linear-gradient(160deg, rgba(7, 20, 38, 0.98), rgba(13, 33, 56, 0.96));
    border: 1px solid rgba(201, 162, 77, 0.28);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 18px;
    max-height: calc(100vh - 130px);
    opacity: 0;
    overflow-y: auto;
    padding: 10px 18px;
    pointer-events: none;
    position: fixed;
    right: 18px;
    top: 98px;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
    width: auto;
    z-index: 20;
  }

  .nav-links a {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    color: var(--white);
    padding: 14px 0;
    width: 100%;
  }

  .nav-links .nav-cta {
    background: transparent;
    border-bottom: 0;
    color: var(--gold) !important;
    padding-bottom: 14px;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .hero,
  .webinar-hero,
  .section,
  .page-hero,
  .final-cta,
  .notice {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 70px;
  }

  .webinar-hero {
    padding-top: 70px;
  }

  .webinar-bonus {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row,
  .site-footer,
  .site-footer div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-carousel {
    min-height: 430px;
  }

  .hero-panel > img,
  .slide img {
    height: 360px;
  }

  .hero-carousel .metric-card {
    margin-top: 0;
    max-width: 250px;
    position: absolute;
  }

  .hero-carousel .metric-card.top {
    right: 14px;
    top: 18px;
  }

  .hero-carousel .metric-card.bottom {
    bottom: 18px;
    left: 14px;
  }

  .card-grid.three,
  .card-grid.two,
  .pricing-grid,
  .product-grid,
  .tools-grid,
  .testimonial-grid,
  .portal-board {
    grid-template-columns: 1fr;
  }

  .service-card,
  .mini-card,
  .price-card,
  .product-card,
  .tool-card,
  .login-card,
  .calendar-placeholder,
  .status-card,
  .booking-panel,
  .intake-form {
    padding: 22px;
  }

  .whatsapp-float {
    bottom: 22px;
    left: auto;
    right: 18px;
    text-align: left;
  }
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.9);
  }

  70% {
    opacity: 0;
    transform: scale(1.35);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
