:root {
  --bg: #020814;
  --bg-2: #041120;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.58);
  --cyan: #10d8ff;
  --teal: #19e5b8;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.42);
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(16, 216, 255, 0.05), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(25, 229, 184, 0.05), transparent 20%),
    linear-gradient(180deg, #01060d 0%, #020913 48%, #03111d 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(2, 8, 20, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

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

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: white;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-primary {
  color: #06151c;
  background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
  box-shadow: 0 14px 34px rgba(16, 216, 255, 0.18);
}

.btn-nav {
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 1rem;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 120px;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 217, 255, 0.06), transparent 28%),
    radial-gradient(circle at 76% 28%, rgba(25, 229, 184, 0.07), transparent 22%),
    linear-gradient(180deg, #010611 0%, #03111f 54%, #020814 100%);
}

.hero-stars,
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stars {
  opacity: 0.18;
  background-image: radial-gradient(rgba(255,255,255,0.7) 1px, transparent 1px);
  background-size: 110px 110px;
}

.hero-noise {
  background:
    radial-gradient(circle at 30% 55%, rgba(16, 216, 255, 0.14), transparent 18%),
    radial-gradient(circle at 66% 48%, rgba(25, 229, 184, 0.09), transparent 20%);
  opacity: 0.9;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
}

.hero-glow-left {
  width: 360px;
  height: 360px;
  left: 10%;
  top: 26%;
  background: rgba(16, 216, 255, 0.12);
}

.hero-glow-center {
  width: 420px;
  height: 420px;
  left: 34%;
  top: 46%;
  background: rgba(16, 216, 255, 0.12);
}

.hero-glow-right {
  width: 420px;
  height: 420px;
  right: 6%;
  top: 18%;
  background: rgba(25, 229, 184, 0.10);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: start;
}

.hero-copy {
  padding-top: 14px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(4.9rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 620px;
  line-height: 1.05;
  word-break: keep-all;
}

.hero-subtitle span {
  color: var(--teal);
}

.hero-description {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.58;
}

.hero-info-box {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin-bottom: 30px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(7, 18, 31, 0.82), rgba(5, 14, 25, 0.92));
  border: 1px solid rgba(16, 216, 255, 0.2);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 45px rgba(0, 217, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.hero-info-icon {
  color: var(--cyan);
  flex-shrink: 0;
}

.hero-info-copy strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
}

.hero-info-copy span {
  color: var(--cyan);
  font-size: 0.96rem;
}

.hero-info-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.14);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 850px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-feature-icon {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-feature-copy strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.hero-feature-copy span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.32;
}

/* =========================
   HERO CARD
========================= */
.hero-card {
  position: relative;
  z-index: 4;
  max-width: 430px;
  width: 100%;
  margin-left: auto;
  padding: 30px 26px 24px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 229, 184, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(8, 18, 33, 0.84), rgba(4, 10, 20, 0.96));
  border: 1px solid rgba(25, 229, 184, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 40px rgba(16, 216, 255, 0.07),
    0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(20, 223, 228, 0.34),
    rgba(25, 229, 184, 0.10)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(16, 216, 255, 0.10) 0%,
    rgba(16, 216, 255, 0) 70%
  );
  pointer-events: none;
  filter: blur(32px);
}

/* icon */
.hero-card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(0, 217, 255, 0.10);
  border: 1px solid rgba(16, 216, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 10px 24px rgba(16, 216, 255, 0.10);
}

/* title */
.hero-card h3 {
  text-align: center;
  font-size: clamp(1.6rem, 2.4vw, 1.95rem);
  line-height: 1.05;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

/* subtitle */
.hero-card-subtext,
.hero-card p {
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 auto 20px;
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 320px;
}

/* optional fake inputs if used later */
.hero-fake-input {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  margin-bottom: 12px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
}

.hero-fake-input-icon {
  flex-shrink: 0;
}

/* CTA button */
.hero-card-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1de2b7 0%, #20c8f2 100%);
  color: #04111f;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(0, 217, 255, 0.20),
    0 0 20px rgba(25, 229, 184, 0.10);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.hero-card-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(0, 217, 255, 0.26),
    0 0 28px rgba(25, 229, 184, 0.14);
  filter: brightness(1.03);
}

/* trust note */
.hero-card-note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
}

.hero-card-note svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* proof */
.hero-card-proof {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-proof-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-proof-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #07111f;
  margin-left: -8px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.hero-proof-avatars img:first-child {
  margin-left: 0;
}

.hero-proof-text {
  font-size: 0.95rem;
  line-height: 1.22;
  color: #edf3fb;
}

.hero-proof-text span {
  color: var(--teal);
  font-weight: 800;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
  .hero-card {
    max-width: 500px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero-card {
    max-width: 100%;
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  .hero-card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .hero-card h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
  }

  .hero-card-subtext,
  .hero-card p {
    font-size: 0.94rem;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-card-btn {
    min-height: 54px;
    font-size: 0.96rem;
  }

  .hero-card-note {
    font-size: 0.84rem;
  }

  .hero-card-proof {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero-proof-text {
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .hero-card h3 {
    font-size: 1.42rem;
  }

  .hero-card-subtext,
  .hero-card p {
    font-size: 0.90rem;
    line-height: 1.45;
  }

  .hero-card-btn {
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .hero-proof-avatars img {
    width: 36px;
    height: 36px;
  }

  .hero-proof-text {
    font-size: 0.88rem;
    line-height: 1.2;
  }
}

/* EARTH */
.hero-earth {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  margin-top: 26px;
  pointer-events: none;
}

.hero-earth-glow {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: min(980px, 78vw);
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 78%, rgba(25, 229, 184, 0.20), transparent 44%),
    radial-gradient(circle at 50% 90%, rgba(0, 217, 255, 0.24), transparent 58%);
  filter: blur(26px);
}

.hero-earth-line {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(1700px, 122vw);
  height: 180px;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  border-top: 2px solid rgba(65, 255, 239, 0.68);
  box-shadow:
    0 -10px 30px rgba(0, 217, 255, 0.25),
    0 -2px 8px rgba(25, 229, 184, 0.14);
}

.hero-earth-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1800px, 130vw);
  height: 170px;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  background:
    radial-gradient(circle at 50% 100%, rgba(25, 229, 184, 0.16), transparent 54%),
    linear-gradient(180deg, rgba(0, 217, 255, 0.12) 0%, rgba(0, 217, 255, 0.02) 70%, transparent 100%);
  opacity: 0.9;
}

.hero-earth-flare {
  position: absolute;
  bottom: 24px;
  width: 240px;
  height: 110px;
  filter: blur(8px);
  opacity: 0.7;
}

.hero-earth-flare-left {
  left: 0;
  background: linear-gradient(135deg, transparent 20%, rgba(0, 217, 255, 0.42) 52%, transparent 80%);
  transform: rotate(-16deg);
}

.hero-earth-flare-right {
  right: 0;
  background: linear-gradient(225deg, transparent 20%, rgba(0, 217, 255, 0.42) 52%, transparent 80%);
  transform: rotate(16deg);
}

/* LEARN */
.learn-overlap {
  position: relative;
  z-index: 5;
  margin-top: -118px;
  padding-bottom: 34px;
}

.learn-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.learn-title .line {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ee6b2, transparent);
}

.learn-title h3 {
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.88) 0%, rgba(2, 9, 18, 0.94) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 18px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
}

.learn-card {
  min-height: 192px;
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.learn-card:last-child {
  border-right: none;
}

.learn-icon {
  margin-bottom: 18px;
  color: #13dce3;
}

.learn-card h4 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.2;
}

.learn-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  font-size: 0.93rem;
}

.learn-footer-pill {
  width: fit-content;
  max-width: 100%;
  margin: 14px auto 0;
  background: rgba(10, 18, 30, 0.94);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 13px 20px;
  color: #dbe4f2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

.learn-footer-pill .highlight {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: #ffffff;
}

.learn-footer-pill .dot {
  color: rgba(255,255,255,0.45);
}



/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero {
    padding-bottom: 110px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-card {
    max-width: 520px;
    margin-left: 0;
  }

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

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

  .learn-card:nth-child(2n) {
    border-right: none;
  }

  .learn-overlap {
    margin-top: -90px;
  }
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 88px;
    left: 14px;
    right: 14px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(4, 10, 18, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 28px));
  }

  .hero {
    padding: 34px 0 90px;
  }

  .hero-title {
    font-size: clamp(3.8rem, 15vw, 5rem);
  }

  .hero-subtitle {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-info-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-info-divider {
    width: 100%;
    height: 1px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 26px 20px 22px;
  }

  .hero-card h3 {
    font-size: 1.6rem;
  }

  .hero-earth {
    height: 190px;
  }

  .hero-earth-line {
    width: 170vw;
  }

  .hero-earth-body {
    width: 180vw;
  }

  .hero-earth-glow {
    width: 90vw;
    height: 160px;
  }

  .learn-overlap {
    margin-top: -66px;
  }

  .learn-title h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .learn-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .learn-card:last-child {
    border-bottom: none;
  }
}


/* =========================================================
   FINAL HERO MATCH PASS
   Paste this at the VERY BOTTOM of styles.css
   ========================================================= */

/* overall hero proportions */
.hero {
  padding: 46px 0 104px !important;
  background:
    radial-gradient(circle at 18% 26%, rgba(0, 217, 255, 0.045), transparent 27%),
    radial-gradient(circle at 74% 24%, rgba(25, 229, 184, 0.055), transparent 21%),
    linear-gradient(180deg, #010611 0%, #03111d 56%, #020814 100%) !important;
}

.hero-inner,
.hero-container {
  max-width: 1280px;
  display: grid !important;
  grid-template-columns: 1.06fr 0.94fr !important;
  gap: 44px !important;
  align-items: start !important;
}

.hero-copy,
.hero-left {
  padding-top: 12px !important;
  max-width: 760px;
}

/* stars / glow */
.hero-stars {
  opacity: 0.14 !important;
  background-size: 128px 128px !important;
}

.hero-glow-left {
  width: 320px !important;
  height: 320px !important;
  left: 16% !important;
  top: 32% !important;
  background: rgba(16, 216, 255, 0.10) !important;
}

.hero-glow-center {
  width: 360px !important;
  height: 360px !important;
  left: 30% !important;
  top: 52% !important;
  background: rgba(16, 216, 255, 0.11) !important;
}

.hero-glow-right {
  width: 370px !important;
  height: 370px !important;
  right: 8% !important;
  top: 24% !important;
  background: rgba(25, 229, 184, 0.08) !important;
}

/* headline */
.hero-badge {
  margin-bottom: 16px !important;
  font-size: 0.88rem !important;
  letter-spacing: -0.01em !important;
}

.hero-title,
.hero-title-gradient {
  font-size: clamp(5rem, 7.4vw, 6.65rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.065em !important;
  margin-bottom: 10px !important;
}

.hero-subtitle {
  max-width: 720px !important;
  font-size: clamp(2.7rem, 4.65vw, 4.05rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 18px !important;
}

.hero-description {
  max-width: 720px !important;
  font-size: 0.98rem !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.80) !important;
  margin-bottom: 24px !important;
}

/* date/time box */
.hero-info-box {
  max-width: 700px !important;
  padding: 19px 22px !important;
  border-radius: 20px !important;
  margin-bottom: 24px !important;
  gap: 20px !important;
  background: linear-gradient(180deg, rgba(6, 17, 30, 0.80), rgba(4, 12, 23, 0.90)) !important;
}

.hero-info-copy strong {
  font-size: 0.98rem !important;
}

.hero-info-copy span {
  font-size: 0.92rem !important;
}

/* feature row under box */
.hero-features {
  max-width: 760px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 2px !important;
}

.hero-feature {
  gap: 10px !important;
  align-items: flex-start !important;
}

.hero-feature-icon {
  width: 22px;
  min-width: 22px;
  margin-top: 1px !important;
}

.hero-feature-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.hero-feature-copy strong {
  font-size: 0.92rem !important;
  line-height: 1.05 !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}

.hero-feature-copy span {
  font-size: 0.80rem !important;
  line-height: 1.18 !important;
  color: rgba(255, 255, 255, 0.70) !important;
  max-width: 135px;
}

/* right card */
.hero-card,
.hero-form-card {
  max-width: 408px !important;
  margin-left: auto !important;
  margin-top: 18px !important;
  padding: 28px 24px 22px !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 229, 184, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(8, 18, 33, 0.82), rgba(4, 10, 20, 0.96)) !important;
}

.hero-card-icon,
.form-top-icon {
  width: 58px !important;
  height: 58px !important;
  margin-bottom: 18px !important;
}

.hero-card h3,
.hero-form-card h3 {
  font-size: 1.72rem !important;
  line-height: 1.04 !important;
  margin-bottom: 10px !important;
}

.hero-card p,
.hero-form-card p {
  font-size: 0.98rem !important;
  margin-bottom: 18px !important;
}

.hero-fake-input,
.input-group {
  height: 54px !important;
  border-radius: 14px !important;
  margin-bottom: 11px !important;
}

.hero-card-btn,
.hero-btn,
.whatsapp-cta-btn {
  height: 56px !important;
  font-size: 1rem !important;
  margin-top: 4px !important;
}

.hero-card-note,
.form-note {
  font-size: 0.88rem !important;
  margin-top: 12px !important;
}

.hero-card-proof,
.form-social-proof {
  margin-top: 16px !important;
  gap: 12px !important;
}

.hero-proof-avatars img,
.avatars img {
  width: 38px !important;
  height: 38px !important;
}

.hero-proof-text,
.proof-text {
  font-size: 0.94rem !important;
  line-height: 1.18 !important;
}

/* earth / horizon */
.hero-earth {
  height: 210px !important;
  margin-top: 18px !important;
}

.hero-earth-glow {
  width: min(1120px, 86vw) !important;
  height: 170px !important;
  bottom: 14px !important;
  filter: blur(22px) !important;
  background:
    radial-gradient(circle at 50% 80%, rgba(25, 229, 184, 0.18), transparent 42%),
    radial-gradient(circle at 50% 92%, rgba(0, 217, 255, 0.22), transparent 60%) !important;
}

.hero-earth-line {
  width: min(1780px, 128vw) !important;
  height: 132px !important;
  bottom: 22px !important;
  border-top-width: 2px !important;
  box-shadow:
    0 -8px 24px rgba(0, 217, 255, 0.22),
    0 -2px 7px rgba(25, 229, 184, 0.14) !important;
}

.hero-earth-body {
  width: min(1860px, 134vw) !important;
  height: 150px !important;
  bottom: 0 !important;
  opacity: 0.84 !important;
}

.hero-earth-flare {
  width: 180px !important;
  height: 82px !important;
  bottom: 28px !important;
  opacity: 0.58 !important;
}

/* learn overlap */
.learn-overlap {
  margin-top: -92px !important;
  padding-bottom: 24px !important;
}

.learn-title {
  margin-bottom: 16px !important;
}

.learn-title h3 {
  font-size: 1.8rem !important;
  line-height: 1 !important;
}

.learn-title .line {
  width: 44px !important;
}

/* cards */
.learn-grid {
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.90) 0%, rgba(2, 9, 18, 0.95) 100%) !important;
}

.learn-card {
  min-height: 174px !important;
  padding: 28px 16px 24px !important;
}

.learn-icon {
  margin-bottom: 16px !important;
}

.learn-icon svg {
  width: 34px !important;
  height: 34px !important;
}

.learn-card h4 {
  font-size: 1.02rem !important;
  line-height: 1.15 !important;
  margin-bottom: 10px !important;
}

.learn-card p {
  font-size: 0.84rem !important;
  line-height: 1.34 !important;
  max-width: 210px;
  margin: 0 auto !important;
}

/* bottom pill */
.learn-footer-pill {
  margin-top: 12px !important;
  padding: 12px 18px !important;
  font-size: 0.90rem !important;
  gap: 10px !important;
}

/* desktop refinement */
@media (min-width: 1281px) {
  .hero-inner,
  .hero-container {
    grid-template-columns: 1.04fr 0.96fr !important;
  }

  .hero-copy,
  .hero-left {
    max-width: 740px;
  }
}

/* tablet */
@media (max-width: 1180px) {
  .hero {
    padding-bottom: 98px !important;
  }

  .hero-inner,
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .hero-card,
  .hero-form-card {
    max-width: 500px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 640px !important;
  }

  .learn-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .learn-card:nth-child(2n) {
    border-right: none !important;
  }
}

/* mobile */
@media (max-width: 768px) {
  .hero {
    padding: 34px 0 78px !important;
  }

  .hero-title,
  .hero-title-gradient {
    font-size: clamp(3.7rem, 15vw, 5rem) !important;
  }

  .hero-subtitle {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  .hero-info-box {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .hero-info-divider {
    width: 100% !important;
    height: 1px !important;
  }

  .hero-features {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 14px !important;
  }

  .hero-feature-copy span {
    max-width: none;
  }

  .hero-earth {
    height: 170px !important;
  }

  .learn-overlap {
    margin-top: -58px !important;
  }

  .learn-title h3 {
    font-size: 1.5rem !important;
  }

  .learn-grid {
    grid-template-columns: 1fr !important;
  }

  .learn-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }

  .learn-card:last-child {
    border-bottom: none !important;
  }
}


.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 170px;
}

.hero-planet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 340px;
  pointer-events: none;
  z-index: 1;
}

.hero-planet svg {
  width: 100%;
  height: 100%;
  display: block;
}

.learn-overlap,
.learn-section {
  position: relative;
  z-index: 5;
  margin-top: -130px;
}

@media (max-width: 1180px) {
  .hero {
    padding-bottom: 145px;
  }

  .hero-planet {
    height: 290px;
    bottom: 8px;
  }

  .learn-overlap,
  .learn-section {
    margin-top: -105px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 110px;
  }

  .hero-planet {
    height: 210px;
    bottom: 0;
  }

  .learn-overlap,
  .learn-section {
    margin-top: -72px;
  }
}


/* ===== HERO WITH IMAGE BACKGROUND ===== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 150px !important;
  background:
    linear-gradient(180deg, rgba(1, 6, 17, 0.30) 0%, rgba(2, 8, 20, 0.40) 100%),
    url("cinematic.png") center bottom / cover no-repeat !important;
}

/* disable old generated effects */
.hero-stars,
.hero-noise,
.hero-glow,
.hero-earth,
.hero-earth-wrap,
.hero-planet {
  display: none !important;
}

.hero-inner,
.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 44px;
  align-items: start;
}

.hero-copy,
.hero-left {
  max-width: 760px;
  padding-top: 12px;
}

.hero-title,
.hero-title-gradient {
  font-size: clamp(4.9rem, 7.6vw, 6.6rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.065em !important;
  margin-bottom: 10px !important;
}

.hero-subtitle {
  max-width: 720px !important;
  font-size: clamp(2.75rem, 4.7vw, 4.05rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 18px !important;
}

.hero-description {
  max-width: 720px !important;
  font-size: 0.98rem !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 24px !important;
}

.hero-info-box {
  max-width: 700px !important;
  padding: 19px 22px !important;
  border-radius: 20px !important;
  margin-bottom: 24px !important;
  gap: 20px !important;
  background: linear-gradient(180deg, rgba(6, 17, 30, 0.78), rgba(4, 12, 23, 0.88)) !important;
  border: 1px solid rgba(16, 216, 255, 0.20) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 40px rgba(0, 217, 255, 0.05) !important;
  backdrop-filter: blur(8px);
}

.hero-features {
  max-width: 760px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.hero-feature {
  gap: 10px !important;
  align-items: flex-start !important;
}

.hero-feature-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.hero-feature-copy strong {
  font-size: 0.92rem !important;
  line-height: 1.05 !important;
  margin-bottom: 4px !important;
}

.hero-feature-copy span {
  font-size: 0.80rem !important;
  line-height: 1.18 !important;
  color: rgba(255,255,255,0.72) !important;
  max-width: 135px;
}

.hero-card {
  position: relative;
  z-index: 4;
  max-width: 408px !important;
  margin-left: auto !important;
  margin-top: 18px !important;
  padding: 28px 24px 22px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(8, 18, 33, 0.82), rgba(4, 10, 20, 0.95)) !important;
  border: 1px solid rgba(25, 229, 184, 0.42) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 0 40px rgba(16, 216, 255, 0.06),
    0 24px 70px rgba(0,0,0,0.34) !important;
  backdrop-filter: blur(10px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(20, 223, 228, 0.35), rgba(25, 229, 184, 0.12));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.learn-overlap,
.learn-section {
  position: relative;
  z-index: 5;
  margin-top: -128px !important;
  padding-bottom: 24px !important;
}

.learn-title {
  margin-bottom: 18px !important;
}

.learn-title h3 {
  font-size: 1.82rem !important;
}

.learn-title .line {
  width: 44px !important;
}

.learn-grid {
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.90), rgba(2, 9, 18, 0.95)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 18px 60px rgba(0,0,0,0.28) !important;
}

.learn-card {
  min-height: 176px !important;
  padding: 28px 16px 24px !important;
}

.learn-card h4 {
  font-size: 1.02rem !important;
  margin-bottom: 10px !important;
}

.learn-card p {
  font-size: 0.84rem !important;
  line-height: 1.34 !important;
  max-width: 210px;
  margin: 0 auto !important;
}

.learn-footer-pill {
  margin-top: 12px !important;
  padding: 12px 18px !important;
  font-size: 0.90rem !important;
  gap: 10px !important;
}

@media (max-width: 1180px) {
  .hero {
    padding-bottom: 120px !important;
    background-position: center bottom !important;
  }

  .hero-inner,
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .hero-card {
    max-width: 500px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 640px !important;
  }

  .learn-overlap,
  .learn-section {
    margin-top: -96px !important;
  }

  .learn-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .learn-card:nth-child(2n) {
    border-right: none !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 0 90px !important;
    background-position: center bottom !important;
  }

  .hero-title,
  .hero-title-gradient {
    font-size: clamp(3.7rem, 15vw, 5rem) !important;
  }

  .hero-subtitle {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  .hero-info-box {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .hero-info-divider {
    width: 100% !important;
    height: 1px !important;
  }

  .hero-features {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 14px !important;
  }

  .hero-feature-copy span {
    max-width: none;
  }

  .learn-overlap,
  .learn-section {
    margin-top: -64px !important;
  }

  .learn-grid {
    grid-template-columns: 1fr !important;
  }

  .learn-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }

  .learn-card:last-child {
    border-bottom: none !important;
  }
}

.section-why-rotative {
  position: relative;
  padding: 84px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(19, 220, 227, 0.08), transparent 20%),
    linear-gradient(180deg, #030914 0%, #020812 100%);
}

.section-why-rotative-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.section-why-rotative-glow-left {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 180px;
  background: rgba(16, 216, 255, 0.07);
}

.section-why-rotative-glow-center {
  width: 420px;
  height: 420px;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  background: rgba(25, 229, 184, 0.07);
}

.section-why-rotative-glow-right {
  width: 320px;
  height: 320px;
  right: -70px;
  top: 200px;
  background: rgba(16, 216, 255, 0.05);
}

.why-rotative-header {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 40px;
  text-align: center;
}

.why-rotative-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(19, 220, 227, 0.16);
  background: rgba(8, 24, 35, 0.7);
  color: #12dff0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.why-rotative-header h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.why-rotative-header h2 span {
  background: linear-gradient(90deg, #10d8ff 0%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.why-rotative-header p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.why-rotative-panel {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  padding: 32px 28px 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 20, 31, 0.82) 0%, rgba(4, 13, 22, 0.9) 100%);
  border: 1px solid rgba(19, 220, 227, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 18px 44px rgba(0,0,0,0.18),
    0 0 28px rgba(16,216,255,0.04);
  backdrop-filter: blur(8px);
}

.why-rotative-topline {
  width: 100%;
  height: 2px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16,216,255,0), rgba(16,216,255,0.55), rgba(25,229,184,0.55), rgba(16,216,255,0));
}

.why-rotative-label {
  margin-bottom: 20px;
  text-align: center;
  color: rgba(255,255,255,0.34);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.why-rotative-stage {
  position: relative;
  min-height: 210px;
}

.why-rotative-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  text-align: center;
}

.why-rotative-item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.why-rotative-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(10, 31, 40, 0.72);
  border: 1px solid rgba(19, 220, 227, 0.14);
  color: #12dff0;
}

.why-rotative-icon svg {
  width: 26px;
  height: 26px;
}

.why-rotative-item h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.why-rotative-item p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.78;
}

.why-rotative-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.why-dot.is-active {
  background: linear-gradient(90deg, #10d8ff, #19e5b8);
  box-shadow: 0 0 14px rgba(19, 220, 227, 0.25);
  transform: scale(1.15);
}

.why-rotative-note {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 34px auto 0;
  text-align: center;
}

.why-rotative-note p:first-child,
.why-rotative-note p:last-child {
  color: rgba(255,255,255,0.32);
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.why-rotative-note p:first-child {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .section-why-rotative {
    padding: 58px 0 68px;
  }

  .why-rotative-panel {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .why-rotative-stage {
    min-height: 270px;
  }

  .why-rotative-item h3 {
    font-size: 1.3rem;
  }

  .why-rotative-item p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .why-rotative-note p:first-child,
  .why-rotative-note p:last-child {
    font-size: 1.15rem;
  }
}


/* ===== FIT SECTION ===== */

.section-fit {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 50% 25%, rgba(21, 220, 227, 0.06), transparent 24%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.fit-card {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 64px 72px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 18%, rgba(23, 223, 224, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(7, 42, 46, 0.88) 0%, rgba(2, 37, 39, 0.92) 100%);
  border: 1px solid rgba(19, 220, 227, 0.28);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 24px 80px rgba(0,0,0,0.34),
    0 0 44px rgba(19, 220, 227, 0.08);
  overflow: hidden;
}

.fit-card-glow {
  position: absolute;
  inset: auto 50% -80px 50%;
  width: 520px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 220, 227, 0.12) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

.fit-title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 34px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #16dff0;
}

.fit-list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.fit-list li {
  position: relative;
  padding-left: 44px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.7;
  text-align: center;
  letter-spacing: -0.01em;
}

.fit-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1.2em;
  font-weight: 800;
  color: #dffcf8;
  text-shadow: 0 0 18px rgba(25, 229, 184, 0.18);
}

@media (max-width: 900px) {
  .section-fit {
    padding: 54px 0 64px;
  }

  .fit-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

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

  .fit-list {
    gap: 18px;
  }

  .fit-list li {
    text-align: left;
    padding-left: 34px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .fit-list li::before {
    left: 0;
  }
}


/* ===== PREMIUM VIDEO SECTION ===== */
/* ===== VIDEO PREMIUM SECTION ===== */

.section-video-premium {
  position: relative;
  padding: 64px 0 82px;
  background:
    radial-gradient(circle at 50% 16%, rgba(21, 220, 227, 0.06), transparent 20%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
  overflow: hidden;
}

.section-video-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.08;
  pointer-events: none;
}

.video-premium-header {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto 24px;
  text-align: center;
}

.video-premium-header h2 {
  max-width: 1040px;
  margin: 0 auto 20px;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #fff;
}

.video-premium-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(7, 30, 37, 0.88);
  border: 1px solid rgba(19, 220, 227, 0.24);
  color: rgba(255,255,255,0.9);
  font-size: 0.96rem;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 10px 24px rgba(0,0,0,0.18),
    0 0 18px rgba(19, 220, 227, 0.05);
}

.video-premium-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.video-premium-frame {
  position: relative;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(180deg, rgba(19, 220, 227, 0.5), rgba(25, 229, 184, 0.16));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 24px 60px rgba(0,0,0,0.34),
    0 0 28px rgba(19, 220, 227, 0.06);
}

.video-premium-frame::before {
  content: "";
  position: absolute;
  inset: -24px 14% auto 14%;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 220, 227, 0.12), transparent 72%);
  filter: blur(20px);
  pointer-events: none;
}

.video-premium-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 22px;
  background: #000;
}

@media (max-width: 768px) {
  .section-video-premium {
    padding: 52px 0 64px;
  }

  .video-premium-header h2 {
    font-size: 1.9rem;
    line-height: 1.16;
  }

  .video-premium-badge {
    min-height: auto;
    padding: 12px 16px;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .video-premium-frame {
    border-radius: 18px;
  }

  .video-premium-frame iframe {
    border-radius: 16px;
  }
}

/* ===== AGENDA PREMIUM SECTION ===== */

.section-agenda-premium {
  position: relative;
  padding: 76px 0 96px;
  background:
    radial-gradient(circle at 50% 18%, rgba(19, 220, 227, 0.07), transparent 22%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.agenda-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items: stretch;
}

.agenda-premium-card {
  min-height: 420px;
  padding: 44px 34px 40px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(19, 220, 227, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(7, 26, 31, 0.82) 0%, rgba(2, 16, 20, 0.92) 100%);
  border: 1px solid rgba(19, 220, 227, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 22px 60px rgba(0,0,0,0.22),
    0 0 34px rgba(19, 220, 227, 0.05);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.agenda-premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 229, 184, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 28px 70px rgba(0,0,0,0.26),
    0 0 44px rgba(19, 220, 227, 0.07);
}

.agenda-day {
  display: inline-block;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.95);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.agenda-premium-card h3 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(2.1rem, 2.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.agenda-premium-card p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 420px;
  margin: 0 auto;
}

.agenda-premium-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.agenda-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 460px;
  min-height: 72px;
  padding: 0 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 45%, #13bfd0 100%);
  color: #04131a;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 40px rgba(0, 217, 255, 0.20),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.agenda-premium-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 22px 48px rgba(0, 217, 255, 0.24),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}

/* responsive */
@media (max-width: 1180px) {
  .agenda-premium-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .agenda-premium-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .section-agenda-premium {
    padding: 56px 0 70px;
  }

  .agenda-premium-card {
    padding: 30px 22px 28px;
    border-radius: 22px;
  }

  .agenda-day {
    font-size: 1.15rem;
    margin-bottom: 18px;
  }

  .agenda-premium-card h3 {
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .agenda-premium-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .agenda-premium-btn {
    min-width: 100%;
    width: 100%;
    min-height: 60px;
    padding: 0 22px;
    text-align: center;
  }
}



/* ===== SPEAKERS PREMIUM SECTION ===== */

.section-speakers-premium {
  position: relative;
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 50% 14%, rgba(19, 220, 227, 0.08), transparent 22%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
  overflow: hidden;
}

.section-speakers-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 60%, rgba(16, 216, 255, 0.05), transparent 20%),
    radial-gradient(circle at 80% 60%, rgba(25, 229, 184, 0.05), transparent 20%);
  pointer-events: none;
}

.speakers-premium-header {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto 54px;
  text-align: center;
}

.speakers-premium-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}

.speakers-premium-header h2 span {
  background: linear-gradient(90deg, #10d8ff 0%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.speakers-premium-header p {
  max-width: 1320px;
  margin: 0 auto 22px;
  font-size: 1.02rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.88);
}

.speakers-premium-header strong {
  color: #fff;
  font-weight: 800;
}

.speakers-premium-header .accent-line {
  color: #12dff0;
}

.speakers-premium-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: stretch;
}

.speaker-premium-card {
  min-height: 530px;
  padding: 52px 44px 42px;
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(19, 220, 227, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(7, 26, 31, 0.84) 0%, rgba(2, 16, 20, 0.94) 100%);
  border: 1px solid rgba(19, 220, 227, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 24px 60px rgba(0,0,0,0.22),
    0 0 34px rgba(19, 220, 227, 0.05);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.speaker-premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 229, 184, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 28px 72px rgba(0,0,0,0.26),
    0 0 44px rgba(19, 220, 227, 0.07);
}

.speaker-premium-avatar-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 28px;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(180deg, #10d8ff 0%, #19e5b8 100%);
  box-shadow:
    0 0 0 6px rgba(16, 216, 255, 0.05),
    0 0 30px rgba(16, 216, 255, 0.12);
}

.speaker-premium-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #08111b;
}

.speaker-premium-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2rem, 2.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.speaker-premium-role {
  margin-bottom: 26px;
  color: #12dff0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-premium-card p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.85;
}

/* responsive */
@media (max-width: 1180px) {
  .speakers-premium-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .speaker-premium-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .section-speakers-premium {
    padding: 58px 0 72px;
  }

  .speakers-premium-header {
    margin-bottom: 34px;
  }

  .speakers-premium-header p {
    font-size: 0.98rem;
    line-height: 1.72;
    margin-bottom: 18px;
  }

  .speaker-premium-card {
    padding: 34px 22px 30px;
    border-radius: 24px;
  }

  .speaker-premium-avatar-wrap {
    width: 124px;
    height: 124px;
    margin-bottom: 22px;
  }

  .speaker-premium-card h3 {
    font-size: 1.9rem;
  }

  .speaker-premium-role {
    font-size: 0.92rem;
    margin-bottom: 18px;
  }

  .speaker-premium-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

/* ===== FAQ PREMIUM SECTION ===== */

.section-faq-premium {
  position: relative;
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 28% 20%, rgba(19, 220, 227, 0.06), transparent 18%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.faq-premium-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.faq-premium-left {
  position: sticky;
  top: 120px;
}

.faq-premium-left h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #fff;
  max-width: 560px;
  margin-bottom: 28px;
}

.faq-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 18px;
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 45%, #13bfd0 100%);
  color: #07151b;
  font-size: 1rem;
  font-weight: 700;
  box-shadow:
    0 18px 40px rgba(0, 217, 255, 0.18),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.faq-premium-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 22px 48px rgba(0, 217, 255, 0.22),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}

.faq-premium-btn span {
  font-size: 1.2rem;
  line-height: 1;
}

.faq-premium-right {
  display: grid;
  gap: 18px;
}

.faq-premium-item {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(6, 10, 16, 0.98) 0%, rgba(2, 7, 11, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 14px 34px rgba(0,0,0,0.24),
    0 0 26px rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-premium-item[open] {
  border-color: rgba(19, 220, 227, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 42px rgba(0,0,0,0.28),
    0 0 24px rgba(19, 220, 227, 0.04);
}

.faq-premium-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-premium-item summary::-webkit-details-marker {
  display: none;
}

.faq-premium-symbol {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-premium-symbol::before,
.faq-premium-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq-premium-symbol::before {
  width: 14px;
  height: 2px;
}

.faq-premium-symbol::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-premium-item[open] .faq-premium-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-premium-answer {
  padding: 0 28px 26px;
}

.faq-premium-answer p {
  color: rgba(255,255,255,0.62);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 980px;
}

/* responsive */
@media (max-width: 1180px) {
  .faq-premium-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-premium-left {
    position: static;
  }

  .faq-premium-left h2 {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .section-faq-premium {
    padding: 58px 0 72px;
  }

  .faq-premium-left h2 {
    font-size: 2.2rem;
    margin-bottom: 22px;
  }

  .faq-premium-btn {
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
  }

  .faq-premium-item {
    border-radius: 20px;
  }

  .faq-premium-item summary {
    padding: 22px 20px;
    font-size: 0.98rem;
  }

  .faq-premium-answer {
    padding: 0 20px 22px;
  }

  .faq-premium-answer p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}







/* ===== FINAL CTA SECTION ===== */

.section-final-cta {
  position: relative;
  padding: 86px 0 110px;
  background:
    radial-gradient(circle at 50% 20%, rgba(19, 220, 227, 0.08), transparent 22%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.final-cta-card {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 86px 68px 78px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 26%, rgba(19, 220, 227, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(6, 20, 28, 0.78) 0%, rgba(2, 12, 18, 0.92) 100%);
  border: 1px solid rgba(19, 220, 227, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 28px 80px rgba(0,0,0,0.28),
    0 0 34px rgba(19, 220, 227, 0.05);
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
}

.final-cta-glow-left {
  width: 260px;
  height: 260px;
  left: 6%;
  top: 46%;
  background: rgba(19, 220, 227, 0.06);
}

.final-cta-glow-center {
  width: 460px;
  height: 460px;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  background: rgba(19, 220, 227, 0.08);
}

.final-cta-glow-right {
  width: 260px;
  height: 260px;
  right: 6%;
  top: 42%;
  background: rgba(25, 229, 184, 0.06);
}

.final-cta-card h2 {
  position: relative;
  z-index: 2;
  max-width: 1460px;
  margin: 0 auto 34px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.14;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #ffffff;
}

.final-cta-card h2 span {
  background: linear-gradient(90deg, #10d8ff 0%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.final-cta-card p {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto 24px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}

.final-cta-card p strong {
  color: #ffffff;
  font-weight: 800;
}

.final-cta-action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 560px;
  min-height: 82px;
  padding: 0 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 48%, #49d5df 100%);
  color: #07141b;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 20px 48px rgba(0, 217, 255, 0.20),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 24px 58px rgba(0, 217, 255, 0.24),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}

/* responsive */
@media (max-width: 768px) {
  .section-final-cta {
    padding: 58px 0 72px;
  }

  .final-cta-card {
    padding: 44px 22px 42px;
    border-radius: 24px;
  }

  .final-cta-card h2 {
    margin-bottom: 22px;
    line-height: 1.12;
  }

  .final-cta-card p {
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .final-cta-action {
    margin-top: 28px;
  }

  .final-cta-btn {
    min-width: 100%;
    width: 100%;
    min-height: 62px;
    padding: 0 22px;
    font-size: 0.96rem;
    letter-spacing: 0.04em;
    text-align: center;
  }
}


/* ===== PREMIUM FOOTER ===== */

.footer-premium {
  position: relative;
  padding: 70px 0 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(19, 220, 227, 0.09), transparent 22%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
  overflow: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 26%, rgba(19, 220, 227, 0.06), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(19, 220, 227, 0.08), transparent 30%);
  pointer-events: none;
}

.footer-premium-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-premium-logo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
}

.footer-premium-logo-glow {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 220, 227, 0.16) 0%, rgba(19, 220, 227, 0.06) 35%, transparent 72%);
  filter: blur(18px);
}

.footer-premium-logo {
  position: relative;
  z-index: 3;
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(19, 220, 227, 0.16));
}

.footer-premium-orbit {
  position: absolute;
  border: 2px solid rgba(19, 220, 227, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.footer-premium-orbit-1 {
  width: 160px;
  height: 72px;
  transform: rotate(32deg);
}

.footer-premium-orbit-2 {
  width: 160px;
  height: 72px;
  transform: rotate(-32deg);
}

.footer-premium-stars span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 0 8px rgba(255,255,255,0.45);
}

.footer-premium-stars span:nth-child(1) { top: 28px; left: 44px; }
.footer-premium-stars span:nth-child(2) { top: 42px; right: 54px; }
.footer-premium-stars span:nth-child(3) { top: 72px; left: 26px; }
.footer-premium-stars span:nth-child(4) { top: 88px; right: 26px; }
.footer-premium-stars span:nth-child(5) { top: 118px; left: 42px; }
.footer-premium-stars span:nth-child(6) { top: 128px; right: 42px; }
.footer-premium-stars span:nth-child(7) { top: 54px; left: 108px; }
.footer-premium-stars span:nth-child(8) { top: 146px; left: 118px; }

.footer-premium-title {
  max-width: 1200px;
  margin: 0 auto 26px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #fff;
}

.footer-premium-title span {
  background: linear-gradient(90deg, #dffdf7 0%, #bffbf8 25%, #18dff0 70%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-premium-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
  margin-bottom: 54px;
}

.footer-premium-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 1.02rem;
}

.footer-premium-benefits i {
  font-style: normal;
  color: #12dff0;
  font-weight: 800;
}

.footer-premium-divider {
  width: 100%;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.16) 14%, rgba(255,255,255,0.16) 86%, rgba(255,255,255,0) 100%);
}

.footer-premium-bottom {
  display: flex;
  justify-content: flex-start;
}

.footer-premium-bottom p {
  color: rgba(255,255,255,0.56);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

/* responsive */
@media (max-width: 768px) {
  .footer-premium {
    padding: 52px 0 28px;
  }

  .footer-premium-logo-wrap {
    width: 180px;
    height: 180px;
    margin-bottom: 18px;
  }

  .footer-premium-logo {
    width: 92px;
    height: 92px;
  }

  .footer-premium-orbit-1,
  .footer-premium-orbit-2 {
    width: 132px;
    height: 58px;
  }

  .footer-premium-benefits {
    gap: 18px;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .footer-premium-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-premium-bottom p {
    font-size: 0.9rem;
  }
}

.learn-overlap {
  margin-top: -40px !important;
}


/* ===== FIT INTERACTIVE SECTION ===== */

.section-fit-interactive {
  position: relative;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 50% 22%, rgba(21, 220, 227, 0.07), transparent 24%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.fit-interactive-card {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 56px 42px 40px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 10%, rgba(23, 223, 224, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(7, 28, 34, 0.88) 0%, rgba(3, 18, 23, 0.94) 100%);
  border: 1px solid rgba(19, 220, 227, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 24px 80px rgba(0,0,0,0.32),
    0 0 40px rgba(19, 220, 227, 0.05);
  overflow: hidden;
}

.fit-interactive-glow {
  position: absolute;
  inset: auto 50% -90px 50%;
  width: 560px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 220, 227, 0.12) 0%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.fit-interactive-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.fit-interactive-kicker {
  display: inline-flex;
  min-height: 30px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(19, 220, 227, 0.16);
  background: rgba(8, 24, 35, 0.7);
  color: #12dff0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.fit-interactive-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #16dff0;
}

.fit-interactive-header p {
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.fit-interactive-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.fit-item {
  width: 100%;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.92);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.fit-item:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 220, 227, 0.20);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.fit-item.is-active {
  border-color: rgba(19, 220, 227, 0.34);
  background: linear-gradient(180deg, rgba(10, 42, 48, 0.62), rgba(7, 24, 32, 0.72));
  box-shadow:
    0 0 0 1px rgba(19,220,227,0.06) inset,
    0 14px 34px rgba(0,0,0,0.20),
    0 0 22px rgba(19,220,227,0.05);
}

.fit-item-check {
  position: relative;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid rgba(19, 220, 227, 0.26);
  background: rgba(8, 30, 36, 0.7);
}

.fit-item-check::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #18dff0 0%, #19e5b8 100%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fit-item.is-active .fit-item-check::after {
  opacity: 1;
  transform: scale(1);
}

.fit-item-text {
  font-size: 1.03rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.fit-interactive-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fit-score-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fit-score-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fit-score-bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.fit-score-fill {
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #18dff0 0%, #19e5b8 100%);
  box-shadow: 0 0 18px rgba(19, 220, 227, 0.18);
  transition: width 0.28s ease;
}

.fit-score-row strong {
  min-width: 46px;
  color: #fff;
  font-size: 1rem;
}

.fit-result {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.65;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

/* mobile */
@media (max-width: 900px) {
  .section-fit-interactive {
    padding: 56px 0 70px;
  }

  .fit-interactive-card {
    padding: 38px 20px 28px;
    border-radius: 22px;
  }

  .fit-interactive-footer {
    grid-template-columns: 1fr;
  }

  .fit-item {
    grid-template-columns: 22px 1fr;
    gap: 12px;
    padding: 16px 14px;
  }

  .fit-item-check {
    width: 22px;
    height: 22px;
  }

  .fit-item-text {
    font-size: 0.96rem;
    line-height: 1.55;
  }
}

/* ===== VIDEO IMMERSIVE SECTION ===== */

.section-video-immersive {
  position: relative;
  padding: 74px 0 92px;
  background:
    radial-gradient(circle at 50% 14%, rgba(21, 220, 227, 0.07), transparent 22%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
  overflow: hidden;
}

.section-video-immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.08;
  pointer-events: none;
}

.video-immersive-header {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto 34px;
  text-align: center;
}

.video-immersive-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(19, 220, 227, 0.16);
  background: rgba(8, 24, 35, 0.7);
  color: #12dff0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.video-immersive-header h2 {
  max-width: 980px;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #fff;
}

.video-immersive-header p {
  max-width: 850px;
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.video-immersive-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.video-immersive-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(19, 220, 227, 0.14);
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
}

.video-immersive-layout {
  display: block !important;
}

.video-immersive-shell {
  max-width: 920px;
  margin: 0 auto;
}

.video-immersive-trust {
  justify-content: center;
}

.video-immersive-shell {
  min-width: 0;
}

.video-immersive-frame {
  position: relative;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(180deg, rgba(19, 220, 227, 0.5), rgba(25, 229, 184, 0.16));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 24px 60px rgba(0,0,0,0.34),
    0 0 28px rgba(19, 220, 227, 0.06);
}

.video-immersive-frame::before {
  content: "";
  position: absolute;
  inset: -24px 14% auto 14%;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 220, 227, 0.12), transparent 72%);
  filter: blur(20px);
  pointer-events: none;
}

.video-immersive-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 22px;
  background: #000;
}

.video-immersive-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.video-immersive-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.84);
  font-size: 0.88rem;
}

.video-immersive-side {
  position: relative;
  padding: 24px 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 20, 31, 0.82) 0%, rgba(4, 13, 22, 0.9) 100%);
  border: 1px solid rgba(19, 220, 227, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 18px 44px rgba(0,0,0,0.18),
    0 0 28px rgba(16,216,255,0.04);
  backdrop-filter: blur(8px);
}

.video-side-label {
  margin-bottom: 16px;
  color: rgba(255,255,255,0.36);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.video-side-stage {
  position: relative;
  min-height: 210px;
}

.video-side-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.video-side-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.video-side-item h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.video-side-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.98rem;
  line-height: 1.72;
}

.video-side-dots {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.video-side-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.video-side-dot.is-active {
  background: linear-gradient(90deg, #10d8ff, #19e5b8);
  box-shadow: 0 0 14px rgba(19, 220, 227, 0.25);
  transform: scale(1.15);
}

@media (max-width: 980px) {
  .video-immersive-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-video-immersive {
    padding: 56px 0 68px;
  }

  .video-immersive-header h2 {
    font-size: 1.9rem;
  }

  .video-immersive-header p {
    font-size: 0.96rem;
  }

  .video-immersive-frame {
    border-radius: 18px;
  }

  .video-immersive-frame iframe {
    border-radius: 16px;
  }

  .video-immersive-side {
    padding: 20px 18px 18px;
    border-radius: 20px;
  }

  .video-side-stage {
    min-height: 230px;
  }

  .video-side-item h3 {
    font-size: 1.2rem;
  }

  .video-side-item p {
    font-size: 0.94rem;
    line-height: 1.62;
  }
}

/* ===== AGENDA INTERACTIVE SECTION ===== */

.section-agenda-interactive {
  position: relative;
  padding: 80px 0 96px;
  background:
    radial-gradient(circle at 50% 14%, rgba(19, 220, 227, 0.08), transparent 22%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.agenda-interactive-header {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.agenda-interactive-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(19, 220, 227, 0.16);
  background: rgba(8, 24, 35, 0.7);
  color: #12dff0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.agenda-interactive-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #fff;
}

.agenda-interactive-header h2 span {
  background: linear-gradient(90deg, #10d8ff 0%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.agenda-interactive-header p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.agenda-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.agenda-tab {
  padding: 20px 20px 18px;
  border-radius: 22px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(8, 20, 31, 0.72), rgba(4, 13, 22, 0.86));
  color: #fff;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.agenda-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 220, 227, 0.18);
}

.agenda-tab.is-active {
  border-color: rgba(19, 220, 227, 0.3);
  background: linear-gradient(180deg, rgba(9, 34, 39, 0.78), rgba(5, 18, 25, 0.9));
  box-shadow:
    0 0 0 1px rgba(19,220,227,0.05) inset,
    0 18px 42px rgba(0,0,0,0.22),
    0 0 22px rgba(19,220,227,0.05);
}

.agenda-tab-day {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.38);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.agenda-tab strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.agenda-tab small {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

.agenda-stage {
  position: relative;
}

.agenda-stage-panel {
  display: none;
  padding: 34px 30px 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 20, 31, 0.82) 0%, rgba(4, 13, 22, 0.9) 100%);
  border: 1px solid rgba(19, 220, 227, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 18px 44px rgba(0,0,0,0.18),
    0 0 28px rgba(16,216,255,0.04);
}

.agenda-stage-panel.is-active {
  display: block;
}

.agenda-stage-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.agenda-stage-number {
  color: #12dff0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.agenda-stage-line {
  flex: 0 0 58px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #10d8ff, #19e5b8);
}

.agenda-stage-label {
  color: rgba(255,255,255,0.44);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.agenda-stage-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: start;
}

.agenda-stage-copy h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.agenda-stage-copy p {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  line-height: 1.78;
}

.agenda-stage-points {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.agenda-stage-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.agenda-stage-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #10d8ff, #19e5b8);
  box-shadow: 0 0 12px rgba(19, 220, 227, 0.22);
}

.agenda-side-card {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.agenda-side-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.42);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.agenda-side-card strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
}

.agenda-interactive-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.agenda-interactive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  min-height: 68px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 45%, #13bfd0 100%);
  color: #04131a;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 18px 40px rgba(0, 217, 255, 0.20),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.agenda-interactive-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

@media (max-width: 980px) {
  .agenda-tabs {
    grid-template-columns: 1fr;
  }

  .agenda-stage-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-agenda-interactive {
    padding: 58px 0 72px;
  }

  .agenda-stage-panel {
    padding: 24px 18px 22px;
    border-radius: 22px;
  }

  .agenda-stage-copy h3 {
    font-size: 1.6rem;
  }

  .agenda-stage-copy p,
  .agenda-stage-points li,
  .agenda-side-card strong {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .agenda-interactive-btn {
    min-width: 100%;
    width: 100%;
    min-height: 60px;
  }
}



/* ===== FAQ INTERACTIVE SECTION ===== */

.section-faq-interactive {
  position: relative;
  padding: 84px 0 98px;
  background:
    radial-gradient(circle at 24% 18%, rgba(19, 220, 227, 0.06), transparent 18%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.faq-interactive-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.faq-interactive-left {
  position: sticky;
  top: 120px;
}

.faq-interactive-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(19, 220, 227, 0.16);
  background: rgba(8, 24, 35, 0.7);
  color: #12dff0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.faq-interactive-left h2 {
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #fff;
  max-width: 560px;
  margin-bottom: 18px;
}

.faq-interactive-intro {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.74);
  font-size: 1rem;
  line-height: 1.75;
}

.faq-interactive-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 420px;
  margin-bottom: 24px;
}

.faq-meta-card {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.faq-meta-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.46);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-meta-card strong {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-interactive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 18px;
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 45%, #13bfd0 100%);
  color: #07151b;
  font-size: 1rem;
  font-weight: 700;
  box-shadow:
    0 18px 40px rgba(0, 217, 255, 0.18),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.faq-interactive-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.faq-interactive-btn span {
  font-size: 1.2rem;
  line-height: 1;
}

.faq-interactive-right {
  display: grid;
  gap: 18px;
}

.faq-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.62);
}

.faq-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.faq-search-box input::placeholder {
  color: rgba(255,255,255,0.44);
}

.faq-list-interactive {
  display: grid;
  gap: 16px;
}

.faq-interactive-item {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(6, 10, 16, 0.98) 0%, rgba(2, 7, 11, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 14px 34px rgba(0,0,0,0.24),
    0 0 26px rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-interactive-item:hover {
  transform: translateY(-1px);
}

.faq-interactive-item[open] {
  border-color: rgba(19, 220, 227, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 42px rgba(0,0,0,0.28),
    0 0 24px rgba(19, 220, 227, 0.04);
}

.faq-interactive-item.is-hidden {
  display: none;
}

.faq-interactive-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 26px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-interactive-item summary::-webkit-details-marker {
  display: none;
}

.faq-interactive-symbol {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-interactive-symbol::before,
.faq-interactive-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq-interactive-symbol::before {
  width: 14px;
  height: 2px;
}

.faq-interactive-symbol::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-interactive-item[open] .faq-interactive-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-interactive-answer {
  padding: 0 26px 24px;
}

.faq-interactive-answer p {
  color: rgba(255,255,255,0.64);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 980px;
}

/* responsive */
@media (max-width: 1180px) {
  .faq-interactive-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-interactive-left {
    position: static;
  }

  .faq-interactive-left h2 {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .section-faq-interactive {
    padding: 58px 0 72px;
  }

  .faq-interactive-left h2 {
    font-size: 2.1rem;
  }

  .faq-interactive-meta {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .faq-interactive-btn {
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
  }

  .faq-interactive-item {
    border-radius: 20px;
  }

  .faq-interactive-item summary {
    padding: 22px 20px;
    font-size: 0.98rem;
  }

  .faq-interactive-answer {
    padding: 0 20px 22px;
  }

  .faq-interactive-answer p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}


/* ===== FINAL CTA IMMERSIVE ===== */

.section-final-cta-immersive {
  position: relative;
  padding: 88px 0 112px;
  background:
    radial-gradient(circle at 50% 18%, rgba(19, 220, 227, 0.08), transparent 22%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.final-cta-immersive-card {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 76px 60px 64px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(19, 220, 227, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(6, 20, 28, 0.78) 0%, rgba(2, 12, 18, 0.92) 100%);
  border: 1px solid rgba(19, 220, 227, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 28px 80px rgba(0,0,0,0.28),
    0 0 34px rgba(19, 220, 227, 0.05);
  overflow: hidden;
}

.final-cta-immersive-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
}

.final-cta-immersive-glow-left {
  width: 260px;
  height: 260px;
  left: 6%;
  top: 46%;
  background: rgba(19, 220, 227, 0.06);
}

.final-cta-immersive-glow-center {
  width: 460px;
  height: 460px;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  background: rgba(19, 220, 227, 0.08);
}

.final-cta-immersive-glow-right {
  width: 260px;
  height: 260px;
  right: 6%;
  top: 42%;
  background: rgba(25, 229, 184, 0.06);
}

.final-cta-topline {
  position: relative;
  z-index: 2;
  width: min(640px, 80%);
  height: 2px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(16,216,255,0),
    rgba(16,216,255,0.55),
    rgba(25,229,184,0.55),
    rgba(16,216,255,0)
  );
}

.final-cta-badge-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(19, 220, 227, 0.14);
  color: #d9fafd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.final-cta-immersive-card h2 {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto 22px;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #ffffff;
}

.final-cta-immersive-card h2 span {
  background: linear-gradient(90deg, #10d8ff 0%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.final-cta-rotative {
  position: relative;
  z-index: 2;
  min-height: 34px;
  max-width: 920px;
  margin: 0 auto 22px;
}

.final-cta-rotative-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: rgba(255,255,255,0.74);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
}

.final-cta-rotative-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.final-cta-immersive-card p {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto 20px;
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.72;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}

.final-cta-immersive-card p strong {
  color: #ffffff;
  font-weight: 800;
}

.final-cta-support {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 28px auto 0;
}

.final-cta-support-item {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.final-cta-support-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.46);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-cta-support-item strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
}

.final-cta-action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.final-cta-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 520px;
  min-height: 78px;
  padding: 0 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 48%, #49d5df 100%);
  color: #07141b;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow:
    0 20px 48px rgba(0, 217, 255, 0.20),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.final-cta-main-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

@media (max-width: 980px) {
  .final-cta-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-final-cta-immersive {
    padding: 58px 0 72px;
  }

  .final-cta-immersive-card {
    padding: 44px 22px 40px;
    border-radius: 24px;
  }

  .final-cta-immersive-card h2 {
    margin-bottom: 18px;
    line-height: 1.12;
  }

  .final-cta-rotative {
    min-height: 52px;
    margin-bottom: 18px;
  }

  .final-cta-rotative-item {
    font-size: 0.96rem;
  }

  .final-cta-immersive-card p {
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 16px;
  }

  .final-cta-action {
    margin-top: 24px;
  }

  .final-cta-main-btn {
    min-width: 100%;
    width: 100%;
    min-height: 62px;
    padding: 0 22px;
    font-size: 0.94rem;
    letter-spacing: 0.04em;
    text-align: center;
  }
}



/* ===== FOOTER PREMIUM IMMERSIVE ===== */

.footer-premium-immersive {
  position: relative;
  padding: 74px 0 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(19, 220, 227, 0.09), transparent 22%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
  overflow: hidden;
}

.footer-premium-immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 26%, rgba(19, 220, 227, 0.06), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(19, 220, 227, 0.08), transparent 30%);
  pointer-events: none;
}

.footer-premium-immersive-inner {
  position: relative;
  z-index: 2;
}

.footer-brand-stage {
  position: relative;
  text-align: center;
}

.footer-brand-glow {
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  width: 440px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 220, 227, 0.14) 0%, transparent 72%);
  filter: blur(32px);
  pointer-events: none;
}

.footer-brand-logo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
}

.footer-brand-logo {
  position: relative;
  z-index: 3;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(19, 220, 227, 0.16));
}

.footer-brand-orbit {
  position: absolute;
  border: 2px solid rgba(19, 220, 227, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.footer-brand-orbit-1 {
  width: 160px;
  height: 72px;
  transform: rotate(32deg);
}

.footer-brand-orbit-2 {
  width: 160px;
  height: 72px;
  transform: rotate(-32deg);
}

.footer-brand-stars span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 0 8px rgba(255,255,255,0.45);
}

.footer-brand-stars span:nth-child(1) { top: 28px; left: 44px; }
.footer-brand-stars span:nth-child(2) { top: 42px; right: 54px; }
.footer-brand-stars span:nth-child(3) { top: 72px; left: 26px; }
.footer-brand-stars span:nth-child(4) { top: 88px; right: 26px; }
.footer-brand-stars span:nth-child(5) { top: 118px; left: 42px; }
.footer-brand-stars span:nth-child(6) { top: 128px; right: 42px; }
.footer-brand-stars span:nth-child(7) { top: 54px; left: 108px; }
.footer-brand-stars span:nth-child(8) { top: 146px; left: 118px; }

.footer-brand-title {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 16px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #fff;
}

.footer-brand-title span {
  background: linear-gradient(90deg, #dffdf7 0%, #bffbf8 25%, #18dff0 70%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-brand-rotative {
  position: relative;
  z-index: 2;
  min-height: 30px;
  max-width: 860px;
  margin: 0 auto 24px;
}

.footer-brand-rotative-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
}

.footer-brand-rotative-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand-benefits {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 28px;
}

.footer-brand-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
}

.footer-brand-benefits i {
  font-style: normal;
  color: #12dff0;
  font-weight: 800;
}

.footer-brand-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.footer-brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

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

.footer-brand-btn-primary {
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 48%, #49d5df 100%);
  color: #07141b;
  box-shadow:
    0 18px 40px rgba(0, 217, 255, 0.20),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}

.footer-brand-btn-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
}

.footer-brand-divider {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.16) 14%,
    rgba(255,255,255,0.16) 86%,
    rgba(255,255,255,0) 100%
  );
}

.footer-brand-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}

.footer-brand-bottom p {
  color: rgba(255,255,255,0.56);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .footer-premium-immersive {
    padding: 54px 0 28px;
  }

  .footer-brand-logo-wrap {
    width: 180px;
    height: 180px;
    margin-bottom: 18px;
  }

  .footer-brand-logo {
    width: 92px;
    height: 92px;
  }

  .footer-brand-orbit-1,
  .footer-brand-orbit-2 {
    width: 132px;
    height: 58px;
  }

  .footer-brand-rotative {
    min-height: 48px;
    margin-bottom: 20px;
  }

  .footer-brand-rotative-item {
    font-size: 0.94rem;
  }

  .footer-brand-benefits {
    gap: 18px;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .footer-brand-actions {
    flex-direction: column;
  }

  .footer-brand-btn {
    width: 100%;
  }

  .footer-brand-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-brand-bottom p {
    font-size: 0.9rem;
  }
}

/* ===== FINAL CTA DECISION SECTION ===== */

.section-final-cta-decision {
  position: relative;
  padding: 92px 0 116px;
  background:
    radial-gradient(circle at 50% 18%, rgba(19, 220, 227, 0.08), transparent 22%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.final-decision-card {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 76px 58px 64px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(19, 220, 227, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(6, 20, 28, 0.78) 0%, rgba(2, 12, 18, 0.92) 100%);
  border: 1px solid rgba(19, 220, 227, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 28px 80px rgba(0,0,0,0.28),
    0 0 34px rgba(19, 220, 227, 0.05);
  overflow: hidden;
}

.final-decision-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
}

.final-decision-glow-left {
  width: 260px;
  height: 260px;
  left: 6%;
  top: 46%;
  background: rgba(19, 220, 227, 0.06);
}

.final-decision-glow-center {
  width: 460px;
  height: 460px;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  background: rgba(19, 220, 227, 0.08);
}

.final-decision-glow-right {
  width: 260px;
  height: 260px;
  right: 6%;
  top: 42%;
  background: rgba(25, 229, 184, 0.06);
}

.final-decision-topline {
  position: relative;
  z-index: 2;
  width: min(640px, 80%);
  height: 2px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(16,216,255,0),
    rgba(16,216,255,0.55),
    rgba(25,229,184,0.55),
    rgba(16,216,255,0)
  );
}

.final-decision-badges {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.final-decision-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(19, 220, 227, 0.14);
  color: #d9fafd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.final-decision-card h2 {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto 22px;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #ffffff;
}

.final-decision-card h2 span {
  background: linear-gradient(90deg, #10d8ff 0%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.final-decision-rotative {
  position: relative;
  z-index: 2;
  min-height: 34px;
  max-width: 920px;
  margin: 0 auto 24px;
}

.final-decision-rotative-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: rgba(255,255,255,0.74);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
}

.final-decision-rotative-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.final-decision-lead {
  position: relative;
  z-index: 2;
  margin: 0 auto 16px;
  color: rgba(255,255,255,0.86);
  font-size: 1.02rem;
  line-height: 1.6;
}

.final-decision-choices {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 22px;
}

.final-choice {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.9);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.final-choice:hover {
  transform: translateY(-1px);
}

.final-choice.is-active {
  border-color: rgba(19, 220, 227, 0.28);
  background: linear-gradient(180deg, rgba(10, 42, 48, 0.62), rgba(7, 24, 32, 0.72));
  box-shadow:
    0 0 0 1px rgba(19,220,227,0.05) inset,
    0 12px 26px rgba(0,0,0,0.18),
    0 0 18px rgba(19,220,227,0.04);
}

.final-decision-result {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 26px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.68;
}

.final-decision-support {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.final-support-item {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.final-support-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.46);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-support-item strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
}

.final-decision-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.final-decision-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

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

.final-decision-btn-primary {
  min-width: 420px;
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 48%, #49d5df 100%);
  color: #07141b;
  box-shadow:
    0 20px 48px rgba(0, 217, 255, 0.20),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}

.final-decision-btn-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.94);
}

@media (max-width: 980px) {
  .final-decision-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-final-cta-decision {
    padding: 58px 0 72px;
  }

  .final-decision-card {
    padding: 44px 22px 40px;
    border-radius: 24px;
  }

  .final-decision-card h2 {
    margin-bottom: 18px;
    line-height: 1.12;
  }

  .final-decision-rotative {
    min-height: 52px;
    margin-bottom: 18px;
  }

  .final-decision-rotative-item {
    font-size: 0.96rem;
  }

  .final-decision-lead,
  .final-decision-result {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .final-decision-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .final-decision-btn,
  .final-decision-btn-primary {
    min-width: 100%;
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    text-align: center;
  }
}

/* ===== FINAL CTA MINI / FUTURISTIC ===== */

.section-final-cta-mini {
  position: relative;
  padding: 64px 0 84px;
  background:
    radial-gradient(circle at 50% 20%, rgba(19, 220, 227, 0.08), transparent 22%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
}

.final-mini-panel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 28px 30px;
  border-radius: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 16, 26, 0.88) 0%, rgba(3, 10, 18, 0.94) 100%);
  border: 1px solid rgba(19, 220, 227, 0.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 18px 50px rgba(0,0,0,0.26),
    0 0 28px rgba(19,220,227,0.05);
  overflow: hidden;
}

.final-mini-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(19,220,227,0.08), transparent 32%);
  pointer-events: none;
}

.final-mini-topbar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.final-mini-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.final-mini-topbar span:nth-child(1) { background: rgba(255,255,255,0.18); }
.final-mini-topbar span:nth-child(2) { background: rgba(19,220,227,0.6); }
.final-mini-topbar span:nth-child(3) { background: rgba(25,229,184,0.45); }

.final-mini-kicker {
  margin-bottom: 14px;
  color: #12dff0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.final-mini-panel h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.final-mini-panel h2 span {
  background: linear-gradient(90deg, #10d8ff 0%, #19e5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.final-mini-rotative {
  position: relative;
  min-height: 28px;
  max-width: 760px;
  margin: 0 auto 22px;
}

.final-mini-line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.final-mini-line.is-active {
  opacity: 1;
  transform: translateY(0);
}

.final-mini-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.final-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

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

.final-mini-btn-primary {
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 48%, #49d5df 100%);
  color: #07141b;
  box-shadow:
    0 16px 34px rgba(0, 217, 255, 0.18),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}

.final-mini-btn-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
}

@media (max-width: 768px) {
  .section-final-cta-mini {
    padding: 52px 0 68px;
  }

  .final-mini-panel {
    padding: 22px 18px 24px;
    border-radius: 20px;
  }

  .final-mini-panel h2 {
    font-size: 1.8rem;
  }

  .final-mini-rotative {
    min-height: 44px;
  }

  .final-mini-line {
    font-size: 0.94rem;
  }

  .final-mini-actions {
    flex-direction: column;
  }

  .final-mini-btn {
    width: 100%;
  }
}




/* ===== FUTURISTIC FOOTER DOCK ===== */

.footer-dock {
  position: relative;
  padding: 48px 0 28px;
  background:
    radial-gradient(circle at 50% 12%, rgba(19, 220, 227, 0.08), transparent 18%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
}

.footer-dock-panel {
  position: relative;
  padding: 28px 26px 18px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(7, 16, 26, 0.9) 0%, rgba(3, 10, 18, 0.96) 100%);
  border: 1px solid rgba(19, 220, 227, 0.14);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 18px 50px rgba(0,0,0,0.26),
    0 0 28px rgba(19,220,227,0.04);
  overflow: hidden;
}

.footer-dock-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(19,220,227,0.06), transparent 28%);
  pointer-events: none;
}

.footer-dock-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-dock-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.footer-dock-logo-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: grid;
  place-items: center;
}

.footer-dock-logo-glow {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 220, 227, 0.16) 0%, transparent 72%);
  filter: blur(14px);
}

.footer-dock-logo {
  position: relative;
  z-index: 3;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-dock-ring {
  position: absolute;
  border: 1px solid rgba(19, 220, 227, 0.2);
  border-radius: 50%;
}

.footer-dock-ring-1 {
  width: 74px;
  height: 34px;
  transform: rotate(28deg);
}

.footer-dock-ring-2 {
  width: 74px;
  height: 34px;
  transform: rotate(-28deg);
}

.footer-dock-brand-copy {
  min-width: 0;
}

.footer-dock-kicker {
  display: block;
  margin-bottom: 6px;
  color: #12dff0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer-dock-brand-copy h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.footer-dock-rotative {
  position: relative;
  min-height: 22px;
  max-width: 420px;
}

.footer-dock-line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 600;
}

.footer-dock-line.is-active {
  opacity: 1;
  transform: translateY(0);
}

.footer-dock-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #10d8ff, #19e5b8);
  box-shadow: 0 0 10px rgba(19,220,227,0.28);
}

.footer-dock-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-dock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

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

.footer-dock-btn-primary {
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 48%, #49d5df 100%);
  color: #07141b;
  box-shadow:
    0 14px 28px rgba(0, 217, 255, 0.16),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}

.footer-dock-btn-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
}

.footer-dock-bottom {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-dock-mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-dock-mini-nav a {
  color: rgba(255,255,255,0.66);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-dock-mini-nav a:hover {
  color: #12dff0;
}

.footer-dock-bottom p {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
}

/* responsive */
@media (max-width: 900px) {
  .footer-dock-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-dock-status {
    justify-content: flex-start;
  }

  .footer-dock-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-dock {
    padding: 36px 0 24px;
  }

  .footer-dock-panel {
    padding: 22px 18px 16px;
    border-radius: 20px;
  }

  .footer-dock-brand {
    align-items: flex-start;
  }

  .footer-dock-logo-wrap {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .footer-dock-logo {
    width: 42px;
    height: 42px;
  }

  .footer-dock-ring-1,
  .footer-dock-ring-2 {
    width: 62px;
    height: 28px;
  }

  .footer-dock-actions {
    flex-direction: column;
  }

  .footer-dock-btn {
    width: 100%;
  }

  .footer-dock-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-dock-mini-nav {
    justify-content: center;
  }
}


/* ===== FAQ CONSOLE ===== */

.section-faq-console {
  position: relative;
  padding: 84px 0 96px;
  background:
    radial-gradient(circle at 24% 18%, rgba(19, 220, 227, 0.06), transparent 18%),
    linear-gradient(180deg, #01060d 0%, #020913 100%);
  overflow: hidden;
}

.faq-console-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.faq-console-left {
  position: sticky;
  top: 120px;
}

.faq-console-panel {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 16, 26, 0.9) 0%, rgba(3, 10, 18, 0.96) 100%);
  border: 1px solid rgba(19, 220, 227, 0.14);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 18px 50px rgba(0,0,0,0.26),
    0 0 28px rgba(19,220,227,0.04);
}

.faq-console-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.faq-console-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.faq-console-topbar span:nth-child(2) { background: rgba(19,220,227,0.6); }
.faq-console-topbar span:nth-child(3) { background: rgba(25,229,184,0.45); }

.faq-console-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #12dff0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.faq-console-panel h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.faq-console-intro {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.74);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-console-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.faq-console-stat {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.faq-console-stat span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.44);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-console-stat strong {
  color: #fff;
  font-size: 1.3rem;
}

.faq-console-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.faq-console-tag {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq-console-tag.is-active {
  border-color: rgba(19,220,227,0.28);
  background: linear-gradient(180deg, rgba(10, 42, 48, 0.62), rgba(7, 24, 32, 0.72));
}

.faq-console-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  background: linear-gradient(90deg, #16dfef 0%, #19d9c9 45%, #13bfd0 100%);
  color: #07151b;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow:
    0 18px 40px rgba(0, 217, 255, 0.18),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}

.faq-console-right {
  display: grid;
  gap: 16px;
}

.faq-console-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.62);
}

.faq-console-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.faq-console-search input::placeholder {
  color: rgba(255,255,255,0.44);
}

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

.faq-console-item {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(6, 10, 16, 0.98) 0%, rgba(2, 7, 11, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 14px 34px rgba(0,0,0,0.24);
  overflow: hidden;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.faq-console-item:hover {
  transform: translateY(-1px);
}

.faq-console-item[open] {
  border-color: rgba(19, 220, 227, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 42px rgba(0,0,0,0.28),
    0 0 18px rgba(19,220,227,0.03);
}

.faq-console-item.is-hidden {
  display: none;
}

.faq-console-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 22px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-console-item summary::-webkit-details-marker {
  display: none;
}

.faq-console-symbol {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-console-symbol::before,
.faq-console-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq-console-symbol::before {
  width: 14px;
  height: 2px;
}

.faq-console-symbol::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-console-item[open] .faq-console-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-console-answer {
  padding: 0 22px 22px;
}

.faq-console-answer-label {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-console-answer p {
  color: rgba(255,255,255,0.66);
  font-size: 0.96rem;
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .faq-console-layout {
    grid-template-columns: 1fr;
  }

  .faq-console-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .section-faq-console {
    padding: 58px 0 72px;
  }

  .faq-console-panel {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .faq-console-panel h2 {
    font-size: 2rem;
  }

  .faq-console-stats {
    grid-template-columns: 1fr 1fr;
  }

  .faq-console-item {
    border-radius: 18px;
  }

  .faq-console-item summary {
    padding: 20px 18px;
  }

  .faq-console-answer {
    padding: 0 18px 20px;
  }
}

.hero-inner {
  grid-template-columns: 1.18fr 0.82fr !important;
  gap: 32px !important;
}

.hero-copy {
  max-width: 860px !important;
}

.hero-subtitle {
  max-width: 820px !important;
  font-size: clamp(2.35rem, 4vw, 3.5rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.05em !important;
  text-wrap: unset !important;
}

.hero-subtitle span {
  display: block;
}

.hero-subtitle-nowrap {
  white-space: nowrap;
}

.video-immersive-title,
.video-immersive-header h2,
.video-premium-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}

.video-immersive-title span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  padding-top: 0 !important;
}

.hero-card {
  margin-top: 0 !important;
}

.hero-badge {
  display: none !important;
}

.section-dark-space {
  background:
    radial-gradient(circle at 50% 20%, rgba(16, 216, 255, 0.10), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(25, 229, 184, 0.08), transparent 22%),
    linear-gradient(180deg, #020814 0%, #03111d 100%);
}

.section-dark-space::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255,255,255,0.7) 1px, transparent 1px);
  background-size: 120px 120px;
}

.section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(16,216,255,0.08), transparent 26%),
    linear-gradient(180deg, #020814 0%, #03111d 100%);
}


body {
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 216, 255, 0.05), transparent 26%),
    radial-gradient(circle at 15% 20%, rgba(25, 229, 184, 0.035), transparent 20%),
    radial-gradient(circle at 85% 18%, rgba(16, 216, 255, 0.035), transparent 20%),
    linear-gradient(180deg, #01060d 0%, #020913 42%, #03111d 100%);
}



/* ===== RESPONSIVE / HIGH-TECH FINAL OVERRIDE ===== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1280px, calc(100% - 48px));
}

/* Prevent long text/buttons from breaking layouts */
h1,
h2,
h3,
h4,
p,
a,
button,
span,
strong,
small {
  overflow-wrap: anywhere;
}

.hero-subtitle-nowrap,
.video-immersive-title span {
  white-space: normal !important;
}

/* Better focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

/* Navbar */
.navbar.scrolled {
  background: rgba(2, 8, 20, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hamburger span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Supports both class names */
.nav-links.open,
.nav-links.is-open {
  display: flex;
}

/* Hero desktop cleanup */
.hero {
  min-height: auto;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 6, 17, 0.82) 0%, rgba(1, 6, 17, 0.45) 48%, rgba(1, 6, 17, 0.72) 100%),
    radial-gradient(circle at 52% 80%, rgba(16, 216, 255, 0.12), transparent 34%);
}

.hero-inner {
  position: relative;
  z-index: 3;
}

.hero-card,
.fit-interactive-card,
.agenda-stage-panel,
.speaker-premium-card,
.faq-console-panel,
.faq-console-item,
.final-mini-panel,
.footer-dock-panel {
  backdrop-filter: blur(14px);
}

/* Make all CTA buttons safely responsive */
.btn,
.hero-card-btn,
.agenda-interactive-btn,
.final-mini-btn,
.footer-dock-btn,
.faq-console-btn {
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

/* Tablet */
@media (max-width: 1180px) {
  .container {
    width: min(100%, calc(100% - 36px));
  }

  .nav-inner {
    min-height: 76px;
  }

  .hero {
    padding: 44px 0 112px !important;
    background-position: center bottom !important;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .hero-copy {
    max-width: 820px !important;
  }

  .hero-title {
    font-size: clamp(4rem, 12vw, 6.2rem) !important;
  }

  .hero-subtitle {
    max-width: 780px !important;
    font-size: clamp(2.3rem, 7vw, 3.6rem) !important;
  }

  .hero-card {
    width: min(100%, 520px) !important;
    margin: 0 !important;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 680px !important;
  }

  .learn-grid,
  .speakers-premium-grid,
  .agenda-stage-content,
  .faq-console-layout {
    grid-template-columns: 1fr !important;
  }

  .faq-console-left {
    position: static !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 28px));
  }

  .navbar {
    position: sticky;
  }

  .nav-inner {
    min-height: 68px;
    gap: 14px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-text {
    font-size: 0.82rem;
  }

  .hamburger {
    display: flex;
    width: 42px;
    height: 42px;
  }

  .btn-nav {
    display: none !important;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open,
  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(5, 17, 29, 0.98), rgba(2, 8, 16, 0.98));
    border: 1px solid rgba(16, 216, 255, 0.18);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  }

  .nav-links a {
    display: block;
    padding: 14px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hero {
    padding: 34px 0 82px !important;
    background-size: auto 100%, cover !important;
    background-position: center bottom !important;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(1, 6, 17, 0.92) 0%, rgba(1, 6, 17, 0.72) 52%, rgba(1, 6, 17, 0.88) 100%),
      radial-gradient(circle at 50% 82%, rgba(16, 216, 255, 0.16), transparent 36%);
  }

  .hero-title {
    font-size: clamp(3.25rem, 18vw, 4.8rem) !important;
    line-height: 0.92 !important;
  }

  .hero-subtitle {
    font-size: clamp(1.85rem, 10vw, 2.8rem) !important;
    line-height: 1.04 !important;
    max-width: 100% !important;
  }

  .hero-description {
    font-size: 0.98rem !important;
    line-height: 1.62 !important;
  }

  .hero-info-box {
    padding: 18px !important;
    gap: 16px !important;
    border-radius: 18px !important;
  }

  .hero-info-item {
    width: 100%;
  }

  .hero-features {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-feature {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hero-feature-copy span {
    max-width: none !important;
  }

  .hero-card {
    padding: 24px 18px 20px !important;
    border-radius: 22px !important;
  }

  .hero-card h3 {
    font-size: 1.45rem !important;
  }

  .hero-card-proof {
    flex-direction: column;
    text-align: center;
  }

  .learn-overlap,
  .learn-section {
    margin-top: -36px !important;
  }

  .learn-title {
    gap: 10px;
  }

  .learn-title .line {
    width: 28px !important;
  }

  .learn-title h3 {
    font-size: 1.35rem !important;
  }

  .learn-grid {
    grid-template-columns: 1fr !important;
    border-radius: 18px !important;
  }

  .learn-card {
    min-height: auto !important;
    padding: 24px 18px !important;
  }

  section,
  .section,
  .section-fit-interactive,
  .section-video-immersive,
  .section-agenda-interactive,
  .section-speakers-premium,
  .section-faq-console,
  .section-final-cta-mini {
    padding-top: 54px !important;
    padding-bottom: 64px !important;
  }

  .fit-interactive-card,
  .agenda-stage-panel,
  .speaker-premium-card,
  .faq-console-panel,
  .final-mini-panel,
  .footer-dock-panel {
    border-radius: 20px !important;
  }

  .fit-interactive-card {
    padding: 32px 16px 24px !important;
  }

  .fit-item {
    grid-template-columns: 22px 1fr !important;
    padding: 15px 14px !important;
  }

  .fit-interactive-footer,
  .agenda-stage-content,
  .footer-dock-top,
  .footer-dock-bottom {
    grid-template-columns: 1fr !important;
    flex-direction: column;
    align-items: stretch !important;
  }

  .video-immersive-title,
  .video-immersive-header h2,
  .agenda-interactive-header h2,
  .speakers-premium-header h2,
  .faq-console-panel h2,
  .final-mini-panel h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem) !important;
    line-height: 1.12 !important;
  }

  .video-immersive-pills,
  .video-immersive-trust,
  .footer-dock-status,
  .footer-dock-actions,
  .footer-dock-mini-nav {
    justify-content: stretch !important;
  }

  .video-immersive-pills span,
  .video-immersive-trust span,
  .footer-status-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .agenda-tabs {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .agenda-tab {
    padding: 18px !important;
  }

  .agenda-stage-panel {
    padding: 22px 16px !important;
  }

  .agenda-stage-meta {
    flex-wrap: wrap;
  }

  .agenda-interactive-btn,
  .final-mini-btn,
  .footer-dock-btn,
  .faq-console-btn {
    width: 100%;
    min-width: 0 !important;
  }

  .speaker-premium-card {
    min-height: auto !important;
    padding: 30px 18px !important;
  }

  .speaker-premium-avatar-wrap {
    width: 118px !important;
    height: 118px !important;
  }

  .faq-console-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  .faq-console-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .faq-console-tag {
    width: 100%;
  }

  .faq-console-item summary {
    padding: 20px 16px !important;
  }

  .faq-console-answer {
    padding: 0 16px 20px !important;
  }

  .final-mini-rotative,
  .footer-dock-rotative {
    min-height: 54px !important;
  }

  .footer-dock-brand {
    width: 100%;
  }

  .footer-dock-logo-wrap {
    width: 70px !important;
    height: 70px !important;
    flex: 0 0 70px !important;
  }

  .footer-dock-logo {
    width: 40px !important;
    height: 40px !important;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .container {
    width: min(100%, calc(100% - 22px));
  }

  .hero-title {
    font-size: clamp(2.75rem, 17vw, 3.7rem) !important;
  }

  .hero-subtitle {
    font-size: clamp(1.55rem, 9vw, 2.25rem) !important;
  }

  .hero-info-copy strong,
  .hero-feature-copy strong,
  .fit-item-text,
  .agenda-stage-copy p,
  .agenda-stage-points li,
  .faq-console-answer p {
    font-size: 0.92rem !important;
  }

  .learn-footer-pill {
    border-radius: 18px !important;
  }

  .faq-console-stats,
  .faq-console-tags {
    grid-template-columns: 1fr !important;
  }
}

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



/* ===== FULL RESPONSIVE MODERN POLISH ===== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.container {
  width: min(1280px, calc(100% - 48px));
}

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

h1,
h2,
h3,
h4,
p,
span,
strong,
small,
a,
button {
  overflow-wrap: anywhere;
}

.hero-subtitle-nowrap,
.video-immersive-title span {
  white-space: normal !important;
}

/* Modern glass polish */
.hero-card,
.learn-grid,
.why-rotative-panel,
.fit-interactive-card,
.video-immersive-frame,
.agenda-tab,
.agenda-stage-panel,
.speaker-premium-card,
.faq-console-panel,
.faq-console-item,
.final-mini-panel,
.footer-dock-panel {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-card,
.fit-interactive-card,
.agenda-stage-panel,
.speaker-premium-card,
.faq-console-panel,
.final-mini-panel,
.footer-dock-panel {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 22px 70px rgba(0,0,0,0.32),
    0 0 34px rgba(16,216,255,0.06) !important;
}

/* Buttons feel more premium */
.btn,
.hero-card-btn,
.agenda-interactive-btn,
.final-mini-btn,
.footer-dock-btn,
.faq-console-btn {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.btn::after,
.hero-card-btn::after,
.agenda-interactive-btn::after,
.final-mini-btn-primary::after,
.footer-dock-btn-primary::after,
.faq-console-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: transform 0.55s ease;
}

.btn:hover::after,
.hero-card-btn:hover::after,
.agenda-interactive-btn:hover::after,
.final-mini-btn-primary:hover::after,
.footer-dock-btn-primary:hover::after,
.faq-console-btn:hover::after {
  transform: translateX(120%);
}

/* Navbar */
.navbar.scrolled,
.navbar {
  background: rgba(2, 8, 20, 0.9);
  box-shadow: 0 16px 42px rgba(0,0,0,0.22);
}

.nav-links.open,
.nav-links.is-open {
  display: flex;
}

.hamburger span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero overlay for better readability */
.hero {
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1,6,17,0.82), rgba(1,6,17,0.42), rgba(1,6,17,0.78)),
    radial-gradient(circle at 54% 82%, rgba(16,216,255,0.16), transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 3;
}

.hero-feature,
.fit-item,
.video-immersive-pills span,
.video-immersive-trust span,
.footer-status-pill {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
}

/* Tablet */
@media (max-width: 1180px) {
  .container {
    width: min(100%, calc(100% - 36px));
  }

  .nav-inner {
    min-height: 74px;
  }

  .hero {
    padding: 44px 0 108px !important;
    background-position: center bottom !important;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .hero-copy {
    max-width: 850px !important;
  }

  .hero-title {
    font-size: clamp(4rem, 12vw, 6.2rem) !important;
  }

  .hero-subtitle {
    max-width: 820px !important;
    font-size: clamp(2.25rem, 7vw, 3.6rem) !important;
  }

  .hero-card {
    width: min(100%, 540px) !important;
    margin: 0 !important;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 700px !important;
  }

  .learn-grid,
  .speakers-premium-grid,
  .agenda-stage-content,
  .faq-console-layout {
    grid-template-columns: 1fr !important;
  }

  .faq-console-left {
    position: static !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 28px));
  }

  .nav-inner {
    min-height: 68px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-text {
    font-size: 0.82rem;
  }

  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none !important;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open,
  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(5,17,29,0.98), rgba(2,8,16,0.98));
    border: 1px solid rgba(16,216,255,0.18);
    box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  }

  .nav-links a {
    display: block;
    padding: 14px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.035);
  }

  .hero {
    padding: 34px 0 82px !important;
    text-align: left;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(1,6,17,0.93), rgba(1,6,17,0.72), rgba(1,6,17,0.92)),
      radial-gradient(circle at 50% 82%, rgba(16,216,255,0.18), transparent 38%);
  }

  .hero-title {
    font-size: clamp(3.15rem, 18vw, 4.7rem) !important;
    line-height: 0.92 !important;
  }

  .hero-subtitle {
    font-size: clamp(1.85rem, 10vw, 2.8rem) !important;
    line-height: 1.04 !important;
  }

  .hero-description {
    font-size: 0.98rem !important;
    line-height: 1.62 !important;
  }

  .hero-info-box {
    padding: 18px !important;
    gap: 16px !important;
    border-radius: 18px !important;
  }

  .hero-info-item {
    width: 100%;
  }

  .hero-features {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-feature {
    padding: 14px;
    border-radius: 16px;
  }

  .hero-feature-copy span {
    max-width: none !important;
  }

  .hero-card {
    padding: 24px 18px 20px !important;
    border-radius: 22px !important;
  }

  .hero-card-proof {
    flex-direction: column;
    text-align: center;
  }

  .learn-overlap,
  .learn-section {
    margin-top: -34px !important;
  }

  .learn-title {
    gap: 10px;
  }

  .learn-title .line {
    width: 28px !important;
  }

  .learn-title h3 {
    font-size: 1.35rem !important;
  }

  .learn-grid {
    grid-template-columns: 1fr !important;
    border-radius: 18px !important;
  }

  .learn-card {
    min-height: auto !important;
    padding: 24px 18px !important;
  }

  .section,
  section,
  .section-fit-interactive,
  .section-video-immersive,
  .section-agenda-interactive,
  .section-speakers-premium,
  .section-faq-console,
  .section-final-cta-mini {
    padding-top: 54px !important;
    padding-bottom: 64px !important;
  }

  .fit-interactive-card,
  .agenda-stage-panel,
  .speaker-premium-card,
  .faq-console-panel,
  .final-mini-panel,
  .footer-dock-panel {
    border-radius: 20px !important;
  }

  .fit-interactive-card {
    padding: 32px 16px 24px !important;
  }

  .fit-item {
    grid-template-columns: 22px 1fr !important;
    padding: 15px 14px !important;
    border-radius: 16px !important;
  }

  .fit-interactive-footer,
  .agenda-stage-content {
    grid-template-columns: 1fr !important;
  }

  .video-immersive-title,
  .video-immersive-header h2,
  .agenda-interactive-header h2,
  .speakers-premium-header h2,
  .faq-console-panel h2,
  .final-mini-panel h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem) !important;
    line-height: 1.12 !important;
  }

  .video-immersive-pills span,
  .video-immersive-trust span,
  .footer-status-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .agenda-tabs {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .agenda-tab {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .agenda-stage-panel {
    padding: 22px 16px !important;
  }

  .agenda-stage-meta {
    flex-wrap: wrap;
  }

  .agenda-interactive-btn,
  .final-mini-btn,
  .footer-dock-btn,
  .faq-console-btn {
    width: 100%;
    min-width: 0 !important;
  }

  .speaker-premium-card {
    min-height: auto !important;
    padding: 30px 18px !important;
  }

  .speaker-premium-avatar-wrap {
    width: 118px !important;
    height: 118px !important;
  }

  .faq-console-stats,
  .faq-console-tags {
    grid-template-columns: 1fr 1fr !important;
  }

  .faq-console-tag {
    width: 100%;
  }

  .faq-console-item summary {
    padding: 20px 16px !important;
  }

  .faq-console-answer {
    padding: 0 16px 20px !important;
  }

  .final-mini-rotative,
  .footer-dock-rotative {
    min-height: 54px !important;
  }

  .footer-dock-top,
  .footer-dock-bottom {
    flex-direction: column;
    align-items: stretch !important;
  }

  .footer-dock-brand {
    width: 100%;
  }

  .footer-dock-status,
  .footer-dock-actions,
  .footer-dock-mini-nav {
    justify-content: center !important;
  }
}

/* Extra small phones */
@media (max-width: 420px) {
  .container {
    width: min(100%, calc(100% - 22px));
  }

  .hero-title {
    font-size: clamp(2.75rem, 17vw, 3.7rem) !important;
  }

  .hero-subtitle {
    font-size: clamp(1.55rem, 9vw, 2.25rem) !important;
  }

  .faq-console-stats,
  .faq-console-tags {
    grid-template-columns: 1fr !important;
  }

  .learn-footer-pill {
    border-radius: 18px !important;
  }
}

/* =========================================================
   GLOBAL RESPONSIVE FOUNDATION
   Paste at the very bottom of styles.css
   ========================================================= */

:root {
  --container-max: 1280px;
  --container-pad: clamp(16px, 3vw, 32px);

  --section-space: clamp(72px, 10vw, 120px);
  --section-space-sm: clamp(48px, 7vw, 72px);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.20);
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.34);

  --text-max: 70ch;
}

/* safer sizing everywhere */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

body {
  overflow-x: hidden;
}

/* media always scale correctly */
img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

/* forms and clickable items */
button,
input,
select,
textarea {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* better container behavior */
.container {
  width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
  margin-inline: auto;
}

/* better default section spacing */
section,
.section {
  position: relative;
}

.section,
.section-block {
  padding-block: var(--section-space);
}

/* responsive headings */
h1,
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2,
.hero-subtitle,
.section-title {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.1;
}

p,
li {
  overflow-wrap: break-word;
}

.hero-description,
.section p,
.card p {
  max-width: var(--text-max);
}

/* better grids everywhere */
.grid,
.cards-grid,
.features-grid,
.learn-grid,
.footer-grid {
  gap: clamp(16px, 2vw, 28px);
}

/* common card behavior */
.card,
.hero-card,
.learn-card,
.faq-card,
.agenda-card,
.fit-interactive-card,
.video-immersive-shell {
  border-radius: var(--radius-lg);
}

/* make buttons feel better globally */
.btn,
.hero-card-btn,
.btn-primary,
button,
a[class*="btn"] {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}

.btn:hover,
.hero-card-btn:hover,
.btn-primary:hover,
button:hover,
a[class*="btn"]:hover {
  transform: translateY(-2px);
}

/* focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(16, 216, 255, 0.9);
  outline-offset: 3px;
}

/* anchors don't hide behind sticky navbar */
section[id],
div[id] {
  scroll-margin-top: 110px;
}

/* text balance for big headlines where supported */
.hero-title,
.hero-subtitle,
.section-title,
.hero-card h3 {
  text-wrap: balance;
}

/* ===== LAPTOP / TABLET ===== */
@media (max-width: 1180px) {
  .hero-inner,
  .two-col,
  .about-grid,
  .video-immersive-layout,
  .speaker-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-card,
  .video-immersive-shell,
  .fit-interactive-card {
    max-width: 100%;
    margin-inline: 0;
  }

  .learn-grid,
  .cards-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ===== TABLET / MOBILE ===== */
@media (max-width: 768px) {
  :root {
    --container-pad: 14px;
    --section-space: 64px;
    --section-space-sm: 40px;
  }

  .learn-grid,
  .cards-grid,
  .features-grid,
  .footer-grid,
  .stats-grid,
  .agenda-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-info-box,
  .hero-card-proof,
  .video-immersive-pills,
  .fit-interactive-footer,
  .footer-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-card,
  .card,
  .fit-interactive-card,
  .video-immersive-shell {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .btn,
  .hero-card-btn,
  .btn-primary,
  button,
  a[class*="btn"] {
    min-height: 52px;
    width: auto;
  }

  iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  h1,
  .hero-title {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }

  h2,
  .hero-subtitle,
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2.3rem);
  }

  .hero-card,
  .card,
  .fit-interactive-card,
  .video-immersive-shell {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .hero-proof-avatars img {
    width: 36px !important;
    height: 36px !important;
  }
}

/* ===== RESPECT USERS WHO PREFER LESS ANIMATION ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* =========================================================
   GLOBAL INTERACTION POLISH
   ========================================================= */

.hero-card,
.learn-card,
.fit-item,
.video-immersive-shell,
.btn,
.hero-card-btn,
.nav-links a {
  transform: translateZ(0);
}

.hero-card,
.learn-card,
.fit-item,
.video-immersive-shell {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.hero-card:hover,
.learn-card:hover,
.fit-item:hover,
.video-immersive-shell:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(16, 216, 255, 0.08);
}

.btn:hover,
.hero-card-btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.nav-links a,
.btn,
.hero-card-btn,
.learn-card,
.fit-item {
  cursor: pointer;
}


.why-rotative-note {
  position: relative;
  z-index: 2;
  color: #d2d8e0;
  max-width: 980px;
  margin: 0 auto 0;
  text-align: center;
}

.why-rotative-note p {
  background: linear-gradient(180deg, #d7dde5 0%, #aeb7c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.why-rotative-note p:first-child {
  margin-bottom: 6px;
}

.profit-inline {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.why-rotative-note {
  margin: 0 auto 0;
}

.section-fit-interactive {
  padding-top: 12px;
}

.section-video-immersive {
  padding-top: 16px !important;
  margin-top: -10px !important;
}

.video-immersive-header {
  margin: 0 auto 22px !important;
}

.fit-interactive-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.fit-interactive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
  color: #04111f;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(16, 216, 255, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.fit-interactive-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 216, 255, 0.24);
  filter: brightness(1.03);
}

@media (max-width: 768px) {
  .fit-interactive-cta {
    margin-top: 22px;
  }

  .fit-interactive-btn {
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
    text-align: center;
  }
}


/* =========================================
   CLEAN AGENDA SECTION
========================================= */
.section-agenda-clean {
  position: relative;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at 50% 18%, rgba(16, 216, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
}

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

.agenda-clean-card {
  position: relative;
  min-height: 170px;
  padding: 28px 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(8, 20, 31, 0.82), rgba(4, 13, 22, 0.94));
  border: 1px solid rgba(16, 216, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 18px 40px rgba(0,0,0,0.20),
    0 0 24px rgba(16,216,255,0.04);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.agenda-clean-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  opacity: 0.9;
}

.agenda-clean-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 229, 184, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 24px 52px rgba(0,0,0,0.24),
    0 0 34px rgba(16,216,255,0.06);
}

.agenda-clean-day {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 28, 38, 0.82);
  border: 1px solid rgba(16, 216, 255, 0.14);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agenda-clean-card h3 {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
}

@media (max-width: 980px) {
  .agenda-clean-grid {
    grid-template-columns: 1fr;
  }

  .agenda-clean-card {
    min-height: 140px;
  }

  .agenda-clean-card h3 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .section-agenda-clean {
    padding: 42px 0 56px;
  }

  .agenda-clean-grid {
    gap: 16px;
  }

  .agenda-clean-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .agenda-clean-day {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .agenda-clean-card h3 {
    margin-top: 18px;
    font-size: 1.28rem;
  }
}



.section-agenda-clean {
  position: relative;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at 50% 18%, rgba(16, 216, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
}

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

.agenda-clean-card {
  position: relative;
  min-height: 340px;
  padding: 28px 24px 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(8, 20, 31, 0.82), rgba(4, 13, 22, 0.94));
  border: 1px solid rgba(16, 216, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 18px 40px rgba(0,0,0,0.20),
    0 0 24px rgba(16,216,255,0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.agenda-clean-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  opacity: 0.9;
}

.agenda-clean-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 229, 184, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 24px 52px rgba(0,0,0,0.24),
    0 0 34px rgba(16,216,255,0.06);
}

.agenda-clean-day {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 28, 38, 0.82);
  border: 1px solid rgba(16, 216, 255, 0.14);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agenda-clean-card h3 {
  margin: 22px 0 12px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.agenda-clean-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .agenda-clean-grid {
    grid-template-columns: 1fr;
  }

  .agenda-clean-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .section-agenda-clean {
    padding: 42px 0 56px;
  }

  .agenda-clean-grid {
    gap: 16px;
  }

  .agenda-clean-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .agenda-clean-day {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .agenda-clean-card h3 {
    margin: 18px 0 10px;
    font-size: 1.28rem;
  }

  .agenda-clean-card p {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}


.agenda-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.agenda-clean-card {
  height: 100%;
  min-height: 320px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.agenda-clean-day {
  margin-bottom: 18px;
}

.agenda-clean-card h3 {
  font-size: 1rem;
  line-height: 1.15;
  min-height: 2.4em;
  margin: 0 0 14px;
  display: flex;
  align-items: flex-start;
}

.agenda-clean-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}


.agenda-clean-card {
  height: 100%;
  min-height: 320px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.agenda-clean-day {
  margin-bottom: 18px;
}

.agenda-clean-card h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  min-height: 2.6em;
  margin: 0 0 14px;
  text-align: center;
}

.agenda-clean-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.74);
}

.agenda-clean-day {
  align-self: flex-start;
  margin-bottom: 18px;
}



/* =========================================
   TESTIMONIALS PREMIUM
========================================= */
.section-testimonials-premium {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 50% 18%, rgba(16, 216, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
  overflow: hidden;
}

.testimonials-premium-header {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.testimonials-premium-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(8, 28, 38, 0.82);
  border: 1px solid rgba(16, 216, 255, 0.14);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials-premium-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #ffffff;
}

.testimonials-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  min-height: 280px;
  padding: 28px 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 20, 31, 0.82), rgba(4, 13, 22, 0.94));
  border: 1px solid rgba(16, 216, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 18px 40px rgba(0,0,0,0.20),
    0 0 24px rgba(16,216,255,0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  opacity: 0.9;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 229, 184, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 24px 52px rgba(0,0,0,0.24),
    0 0 34px rgba(16,216,255,0.06);
}

.testimonial-card-featured {
  border-color: rgba(25, 229, 184, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 22px 48px rgba(0,0,0,0.22),
    0 0 30px rgba(16,216,255,0.07);
}

.testimonial-stars {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.testimonial-text {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16,216,255,0.18), rgba(25,229,184,0.16));
  border: 1px solid rgba(16, 216, 255, 0.16);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-meta strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.2;
}

.testimonial-meta span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.3;
}

.testimonials-premium-note {
  margin-top: 18px;
  text-align: center;
  color: rgba(255,255,255,0.46);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .testimonials-premium-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .section-testimonials-premium {
    padding: 54px 0 68px;
  }

  .testimonials-premium-header {
    margin-bottom: 24px;
  }

  .testimonial-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .testimonial-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }
}

.testimonial-meta strong small {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.46);
  margin-left: 4px;
}



.section-testimonials-premium {
  position: relative;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 50% 18%, rgba(16, 216, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #020812 0%, #01060d 100%);
  overflow: hidden;
}

.testimonials-premium-header {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.testimonials-premium-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(8, 28, 38, 0.82);
  border: 1px solid rgba(16, 216, 255, 0.14);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials-premium-header h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #ffffff;
}

.testimonials-premium-header h2 span {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.testimonials-slider {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 18px;
  align-items: center;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  min-width: calc((100% - 44px) / 3);
  min-height: 290px;
  padding: 28px 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 20, 31, 0.82), rgba(4, 13, 22, 0.94));
  border: 1px solid rgba(16, 216, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 18px 40px rgba(0,0,0,0.20),
    0 0 24px rgba(16,216,255,0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  opacity: 0.95;
}

.testimonial-card.featured {
  border-color: rgba(25, 229, 184, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 22px 48px rgba(0,0,0,0.22),
    0 0 32px rgba(16,216,255,0.07);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-stars {
  color: var(--teal);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-text {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.68;
  flex-grow: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16,216,255,0.18), rgba(25,229,184,0.16));
  border: 1px solid rgba(16, 216, 255, 0.16);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-meta strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.2;
}

.testimonial-meta span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.3;
}

.testimonials-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(16,216,255,0.12);
  background: rgba(8, 20, 31, 0.88);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.testimonials-nav span {
  font-size: 1.7rem;
  line-height: 1;
}

.testimonials-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 229, 184, 0.22);
  box-shadow: 0 0 24px rgba(16,216,255,0.08);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-dot.active {
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  transform: scale(1.15);
}

.testimonials-premium-note {
  margin-top: 18px;
  text-align: center;
  color: rgba(255,255,255,0.44);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .testimonial-card {
    min-width: calc((100% - 22px) / 2);
  }
}

@media (max-width: 768px) {
  .section-testimonials-premium {
    padding: 56px 0 68px;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonials-nav {
    display: none;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 22px 18px 18px;
    border-radius: 20px;
    min-height: auto;
  }

  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .testimonial-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }
}

.faq-console-search {
  display: none !important;
}

.faq-console-panel h2 {
  max-width: 340px;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.faq-console-search {
  display: none !important;
}

.faq-console-panel h2 {
  max-width: 320px;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}


.faq-console-panel h2 {
  max-width: 420px !important;
  font-size: 1.65rem !important;
  line-height: 1.06 !important;
  letter-spacing: -0.03em !important;
}




/* =========================================================
   MOBILE IMPACT UPGRADE — FINAL OVERRIDE
   Paste this at the VERY BOTTOM of styles.css
   ========================================================= */

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(20, 232, 255, 0.12), transparent 28%),
      radial-gradient(circle at 50% 28%, rgba(24, 255, 196, 0.08), transparent 34%),
      linear-gradient(180deg, #01060d 0%, #020913 48%, #03111d 100%);
  }

  .container {
    width: min(100%, calc(100% - 28px)) !important;
  }

  section,
  .section {
    padding-top: 58px !important;
    padding-bottom: 68px !important;
  }

  /* NAVBAR */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 8, 20, 0.92) !important;
    border-bottom: 1px solid rgba(39, 232, 255, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  }

  .nav-inner {
    min-height: 68px !important;
    gap: 14px !important;
  }

  .logo-img {
    width: 42px !important;
    height: 42px !important;
  }

  .logo-text {
    font-size: 0.82rem !important;
    letter-spacing: 0.02em;
  }

  .btn-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .nav-links {
    display: none !important;
  }

  .nav-links.open,
  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    z-index: 1001;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(5, 17, 29, 0.98), rgba(2, 8, 16, 0.98));
    border: 1px solid rgba(34, 234, 255, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  }

  .nav-links a {
    display: block;
    padding: 15px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
  }

  /* HERO */
  .hero {
    min-height: auto !important;
    padding: 38px 0 92px !important;
    text-align: center !important;
    background:
      linear-gradient(180deg, rgba(1, 6, 17, 0.76) 0%, rgba(1, 6, 17, 0.56) 48%, rgba(1, 6, 17, 0.92) 100%),
      url("cinematic.png") center bottom / cover no-repeat !important;
    isolation: isolate;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 22%, rgba(32, 232, 255, 0.14), transparent 34%),
      radial-gradient(circle at 50% 78%, rgba(24, 255, 196, 0.16), transparent 38%),
      linear-gradient(180deg, rgba(1, 6, 17, 0.5), rgba(1, 6, 17, 0.86));
  }

  .hero-inner,
  .hero-container {
    position: relative;
    z-index: 3;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: center !important;
  }

  .hero-copy,
  .hero-left {
    max-width: 100% !important;
    padding-top: 0 !important;
    text-align: center !important;
  }

  .hero-badge {
    justify-content: center !important;
    margin-bottom: 14px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase;
  }

  .hero-title,
  .hero-title-gradient {
    font-size: clamp(3.35rem, 18vw, 5rem) !important;
    line-height: 0.88 !important;
    letter-spacing: -0.075em !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .hero-subtitle {
    max-width: 100% !important;
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.055em !important;
    margin: 0 auto 18px !important;
    text-align: center !important;
    text-wrap: balance;
  }

  .hero-description {
    max-width: 96% !important;
    margin: 0 auto 24px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.98rem !important;
    line-height: 1.62 !important;
    text-align: center !important;
  }

  .hero-info-box {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    max-width: 100% !important;
    margin: 0 auto 22px !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 22px !important;
    background:
      linear-gradient(180deg, rgba(8, 24, 39, 0.78), rgba(3, 12, 23, 0.92)) !important;
    border: 1px solid rgba(41, 234, 255, 0.22) !important;
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.32),
      0 0 42px rgba(32, 232, 255, 0.08);
    backdrop-filter: blur(16px);
  }

  .hero-info-item {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 18px !important;
    text-align: left !important;
  }

  .hero-info-divider {
    width: 100% !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.09) !important;
  }

  .hero-info-copy strong {
    font-size: 0.96rem !important;
  }

  .hero-info-copy span {
    font-size: 0.9rem !important;
  }

  .hero-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-feature {
    min-height: 118px;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 15px !important;
    border-radius: 18px !important;
    text-align: left !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.085);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

  .hero-feature-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .hero-feature-copy strong {
    font-size: 0.88rem !important;
    line-height: 1.1 !important;
  }

  .hero-feature-copy span {
    max-width: none !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }

  .hero-card,
  .hero-form-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 4px auto 0 !important;
    padding: 24px 18px 22px !important;
    border-radius: 26px !important;
    text-align: center !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(36, 238, 255, 0.13), transparent 34%),
      linear-gradient(180deg, rgba(8, 20, 34, 0.88), rgba(3, 9, 18, 0.98)) !important;
    border: 1px solid rgba(34, 234, 255, 0.28) !important;
    box-shadow:
      0 26px 80px rgba(0, 0, 0, 0.42),
      0 0 55px rgba(32, 232, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .hero-card-icon,
  .form-top-icon {
    width: 58px !important;
    height: 58px !important;
    margin: 0 auto 16px !important;
  }

  .hero-card h3,
  .hero-form-card h3 {
    font-size: 1.55rem !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
  }

  .hero-card p,
  .hero-form-card p {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
  }

  .hero-card-btn,
  .hero-btn,
  .whatsapp-cta-btn,
  .btn-primary {
    width: 100% !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    font-size: 0.96rem !important;
    box-shadow:
      0 18px 45px rgba(24, 255, 220, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  }

  .hero-card-proof,
  .form-social-proof {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }

  /* LEARN CARDS */
  .learn-overlap,
  .learn-section {
    margin-top: -38px !important;
    padding-bottom: 42px !important;
  }

  .learn-title {
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
  }

  .learn-title .line {
    width: 30px !important;
  }

  .learn-title h3 {
    font-size: 1.45rem !important;
    line-height: 1.05 !important;
    text-align: center !important;
  }

  .learn-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .learn-card {
    min-height: auto !important;
    padding: 24px 18px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(34, 234, 255, 0.13) !important;
    background:
      radial-gradient(circle at 20% 0%, rgba(34, 234, 255, 0.1), transparent 34%),
      linear-gradient(180deg, rgba(7, 20, 34, 0.9), rgba(3, 10, 18, 0.96)) !important;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3) !important;
    text-align: center !important;
  }

  .learn-card h4 {
    font-size: 1.1rem !important;
  }

  .learn-card p {
    max-width: 100% !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  .learn-footer-pill {
    width: 100% !important;
    border-radius: 20px !important;
    padding: 16px !important;
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  /* SECTION HEADERS */
  .why-rotative-header,
  .video-immersive-header,
  .video-premium-header,
  .agenda-interactive-header,
  .speakers-premium-header,
  .testimonials-premium-header {
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  .why-rotative-header h2,
  .video-immersive-title,
  .video-immersive-header h2,
  .video-premium-header h2,
  .agenda-interactive-header h2,
  .speakers-premium-header h2,
  .faq-console-panel h2,
  .final-mini-panel h2,
  .final-pro-content h2,
  .footer-command-copy h2 {
    font-size: clamp(2rem, 10vw, 2.85rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.055em !important;
    text-align: center !important;
    text-wrap: balance;
  }

  .why-rotative-header p,
  .speakers-premium-header p,
  .video-premium-badge,
  .agenda-stage-copy p,
  .faq-console-answer p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  /* FIT / VALUE SECTION */
  .fit-card,
  .fit-interactive-card,
  .why-rotative-panel,
  .agenda-stage-panel,
  .speaker-premium-card,
  .faq-console-panel,
  .final-mini-panel,
  .final-pro-panel,
  .footer-dock-panel,
  .footer-command-panel {
    border-radius: 24px !important;
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.38),
      0 0 45px rgba(31, 238, 255, 0.075) !important;
  }

  .fit-card,
  .fit-interactive-card {
    padding: 32px 18px !important;
  }

  .fit-title,
  .fit-interactive-header h2 {
    font-size: clamp(1.95rem, 9vw, 2.6rem) !important;
    text-align: center !important;
  }

  .fit-list li,
  .fit-item {
    text-align: left !important;
  }

  .fit-item {
    grid-template-columns: 24px 1fr !important;
    padding: 16px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.045);
  }

  /* VIDEO */
  .section-video-premium,
  .section-video-immersive {
    padding-top: 58px !important;
    padding-bottom: 68px !important;
  }

  .video-premium-frame,
  .video-immersive-frame {
    border-radius: 20px !important;
    padding: 2px !important;
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.42),
      0 0 50px rgba(32, 232, 255, 0.1) !important;
  }

  .video-premium-frame iframe,
  .video-immersive-frame iframe {
    border-radius: 18px !important;
    aspect-ratio: 16 / 9 !important;
  }

  .video-immersive-pills,
  .video-immersive-trust {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .video-immersive-pills span,
  .video-immersive-trust span {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* AGENDA */
  .agenda-premium-grid,
  .agenda-tabs,
  .agenda-stage-content,
  .agenda-interactive-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .agenda-premium-card,
  .agenda-tab,
  .agenda-stage-panel {
    border-radius: 22px !important;
    padding: 24px 18px !important;
  }

  .agenda-premium-card h3,
  .agenda-stage-copy h3 {
    font-size: clamp(1.65rem, 8vw, 2.2rem) !important;
    line-height: 1.08 !important;
  }

  .agenda-premium-btn,
  .agenda-interactive-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    text-align: center !important;
  }

  /* SPEAKER */
  .speakers-premium-grid,
  .speaker-grid {
    grid-template-columns: 1fr !important;
  }

  .speaker-premium-card {
    min-height: auto !important;
    padding: 28px 18px !important;
    text-align: center !important;
  }

  .speaker-premium-avatar-wrap {
    width: 118px !important;
    height: 118px !important;
    margin-inline: auto !important;
  }

  /* FAQ */
  .faq-console-layout,
  .faq-premium-layout {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .faq-console-left,
  .faq-premium-left {
    position: static !important;
    text-align: center !important;
  }

  .faq-console-stats,
  .faq-console-tags {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .faq-console-tag {
    width: 100% !important;
    justify-content: center !important;
  }

  .faq-console-item summary,
  .faq-premium-item summary {
    padding: 20px 16px !important;
    font-size: 0.96rem !important;
  }

  .faq-console-answer,
  .faq-premium-answer {
    padding: 0 16px 20px !important;
  }

  .faq-console-btn,
  .faq-premium-btn {
    width: 100% !important;
    min-height: 56px !important;
  }

  /* FINAL CTA */
  .section-final-cta-mini,
  .section-final-cta-pro,
  .section-final-cta {
    padding-top: 62px !important;
    padding-bottom: 64px !important;
  }

  .final-mini-panel,
  .final-pro-panel,
  .final-cta-card {
    padding: 30px 18px !important;
    border-radius: 26px !important;
    text-align: center !important;
  }

  .final-mini-kicker,
  .final-pro-eyebrow {
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.22em !important;
  }

  .final-mini-panel h2,
  .final-pro-content h2 {
    font-size: clamp(2.05rem, 10vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  .final-mini-rotative,
  .final-pro-rotative {
    min-height: 52px !important;
    font-size: 0.95rem !important;
  }

  .final-mini-actions,
  .final-pro-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .final-mini-btn,
  .final-pro-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 56px !important;
  }

  .final-pro-trust {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* FOOTER — supports both old footer-dock and new footer-command */
  .footer-dock,
  .footer-command {
    padding: 50px 0 28px !important;
  }

  .footer-dock-panel,
  .footer-command-panel {
    padding: 22px !important;
    border-radius: 26px !important;
  }

  .footer-dock-top,
  .footer-dock-bottom,
  .footer-command-main,
  .footer-command-cta,
  .footer-command-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 22px !important;
  }

  .footer-dock-brand,
  .footer-command-brand {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .footer-dock-logo-wrap,
  .footer-command-logo-stage {
    width: 76px !important;
    height: 76px !important;
    flex: 0 0 76px !important;
  }

  .footer-dock-logo,
  .footer-command-logo {
    width: 46px !important;
    height: auto !important;
  }

  .footer-dock-status,
  .footer-command-status {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    max-width: 100% !important;
    justify-content: stretch !important;
  }

  .footer-status-pill,
  .footer-command-pill {
    width: 100% !important;
    justify-content: center !important;
    min-height: 44px !important;
    text-align: center !important;
  }

  .footer-dock-actions,
  .footer-command-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .footer-dock-btn,
  .footer-command-btn {
    width: 100% !important;
    min-height: 54px !important;
  }

  .footer-dock-mini-nav,
  .footer-command-nav {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .footer-dock-mini-nav a,
  .footer-command-nav a {
    padding: 9px 11px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.82rem !important;
  }

  .footer-command-rights,
  .footer-dock-bottom p {
    justify-content: center !important;
    text-align: center !important;
  }

  .scroll-top {
    width: 46px !important;
    height: 46px !important;
    right: 16px !important;
    bottom: 16px !important;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 420px) {
  .container {
    width: min(100%, calc(100% - 22px)) !important;
  }

  .hero-title,
  .hero-title-gradient {
    font-size: clamp(2.85rem, 18vw, 3.75rem) !important;
  }

  .hero-subtitle {
    font-size: clamp(1.65rem, 10vw, 2.3rem) !important;
  }

  .hero-features {
    grid-template-columns: 1fr !important;
  }

  .hero-feature {
    min-height: auto !important;
  }

  .faq-console-stats,
  .faq-console-tags {
    grid-template-columns: 1fr !important;
  }

  .final-mini-panel h2,
  .final-pro-content h2 {
    font-size: clamp(1.85rem, 10vw, 2.45rem) !important;
  }
}

/* =========================================================
   MOBILE FIX — AGENDA + TESTIMONIAL + FAQ ORGANIZATION
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

@media (max-width: 768px) {
  /* Prevent ugly word breaking everywhere */
  h1,
  h2,
  h3,
  h4,
  p,
  a,
  span,
  li {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  /* Better mobile spacing */
  .section-agenda-premium,
  .section-agenda-interactive,
  .section-testimonials-premium,
  .section-faq-console,
  .section-faq-premium {
    padding-top: 58px !important;
    padding-bottom: 68px !important;
  }

  /* =========================
     AGENDA MOBILE FIX
  ========================= */

  .agenda-premium-grid,
  .agenda-interactive-grid,
  .agenda-tabs,
  .agenda-stage-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .agenda-premium-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: auto !important;
    padding: 28px 22px 30px !important;
    border-radius: 26px !important;
    text-align: left !important;
    background:
      radial-gradient(circle at 12% 0%, rgba(31, 238, 255, 0.14), transparent 34%),
      linear-gradient(180deg, rgba(7, 22, 36, 0.94), rgba(3, 10, 18, 0.98)) !important;
    border: 1px solid rgba(37, 235, 255, 0.22) !important;
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.38),
      0 0 44px rgba(31, 238, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  }

  .agenda-premium-card::before {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #20eaff, #19ffc4);
    box-shadow: 0 0 18px rgba(31, 238, 255, 0.55);
  }

  .agenda-day {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    min-height: 38px !important;
    margin: 0 0 18px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    color: #25eaff !important;
    font-size: 0.82rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.18em !important;
    background: rgba(32, 234, 255, 0.075) !important;
    border: 1px solid rgba(32, 234, 255, 0.22) !important;
  }

  .agenda-premium-card h3 {
    max-width: 100% !important;
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
    text-align: left !important;
  }

  .agenda-premium-card p {
    max-width: 100% !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.98rem !important;
    line-height: 1.68 !important;
    text-align: left !important;
  }

  .agenda-premium-cta {
    margin-top: 26px !important;
  }

  .agenda-premium-btn,
  .agenda-interactive-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    padding: 0 20px !important;
    border-radius: 999px !important;
    text-align: center !important;
  }

  /* =========================
     TESTIMONIAL MOBILE FIX
  ========================= */

  .testimonials-premium-header {
    max-width: 100% !important;
    margin-bottom: 28px !important;
    text-align: left !important;
  }

  .testimonials-premium-header h2 {
    font-size: clamp(2.2rem, 10vw, 3rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
    text-align: left !important;
  }

  .testimonial-card,
  .testimonials-premium-card {
    width: 100% !important;
    padding: 28px 22px !important;
    border-radius: 26px !important;
  }

  .testimonial-text {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .testimonial-person {
    align-items: center !important;
  }

  /* =========================
     FAQ TITLE MOBILE FIX
  ========================= */

  .faq-console-panel,
  .faq-premium-panel {
    padding: 30px 20px !important;
    border-radius: 26px !important;
  }

  .faq-console-panel h2,
  .faq-premium-panel h2 {
    font-size: clamp(2rem, 10vw, 2.75rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
    text-align: center !important;
  }

  .faq-console-item summary,
  .faq-premium-item summary {
    padding: 18px 16px !important;
    font-size: 0.96rem !important;
    line-height: 1.35 !important;
  }
}
@media (max-width: 430px) {
  .agenda-premium-card {
    padding: 26px 20px 28px !important;
  }

  .agenda-premium-card h3 {
    font-size: clamp(1.65rem, 9vw, 2.15rem) !important;
  }

  .agenda-premium-card p {
    font-size: 0.94rem !important;
    line-height: 1.62 !important;
  }

  .testimonials-premium-header h2,
  .faq-console-panel h2,
  .faq-premium-panel h2 {
    font-size: clamp(1.9rem, 10vw, 2.45rem) !important;
  }
}


/* =========================================================
   REAL MOBILE FIX — AGENDA CLEAN + TESTIMONIALS + FAQ
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .container {
    width: min(100%, calc(100% - 28px)) !important;
  }

  h1,
  h2,
  h3,
  h4,
  p,
  span,
  a,
  li {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  /* =========================
     AGENDA CLEAN — REAL SECTION
  ========================= */

  .section-agenda-clean {
    padding: 54px 0 64px !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(28, 230, 255, 0.12), transparent 34%),
      linear-gradient(180deg, #020812 0%, #01060d 100%) !important;
  }

  .agenda-clean-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .agenda-clean-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 28px 22px 30px !important;
    border-radius: 26px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    background:
      radial-gradient(circle at 18% 0%, rgba(32, 234, 255, 0.13), transparent 36%),
      linear-gradient(180deg, rgba(8, 22, 36, 0.94), rgba(3, 10, 18, 0.98)) !important;
    border: 1px solid rgba(35, 235, 255, 0.22) !important;
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.38),
      0 0 44px rgba(31, 238, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  }

  .agenda-clean-card::before {
    height: 4px !important;
    background: linear-gradient(90deg, #20eaff, #19ffc4) !important;
    box-shadow: 0 0 22px rgba(31, 238, 255, 0.5);
  }

  .agenda-clean-day {
    align-self: flex-start !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    min-height: 38px !important;
    margin: 0 0 18px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    color: #25eaff !important;
    font-size: 0.82rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.18em !important;
    background: rgba(32, 234, 255, 0.075) !important;
    border: 1px solid rgba(32, 234, 255, 0.22) !important;
  }

  .agenda-clean-card h3 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 0 14px !important;
    color: #ffffff !important;
    font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
    text-align: left !important;
  }

  .agenda-clean-card p {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.98rem !important;
    line-height: 1.68 !important;
    text-align: left !important;
  }

  /* =========================
     TESTIMONIALS MOBILE
  ========================= */

  .section-testimonials-premium {
    padding: 58px 0 66px !important;
  }

  .testimonials-premium-header {
    max-width: 100% !important;
    margin-bottom: 28px !important;
    text-align: left !important;
  }

  .testimonials-premium-kicker {
    margin-left: 0 !important;
  }

  .testimonials-premium-header h2 {
    font-size: clamp(2.05rem, 10vw, 2.75rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
    text-align: left !important;
  }

  .testimonials-slider {
    display: block !important;
  }

  .testimonials-nav {
    display: none !important;
  }

  .testimonials-viewport {
    width: 100% !important;
    overflow: hidden !important;
  }

  .testimonials-track {
    gap: 0 !important;
  }

  .testimonial-card {
    min-width: 100% !important;
    width: 100% !important;
    min-height: auto !important;
    padding: 28px 22px 24px !important;
    border-radius: 26px !important;
  }

  .testimonial-stars {
    font-size: 1rem !important;
    letter-spacing: 0.14em !important;
  }

  .testimonial-text {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .testimonial-person {
    gap: 12px !important;
  }

  .testimonial-avatar {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
  }

  .testimonials-dots {
    margin-top: 26px !important;
    gap: 12px !important;
  }

  .testimonial-dot,
  .testimonials-dots button {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
    padding: 0 !important;
    border-radius: 999px !important;
  }

  .testimonial-dot.active,
  .testimonials-dots button.active,
  .testimonials-dots button.is-active {
    width: 28px !important;
    max-width: 28px !important;
    background: linear-gradient(90deg, #20eaff, #19ffc4) !important;
  }

  /* =========================
     FAQ MOBILE
  ========================= */

  .section-faq-console {
    padding: 58px 0 70px !important;
  }

  .faq-console-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .faq-console-left {
    position: static !important;
    width: 100% !important;
  }

  .faq-console-panel {
    width: 100% !important;
    padding: 30px 20px !important;
    border-radius: 26px !important;
    text-align: center !important;
  }

  .faq-console-panel h2 {
    max-width: 100% !important;
    margin: 0 auto 16px !important;
    font-size: clamp(2rem, 10vw, 2.7rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
    text-align: center !important;
  }

  .faq-console-intro {
    max-width: 100% !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
  }

  .faq-console-btn {
    width: 100% !important;
    min-height: 56px !important;
    margin-top: 20px !important;
  }

  .faq-console-right {
    width: 100% !important;
  }

  .faq-console-list {
    display: grid !important;
    gap: 12px !important;
  }

  .faq-console-item {
    border-radius: 20px !important;
  }

  .faq-console-item summary {
    padding: 18px 16px !important;
    font-size: 0.96rem !important;
    line-height: 1.35 !important;
  }

  .faq-console-answer {
    padding: 0 16px 20px !important;
  }

  .faq-console-answer p {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 430px) {
  .agenda-clean-card {
    padding: 26px 20px 28px !important;
  }

  .agenda-clean-card h3 {
    font-size: clamp(1.65rem, 9vw, 2.15rem) !important;
  }

  .agenda-clean-card p {
    font-size: 0.94rem !important;
    line-height: 1.62 !important;
  }

  .testimonials-premium-header h2,
  .faq-console-panel h2 {
    font-size: clamp(1.9rem, 10vw, 2.45rem) !important;
  }
}


/* =========================================================
   MOBILE NAV BUTTON FIX
   ========================================================= */

@media (max-width: 768px) {
  .navbar {
    overflow: visible !important;
  }

  .nav-inner {
    min-height: 74px !important;
    display: flex !important;
    align-items: center !important;
  }

  .hamburger {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 54px !important;
    height: 54px !important;
    flex: 0 0 54px !important;
    margin-left: auto !important;
    padding: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(42, 238, 255, 0.12), transparent 52%),
      rgba(255, 255, 255, 0.045) !important;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: none !important;
    overflow: hidden !important;
  }

  .hamburger::before,
  .hamburger::after {
    display: none !important;
    content: none !important;
  }

  .hamburger span {
    position: absolute !important;
    left: 50% !important;
    width: 26px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    transform: translateX(-50%) !important;
  }

  .hamburger span:nth-child(1) {
    top: 17px !important;
  }

  .hamburger span:nth-child(2) {
    top: 25px !important;
  }

  .hamburger span:nth-child(3) {
    top: 33px !important;
  }
}

/* =========================================================
   MOBILE TESTIMONIAL CENTER FIX
   ========================================================= */

@media (max-width: 768px) {
  .section-testimonials-premium {
    overflow: hidden !important;
    padding: 58px 0 72px !important;
  }

  .section-testimonials-premium .container {
    width: min(100%, calc(100% - 28px)) !important;
    overflow: hidden !important;
  }

  .testimonials-premium-header {
    max-width: 100% !important;
    margin: 0 0 28px !important;
    text-align: left !important;
  }

  .testimonials-premium-kicker {
    margin-left: 0 !important;
  }

  .testimonials-premium-header h2 {
    max-width: 100% !important;
    font-size: clamp(2.15rem, 10vw, 3rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
    text-align: left !important;
  }

  .testimonials-slider {
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .testimonials-nav {
    display: none !important;
  }

  .testimonials-viewport {
    width: 100% !important;
    overflow: hidden !important;
  }

  .testimonials-track {
    display: flex !important;
    gap: 16px !important;
    width: 100% !important;
    transition: transform 0.45s ease !important;
    will-change: transform !important;
  }

  .testimonial-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    min-height: auto !important;
    padding: 30px 24px 26px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .testimonial-stars {
    white-space: nowrap !important;
    letter-spacing: 0.12em !important;
  }

  .testimonial-text {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .testimonial-person {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .testimonial-meta span {
    font-size: 0.84rem !important;
    line-height: 1.35 !important;
  }

  .testimonials-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 26px !important;
  }

  .testimonial-dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    background: transparent !important;
  }

  .testimonial-dot.active {
    width: 32px !important;
    background: linear-gradient(90deg, #20eaff, #19ffc4) !important;
    border-color: transparent !important;
    transform: none !important;
  }
}


/* =========================================================
   PREMIUM DIGITAL SHAKE / ALIVE EFFECT
   Mobile + Desktop
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

html,
body {
  overflow-x: hidden !important;
}

/* Prevent animation from cutting content */
.section,
section,
.container {
  isolation: isolate;
}

/* Elements before they appear */
.reveal-shake {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(.2,.9,.2,1),
    filter 0.65s ease;
  will-change: transform, opacity, filter;
}

/* When visible */
.reveal-shake.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: premiumTextShake 0.58s ease both;
}

/* Text / button micro shake */
@keyframes premiumTextShake {
  0% {
    transform: translateY(22px) scale(0.985);
    text-shadow: none;
  }

  28% {
    transform: translateY(-2px) translateX(1px) scale(1.01);
    text-shadow:
      1px 0 rgba(32, 234, 255, 0.35),
      -1px 0 rgba(25, 255, 196, 0.25);
  }

  42% {
    transform: translateY(1px) translateX(-1px) scale(1);
  }

  56% {
    transform: translateY(-1px) translateX(1px);
    text-shadow:
      0 0 16px rgba(32, 234, 255, 0.18),
      0 0 28px rgba(25, 255, 196, 0.12);
  }

  72% {
    transform: translateY(0) translateX(-0.5px);
  }

  100% {
    transform: translateY(0) translateX(0) scale(1);
    text-shadow: none;
  }
}

/* Stronger entrance for cards */
.reveal-card {
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  filter: blur(8px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.2,.9,.2,1),
    filter 0.7s ease;
  will-change: transform, opacity, filter;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: premiumCardPulse 0.72s ease both;
}

@keyframes premiumCardPulse {
  0% {
    transform: translateY(26px) scale(0.97);
  }

  38% {
    transform: translateY(-3px) scale(1.012);
  }

  58% {
    transform: translateY(2px) scale(0.996);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* Letter-level digital flicker */
.letter-shake span {
  display: inline-block;
  animation: letterDigitalShake 0.48s ease both;
  animation-delay: calc(var(--i) * 12ms);
}

@keyframes letterDigitalShake {
  0% {
    opacity: 0;
    transform: translateY(10px) skewX(-5deg);
    filter: blur(5px);
  }

  35% {
    opacity: 1;
    transform: translateY(-2px) translateX(1px) skewX(3deg);
    filter: blur(0);
  }

  55% {
    transform: translateY(1px) translateX(-1px) skewX(-2deg);
  }

  75% {
    transform: translateY(-1px) translateX(0.5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) skewX(0);
    filter: blur(0);
  }
}

/* Pulse the important CTA buttons */
.btn-primary,
.hero-card-btn,
.agenda-premium-btn,
.agenda-interactive-btn,
.final-mini-btn-primary,
.final-pro-btn-primary,
.footer-command-btn-primary,
.footer-dock-btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.hero-card-btn::after,
.agenda-premium-btn::after,
.agenda-interactive-btn::after,
.final-mini-btn-primary::after,
.final-pro-btn-primary::after,
.footer-command-btn-primary::after,
.footer-dock-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.42) 45%,
    transparent 70%
  );
  transform: translateX(-130%);
  animation: buttonAliveShine 4.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buttonAliveShine {
  0%, 58% {
    transform: translateX(-130%);
    opacity: 0;
  }

  68% {
    opacity: 1;
  }

  86%, 100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

/* Fast scroll-top button */
.scroll-top {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 9999 !important;
  width: 52px !important;
  height: 52px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #031018 !important;
  background: linear-gradient(135deg, #32edff, #18ffc4) !important;
  box-shadow:
    0 18px 44px rgba(31, 238, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
  cursor: pointer !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(16px) scale(0.92) !important;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease !important;
}

.scroll-top.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  animation: scrollTopPulse 2.4s ease-in-out infinite;
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.04) !important;
}

@keyframes scrollTopPulse {
  0%, 100% {
    box-shadow:
      0 18px 44px rgba(31, 238, 255, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  50% {
    box-shadow:
      0 22px 58px rgba(31, 238, 255, 0.48),
      0 0 0 8px rgba(31, 238, 255, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
}

/* Mobile tuning */
@media (max-width: 768px) {
  .reveal-shake,
  .reveal-card {
    transform: translateY(16px) scale(0.99);
    filter: blur(5px);
  }

  .scroll-top {
    right: 16px !important;
    bottom: 18px !important;
    width: 46px !important;
    height: 46px !important;
  }

  @keyframes premiumTextShake {
    0% {
      transform: translateY(16px) scale(0.99);
    }

    40% {
      transform: translateY(-1px) translateX(0.5px) scale(1.004);
    }

    65% {
      transform: translateY(1px) translateX(-0.5px);
    }

    100% {
      transform: translateY(0) translateX(0) scale(1);
    }
  }
}

/* Respect accessibility settings */
@media (prefers-reduced-motion: reduce) {
  .reveal-shake,
  .reveal-card,
  .letter-shake span,
  .scroll-top.is-visible,
  .btn-primary::after,
  .hero-card-btn::after,
  .agenda-premium-btn::after,
  .agenda-interactive-btn::after,
  .final-mini-btn-primary::after,
  .final-pro-btn-primary::after,
  .footer-command-btn-primary::after,
  .footer-dock-btn-primary::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-shake,
  .reveal-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================================================
   SHAKE EFFECT — STYLE SAFE VERSION
   Keeps original colors, gradients and design
   ========================================================= */

.reveal-shake {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  filter: blur(5px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(.2,.9,.2,1),
    filter 0.55s ease;
  will-change: transform, opacity, filter;
}

.reveal-shake.is-visible {
  opacity: 1;
  filter: blur(0);
  animation: cleanShakeIn 0.55s ease both;
}

@keyframes cleanShakeIn {
  0% {
    transform: translateY(18px) scale(0.99);
  }

  30% {
    transform: translateY(-2px) translateX(1px) scale(1.006);
  }

  48% {
    transform: translateY(1px) translateX(-1px) scale(1);
  }

  66% {
    transform: translateY(-1px) translateX(0.5px);
  }

  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

/* Remove the old letter split effect if it still exists */
.letter-shake span {
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

/* Protect original hero gradient */
.hero-title,
.hero-title-gradient {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 78%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* Protect subtitle original color */
.hero-subtitle {
  color: #ffffff !important;
}

/* Keep CTA shine but do not recolor the site */
.btn-primary::after,
.hero-card-btn::after,
.agenda-premium-btn::after,
.agenda-interactive-btn::after,
.final-mini-btn-primary::after,
.final-pro-btn-primary::after,
.footer-command-btn-primary::after,
.footer-dock-btn-primary::after {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  ) !important;
}

/* =========================================================
   COLOR FIX — HERO SUBTITLE + PROFIT INLINE
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

/* Make this text pure white */
.hero-subtitle {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* If the animation wrapped letters in spans, keep them white too */
.hero-subtitle span {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Main title keeps the premium gradient */
.hero-title,
.hero-title-gradient {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 78%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* Learn title: normal text white */
.learn-title h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Only PROFIT 3.0 gets the same top gradient */
.learn-title h3 .profit-inline {
  display: inline-block;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 78%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* =========================================================
   FINAL COLOR + MOBILE CENTER + WHITE FLASH FIX
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

html,
body {
  background: #01060d !important;
  overflow-x: hidden !important;
  overscroll-behavior-y: none;
}

/* Keep shake effect but do not recolor text */
.reveal-shake {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  filter: blur(5px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(.2,.9,.2,1),
    filter 0.55s ease;
}

.reveal-shake.is-visible {
  opacity: 1;
  filter: blur(0);
  animation: cleanShakeIn 0.55s ease both;
}

@keyframes cleanShakeIn {
  0% {
    transform: translateY(18px) scale(0.99);
  }

  32% {
    transform: translateY(-2px) translateX(1px) scale(1.006);
  }

  52% {
    transform: translateY(1px) translateX(-1px) scale(1);
  }

  72% {
    transform: translateY(-1px) translateX(0.5px);
  }

  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

/* Card animation without cutting/white flash */
.reveal-card {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(5px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(.2,.9,.2,1),
    filter 0.62s ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* HERO main title keeps gradient */
.hero-title,
.hero-title-gradient {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 78%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* HERO subtitle must be white */
.hero-subtitle {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Learn title base is white */
.learn-title h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Only PROFIT 3.0 in the learn title gets the gradient */
.learn-title h3 .profit-inline {
  display: inline-block !important;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 78%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* Mobile hero subtitle center fix */
@media (max-width: 768px) {
  .hero-copy {
    text-align: center !important;
  }

  .hero-title,
  .hero-subtitle,
  .hero-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-subtitle {
    max-width: 360px !important;
    font-size: clamp(2rem, 9.5vw, 3rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
    text-wrap: balance;
  }

  .hero-description {
    max-width: 360px !important;
  }
}

@media (max-width: 430px) {
  .hero-subtitle {
    max-width: 330px !important;
    font-size: clamp(1.85rem, 9vw, 2.45rem) !important;
  }
}


/* =========================================================
   ANDROID BRAVE SCROLL FIX
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 100% !important;
  overflow-x: clip !important;
  overflow-y: auto !important;
  overscroll-behavior-y: auto !important;
  touch-action: pan-y !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Do not let sections block touch scrolling */
body,
section,
.section,
.container,
.hero,
.navbar,
.hero-card,
.fit-interactive-card,
.video-immersive-frame,
.testimonial-card,
.faq-console-item,
.footer-dock-panel {
  touch-action: pan-y !important;
}

/* Brave Android can struggle with blur + transform animations */
@media (max-width: 768px) {
  .reveal-shake,
  .reveal-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal-shake.is-visible,
  .reveal-card.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .hero-card,
  .learn-grid,
  .why-rotative-panel,
  .fit-interactive-card,
  .video-immersive-frame,
  .agenda-tab,
  .agenda-stage-panel,
  .speaker-premium-card,
  .faq-console-panel,
  .faq-console-item,
  .final-mini-panel,
  .footer-dock-panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .scroll-top {
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }
}

/* =========================================================
   MOBILE VIDEO TITLE PREMIUM FIX
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

@media (max-width: 768px) {
  .section-video-immersive {
    padding-top: 44px !important;
    padding-bottom: 56px !important;
  }

  .video-immersive-header {
    max-width: 100% !important;
    margin: 0 auto 24px !important;
    text-align: center !important;
  }

  .video-immersive-kicker {
    min-height: 30px !important;
    padding: 0 12px !important;
    margin-bottom: 18px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.22em !important;
  }

  .video-immersive-title,
  .video-immersive-header h2 {
    max-width: 340px !important;
    margin: 0 auto 16px !important;
    font-size: clamp(1.85rem, 7.2vw, 2.28rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
    font-weight: 800 !important;
    text-align: center !important;
    text-wrap: balance !important;
  }

  .video-immersive-title span {
    display: inline !important;
    white-space: normal !important;
  }

  .video-immersive-header p {
    max-width: 340px !important;
    margin: 0 auto 20px !important;
    font-size: 0.94rem !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.68) !important;
    text-align: center !important;
  }

  .video-immersive-pills {
    max-width: 340px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .video-immersive-pills span {
    min-height: 44px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 430px) {
  .video-immersive-title,
  .video-immersive-header h2 {
    max-width: 315px !important;
    font-size: clamp(1.72rem, 7.6vw, 2.08rem) !important;
    line-height: 1.1 !important;
  }

  .video-immersive-header p,
  .video-immersive-pills {
    max-width: 315px !important;
  }
}


/* =========================================================
   PREMIUM CRYPTO TEXT EFFECT — VIDEO TITLE
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

.video-immersive-title,
.video-immersive-header h2 {
  position: relative !important;
  color: #ffffff !important;
  text-shadow:
    0 0 18px rgba(16, 216, 255, 0.16),
    0 0 34px rgba(25, 229, 184, 0.08) !important;
}

/* Gradient highlight only for important futuristic words if wrapped in span */
.video-immersive-title .crypto-word,
.video-immersive-header h2 .crypto-word {
  display: inline-block !important;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #35efff 28%,
    #19e5b8 62%,
    #ffffff 100%
  ) !important;
  background-size: 220% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
  animation: cryptoTextFlow 4.5s ease-in-out infinite;
}

@keyframes cryptoTextFlow {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* Premium digital underline glow */
.video-immersive-title::after,
.video-immersive-header h2::after {
  content: "";
  display: block;
  width: min(220px, 55%);
  height: 2px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 216, 255, 0.9),
    rgba(25, 229, 184, 0.9),
    transparent
  );
  box-shadow:
    0 0 18px rgba(16, 216, 255, 0.45),
    0 0 28px rgba(25, 229, 184, 0.18);
}

/* Subtle futuristic badge improvement */
.video-immersive-kicker {
  color: #29ecff !important;
  background:
    linear-gradient(180deg, rgba(7, 24, 37, 0.88), rgba(3, 12, 22, 0.96)) !important;
  border: 1px solid rgba(41, 236, 255, 0.24) !important;
  box-shadow:
    0 0 18px rgba(16, 216, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* Mobile: keep premium but not too aggressive */
@media (max-width: 768px) {
  .video-immersive-title,
  .video-immersive-header h2 {
    max-width: 340px !important;
    margin: 0 auto 16px !important;
    font-size: clamp(1.85rem, 7.2vw, 2.28rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
    text-align: center !important;
    text-shadow:
      0 0 14px rgba(16, 216, 255, 0.14),
      0 0 24px rgba(25, 229, 184, 0.08) !important;
  }

  .video-immersive-title::after,
  .video-immersive-header h2::after {
    width: 160px;
    margin-top: 16px;
  }
}

@media (max-width: 430px) {
  .video-immersive-title,
  .video-immersive-header h2 {
    max-width: 315px !important;
    font-size: clamp(1.72rem, 7.6vw, 2.08rem) !important;
  }
}


.fit-conversation {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.fit-message {
  position: relative;
  max-width: 760px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fit-message-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.fit-message p {
  margin: 0;
  line-height: 1.6;
}

.fit-message-bot {
  background: rgba(255, 255, 255, 0.06);
}

.fit-message-user {
  justify-self: end;
  background: linear-gradient(135deg, rgba(16, 216, 255, 0.14), rgba(25, 229, 184, 0.12));
}

.fit-result-empty {
  opacity: 0.82;
}

/* =========================================================
   FINAL TYPOGRAPHY SYSTEM — PROFIT 3.0
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

:root {
  /* Desktop typography */
  --fs-hero-title: 64px;
  --fs-hero-subtitle: 22px;
  --fs-section-title: 44px;
  --fs-subsection-title: 28px;
  --fs-body: 18px;
  --fs-list: 18px;
  --fs-card-title: 24px;
  --fs-card-body: 17px;
  --fs-button: 18px;
  --fs-small: 14px;

  --lh-title: 1.08;
  --lh-body: 1.65;
}

/* =========================
   GLOBAL TEXT
========================= */

body {
  font-size: var(--fs-body) !important;
  line-height: var(--lh-body) !important;
}

p {
  font-size: var(--fs-body) !important;
  line-height: var(--lh-body) !important;
}

li {
  font-size: var(--fs-list) !important;
  line-height: var(--lh-body) !important;
}

/* =========================
   HERO TYPOGRAPHY
========================= */

.hero-title,
.hero-title-gradient {
  font-size: var(--fs-hero-title) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em !important;
}

.hero-subtitle {
  font-size: var(--fs-hero-subtitle) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
}

.hero-description {
  font-size: var(--fs-body) !important;
  line-height: var(--lh-body) !important;
}

/* =========================
   SECTION TITLES
========================= */

section h2,
.section h2,
.video-immersive-title,
.video-immersive-header h2,
.speakers-premium-header h2,
.testimonials-premium-header h2,
.faq-console-panel h2,
.final-mini-panel h2 {
  font-size: var(--fs-section-title) !important;
  line-height: var(--lh-title) !important;
  letter-spacing: -0.04em !important;
}

/* =========================
   H3 / SUBSECTION TITLES
========================= */

section h3,
.section h3,
.hero-card h3,
.agenda-clean-card h3,
.speaker-premium-card h3 {
  font-size: var(--fs-subsection-title) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
}

/* =========================
   CARD TITLES
========================= */

.learn-card h4,
.agenda-clean-card h3,
.testimonial-meta strong,
.speaker-premium-card h3 {
  font-size: var(--fs-card-title) !important;
  line-height: 1.2 !important;
}

/* =========================
   CARD BODY TEXT
========================= */

.learn-card p,
.agenda-clean-card p,
.testimonial-text,
.speaker-premium-card p,
.faq-console-answer p,
.hero-card-subtext,
.hero-card p {
  font-size: var(--fs-card-body) !important;
  line-height: 1.6 !important;
}

/* =========================
   CTA BUTTON TEXT
========================= */

.btn,
.btn-primary,
.btn-nav,
.hero-card-btn,
.fit-interactive-btn,
.faq-console-btn,
.final-mini-btn,
.footer-dock-btn,
.agenda-interactive-btn,
.agenda-premium-btn {
  font-size: var(--fs-button) !important;
  line-height: 1.2 !important;
}

/* =========================
   SMALL TEXT / DISCLAIMER
========================= */

small,
.hero-card-note,
.hero-proof-text,
.footer-dock-bottom p,
.footer-dock-mini-nav a,
.testimonial-meta span,
.video-immersive-pills span,
.footer-status-pill,
.faq-console-answer-label,
.final-mini-kicker,
.video-immersive-kicker,
.testimonials-premium-kicker {
  font-size: var(--fs-small) !important;
  line-height: 1.45 !important;
}

/* =========================================================
   MOBILE TYPOGRAPHY
   ========================================================= */

@media (max-width: 768px) {
  :root {
    --fs-hero-title: 40px;
    --fs-hero-subtitle: 18px;
    --fs-section-title: 32px;
    --fs-subsection-title: 22px;
    --fs-body: 16px;
    --fs-list: 16px;
    --fs-card-title: 22px;
    --fs-card-body: 16px;
    --fs-button: 16px;
    --fs-small: 14px;
  }

  body {
    font-size: var(--fs-body) !important;
  }

  p {
    font-size: var(--fs-body) !important;
  }

  li {
    font-size: var(--fs-list) !important;
  }

  .hero-title,
  .hero-title-gradient {
    font-size: var(--fs-hero-title) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.055em !important;
  }

  .hero-subtitle {
    max-width: 360px !important;
    font-size: var(--fs-hero-subtitle) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
  }

  .hero-description {
    font-size: var(--fs-body) !important;
    line-height: 1.6 !important;
  }

  section h2,
  .section h2,
  .video-immersive-title,
  .video-immersive-header h2,
  .speakers-premium-header h2,
  .testimonials-premium-header h2,
  .faq-console-panel h2,
  .final-mini-panel h2 {
    font-size: var(--fs-section-title) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
  }

  section h3,
  .section h3,
  .hero-card h3,
  .agenda-clean-card h3,
  .speaker-premium-card h3 {
    font-size: var(--fs-subsection-title) !important;
    line-height: 1.18 !important;
  }

  .learn-card h4,
  .agenda-clean-card h3,
  .testimonial-meta strong,
  .speaker-premium-card h3 {
    font-size: var(--fs-card-title) !important;
  }

  .learn-card p,
  .agenda-clean-card p,
  .testimonial-text,
  .speaker-premium-card p,
  .faq-console-answer p,
  .hero-card-subtext,
  .hero-card p {
    font-size: var(--fs-card-body) !important;
    line-height: 1.6 !important;
  }

  .btn,
  .btn-primary,
  .btn-nav,
  .hero-card-btn,
  .fit-interactive-btn,
  .faq-console-btn,
  .final-mini-btn,
  .footer-dock-btn,
  .agenda-interactive-btn,
  .agenda-premium-btn {
    font-size: var(--fs-button) !important;
  }

  small,
  .hero-card-note,
  .hero-proof-text,
  .footer-dock-bottom p,
  .footer-dock-mini-nav a,
  .testimonial-meta span,
  .video-immersive-pills span,
  .footer-status-pill,
  .faq-console-answer-label,
  .final-mini-kicker,
  .video-immersive-kicker,
  .testimonials-premium-kicker {
    font-size: var(--fs-small) !important;
  }
}

.testimonials-premium-header h2 span {
  display: inline-block !important;
  white-space: nowrap !important;
}


/* =========================================================
   NAVBAR LOGO SIZE FIX
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

.navbar .logo-img {
  width: 90px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

.navbar .logo {
  display: flex !important;
  align-items: center !important;
}

/* Give the navbar enough height for the bigger logo */
.navbar .nav-inner {
  min-height: 96px !important;
}

/* Mobile logo size */
@media (max-width: 768px) {
  .navbar .logo-img {
    width: 72px !important;
    height: auto !important;
  }

  .navbar .nav-inner {
    min-height: 78px !important;
  }
}

/* =========================================================
   MOBILE NAVBAR LOGO SIZE
   Paste at the VERY BOTTOM of styles.css
   ========================================================= */

@media (max-width: 768px) {
  .navbar .logo-img {
    width: 76px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  .navbar .nav-inner {
    min-height: 76px !important;
    display: flex !important;
    align-items: center !important;
  }

  .navbar .logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }
}