/* Base Styles & Resets */
:root {
  --primary: #0296AF;
  --primary-light: #84F6FF;
  --text-dark: #000000;
  --text-body: rgba(0, 0, 0, 0.7);
  --danger: #BA1A1A;
  --danger-light: #FFF5F4;
  --warning: #FC6767;
  --input-bg: #FFFFFF;
  --card-bg: rgba(3, 129, 150, 0.16);
  --card-border: rgba(255, 255, 255, 0.5);

  --font-heading: 'Satoshi', sans-serif;
  --font-body: 'Satoshi', sans-serif;
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #F8F9FA;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  z-index: 10;
}

.logo {
  height: 28px;
  width: auto;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffffff;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(2, 150, 175, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  background-color: #f0fbff;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(270deg, rgba(212, 241, 255, 0.6) 0%, rgba(226, 233, 255, 0.6) 100%), url('hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 10% 4rem;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

/* Hero Left Content */
.hero-content {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 600px;
  width: 100%;
}

.badge-prelaunch {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  background: rgba(2, 150, 175, 0.15);
  border: 1px solid rgba(0, 221, 255, 0.3);
  border-radius: 100px;
  width: max-content;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(2, 150, 175, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(2, 150, 175, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(2, 150, 175, 0);
  }
}

@keyframes blinkText {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

.badge-text {
  font-weight: 800;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  animation: blinkText 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 70px;
  line-height: 1.05;
  color: #000000;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-body);
}

.pricing-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0.5rem;
}

.banner-early-bird {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--primary);
  border-radius: 4px;
  gap: 8px;
}

.banner-validity {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--danger-light);
  border-radius: 4px;
  gap: 8px;
}

.price-current {
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
}

.price-old {
  font-weight: 500;
  font-size: 14px;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 6px;
}

.validity-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--danger);
}

/* Hero Right Content (Card) */
.hero-form-card-wrapper {
  position: relative;
  flex: 1 1 450px;
  max-width: 520px;
  width: 100%;
}

.urgency-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  transform: rotate(3deg);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(10px);
}

.card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: #151C23;
}

.card-header p {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-body);
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #000000;
}

.form-group input {
  padding: 12px 16px;
  background: var(--input-bg);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #333;
  transition: border-color 0.2s;
}

.form-group input::placeholder {
  color: #6B7280;
}

/* IntlTelInput full width and padding fix */
.form-group .iti {
  width: 100%;
}

.form-group .iti input {
  width: 100%;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 150, 175, 0.1);
}

.submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  gap: 9px;
  background: linear-gradient(90deg, #013A70 0%, #20C1C6 100%);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(32, 193, 198, 0.3);
}

.card-divider {
  height: 1px;
  background: rgba(30, 41, 59, 0.15);
  /* Slightly lighter for the card background */
  width: 100%;
}

.pricing-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-left {
  display: flex;
  flex-direction: column;
}

.pricing-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}

.pricing-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.price-large {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: #000000;
}

.price-strike {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text-body);
}

.discount-badge {
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 4px;
}

.pricing-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.spots-warning {
  display: flex;
  align-items: center;
  gap: 6px;
}

.spots-warning span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--warning);
}

.spots-subtext {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-body);
  margin-top: 2px;
}

.guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 8px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.guarantee-item span {
  font-weight: 500;
  font-size: 10px;
  color: var(--text-body);
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 10%;
  background-color: #FFFFFF;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #151C23;
}

.highlight-underline {
  position: relative;
  display: inline-block;
  color: #013A70;
  z-index: 1;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  width: 105%;
  height: 6px;
  bottom: 0px;
  left: -2.5%;
  background-color: #0296AF;
  border-radius: 3px;
  transform: rotate(-1.5deg);
  z-index: -1;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #C1E1E6;
  z-index: 1;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  flex: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-content {
  padding-right: 3rem;
  align-items: flex-end;
}

.right-content {
  padding-left: 3rem;
  align-items: flex-start;
}

.text-right {
  text-align: right;
}

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

.timeline-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: #FFFFFF;
  z-index: 2;
}

.timeline-number {
  width: 40px;
  height: 40px;
  background-color: #EAF8FA;
  color: #151C23;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-number.active {
  background-color: #0296AF;
  color: #FFFFFF;
}

.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #151C23;
  margin-bottom: 8px;
}

.timeline-item p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 320px;
}

/* Illustrations */
.illus-box {
  width: 120px;
  height: 70px;
  border-radius: 6px;
  background: #EAF8FA;
  border: 2px solid #A2D0D6;
  display: flex;
  box-sizing: border-box;
}

.illus-1 {
  align-items: flex-end;
  padding: 8px 12px;
  gap: 8px;
}

.illus-1 .bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
}

.illus-1 .bar-1 {
  height: 30%;
  background: #A2D0D6;
}

.illus-1 .bar-2 {
  height: 50%;
  background: #66C4CD;
}

.illus-1 .bar-3 {
  height: 90%;
  background: #0296AF;
}

.illus-2 {
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  gap: 12px;
}

.illus-2 .line {
  height: 6px;
  border-radius: 3px;
  background: #66C4CD;
}

.illus-2 .line-1 {
  width: 100%;
}

.illus-2 .line-2 {
  width: 70%;
}

.illus-3 {
  align-items: center;
  justify-content: center;
  border: 3px solid #66C4CD;
  background: #FFFFFF;
  border-radius: 12px;
  width: 70px;
  height: 70px;
}

.illus-3 .scan-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #66C4CD;
  letter-spacing: 1px;
}

.illus-4 {
  background: transparent;
  border: none;
  flex-wrap: wrap;
  gap: 6px;
  height: auto;
  width: 110px;
}

.illus-4 .grid-box {
  width: 32px;
  height: 20px;
  border-radius: 4px;
}

.gb-blue {
  background: #C8E8EB;
}

.gb-red {
  background: #F8D0D0;
}

.illus-5 {
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
}

.illus-5 svg {
  width: 24px;
  height: 24px;
}

/* Domains Section */
.domains-section {
  background: linear-gradient(90deg, #014358 0%, #2BA6B5 100%);
  padding: 6rem 10%;
}

.domains-header {
  margin-bottom: 3rem;
}

.domains-subtitle {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #A2D0D6;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.domains-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

.domain-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.domain-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.domain-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.domain-count {
  font-size: 11px;
  opacity: 0.7;
  font-weight: 600;
  margin-left: 4px;
}

/* Highlighted state */
.domain-card.highlighted .domain-icon-wrapper {
  background: #EAF8FA;
  color: #0296AF;
}

.domain-card.highlighted .domain-name {
  color: #0296AF;
}

/* Greyed state */
.domain-card.greyed .domain-icon-wrapper {
  background: #F3F4F6;
  color: #9CA3AF;
}

.domain-card.greyed .domain-name {
  color: #6B7280;
}

.domains-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #A2D0D6;
  font-family: var(--font-body);
  font-size: 13px;
}

.domains-footer .info-icon {
  width: 16px;
  height: 16px;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 10%;
  position: relative;
  background: #FAFAFA;
  text-align: center;
}

.pricing-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 150, 175, 0.1) 0%, rgba(2, 150, 175, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.pricing-header {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.early-access-badge {
  background: #EAF8FA;
  color: #0296AF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  justify-self: center;
  max-width: max-content;
}

.pricing-title {
  font-size: 42px;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111827;
}

.pricing-subtitle {
  font-size: 14px;
  color: #6B7280;
  max-width: 600px;
  line-height: 1.6;
}

/* Pricing Card */
.pricing-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.pc-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.pc-header p {
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 12px;
}

.pc-savings-badge {
  background: #0296AF;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.pc-price-block {
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pc-price {
  font-size: 48px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #111827;
  line-height: 1;
}

.pc-old-price {
  font-size: 20px;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 600;
}

.pc-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 24px 0;
}

.pc-included-title {
  font-size: 11px;
  font-weight: 700;
  color: #0296AF;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pc-features li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.pc-icon {
  width: 32px;
  height: 32px;
  background: #EAF8FA;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0296AF;
  flex-shrink: 0;
}

.pc-text h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.pc-text p {
  font-size: 11px;
  color: #6B7280;
  line-height: 1.5;
}

.pc-button {
  display: block;
  width: 100%;
  background: #0296AF;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.pc-button:hover {
  background: #017a8e;
}

.pc-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  color: #9CA3AF;
}

/* Promise Section */
.promise-section {
  padding: 6rem 10%;
  background: #FFFFFF;
}

.promise-header {
  text-align: center;
  margin-bottom: 4rem;
}

.promise-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.promise-header p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.promise-grid {
  display: flex;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.promise-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promise-box {
  padding: 32px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.box-1 {
  border: 2px solid #66C4CD;
  background: #FFFFFF;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.watermark-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 0.4;
  color: #0296AF;
}

.watermark-icon svg {
  width: 80px;
  height: 80px;
}

.box-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #0296AF;
  margin-bottom: 8px;
  line-height: 1;
}

.box-1 .box-number {
  color: #111827;
}

.box-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.box-title svg {
  color: #0296AF;
}

.italic-cyan {
  color: #0296AF;
  font-style: italic;
  font-size: 24px;
  text-transform: uppercase;
}

.box-price {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.box-price .price-new {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.box-price .price-old {
  font-size: 16px;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 600;
}

.box-desc {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.6;
}

.promise-row-bottom {
  display: flex;
  gap: 24px;
}

.box-2,
.box-3 {
  background: #F0FBFF;
  flex: 1;
}

.promise-right {
  flex: 0.8;
  background: #111827;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.doctor-image-container {
  width: 100%;
  height: 100%;
  background: url('doctor.png') center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

/* Learning Section */
.learning-section {
  padding: 6rem 10%;
  background: #FAFAFA;
}

.learning-header {
  text-align: center;
  margin-bottom: 4rem;
}

.learning-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.learning-header p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.learning-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.learning-dashboard-card {
  background: #F3F4F6;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.ld-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ld-title {
  font-size: 11px;
  font-weight: 700;
  color: #111827;
}

.ld-dots {
  display: flex;
  gap: 6px;
}

.ld-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red {
  background: #FF5F56;
}

.dot.yellow {
  background: #FFBD2E;
}

.dot.blue {
  background: #27C93F;
}

.learning-dashboard-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.learning-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.l-feature-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  flex: 1;
}

.lf-icon {
  width: 32px;
  height: 32px;
  background: #0296AF;
  color: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.l-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.l-feature-card p {
  font-size: 11px;
  color: #6B7280;
  line-height: 1.5;
}

.learning-bottom-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 24px auto 0;
}

.lb-stat-card {
  background: #0296AF;
  border-radius: 12px;
  padding: 32px;
  color: #FFFFFF;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #A2D0D6;
}

.lb-stat-card p {
  font-size: 12px;
  color: #EAF8FA;
  line-height: 1.5;
}

.lb-mentor-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-badge {
  background: #EAF8FA;
  color: #0296AF;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.lb-mentor-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.lb-mentor-card p {
  font-size: 11px;
  color: #6B7280;
  line-height: 1.5;
}

.lbm-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EAF8FA;
  color: #0296AF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 10%;
  background: #FFFFFF;
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comparison-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.comparison-header p {
  font-size: 14px;
  color: #6B7280;
}

.table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #E5E7EB;
  font-size: 12px;
}

.compare-table th {
  background: #F9FAFB;
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
  border-bottom: 1px solid #E5E7EB;
}

.compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #E5E7EB;
  color: #111827;
}

.compare-table th.highlight-col {
  color: #0296AF;
  font-weight: 800;
  background: #EAF8FA;
}

.compare-table td.highlight-col {
  background: #F0FBFF;
  font-weight: 600;
}

.compare-table td.cross {
  color: #9CA3AF;
}

.compare-table .check {
  color: #0296AF;
  margin-right: 6px;
  font-weight: bold;
}

.compare-table .x-mark {
  color: #D1D5DB;
  margin-right: 6px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 10%;
  background: #FAFAFA;
}

.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.overline-cyan {
  color: #0296AF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.testi-text-side h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.testi-text-side p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.testi-nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #0296AF;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-btn.prev {
  background: #EAF8FA;
  color: #0296AF;
}

.testi-grid {
  display: flex;
  gap: 24px;
  max-width: 1240px;
  /* 1200px + 40px padding */
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 40px 20px;
  /* Protects top/bottom hover lift and left/right shadows */
  scroll-padding: 0 20px;
  /* CRITICAL: Snaps 20px from edge so shadow is never cut off */
}

.testi-grid::-webkit-scrollbar {
  display: none;
}

.testi-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;

  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  scroll-snap-align: start;
  position: relative;
  border: 1px solid rgba(2, 150, 175, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(2, 150, 175, 0.08);
  border-color: rgba(2, 150, 175, 0.3);
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #0296AF;
  opacity: 0.1;
}

.quote-icon svg {
  width: 48px;
  height: 48px;
}

.stars {
  color: #0296AF;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;

  /* Strict Text Truncation */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #F3F4F6;
  padding-top: 24px;
  margin-top: auto;
  /* Push to bottom to keep card heights perfectly uniform */
}

.profile-img-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #66C4CD 0%, #0296AF 100%);
  flex-shrink: 0;
}

.profile-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
}

.tp-info h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.tp-info span {
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 10%;
  background: #FFFFFF;
}

.faq-container {
  display: flex;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-left {
  flex: 1;
}

.faq-left h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.faq-left p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 2rem;
}

.faq-buttons {
  display: flex;
  gap: 12px;
}

.btn-primary {
  background: #0296AF;
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.btn-outline {
  background: #EAF8FA;
  color: #0296AF;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.faq-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: #EAF8FA;
  color: #0296AF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.faq-a {
  padding: 0 24px 20px;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.6;
  display: none;
}

.faq-item.active {
  border-color: #0296AF;
}

.faq-item.active .faq-a {
  display: block;
}

/* Final CTA Section */
.final-cta-section {
  padding: 8rem 5%;
  text-align: center;
  background: #FFFFFF url('cta-bg.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
}

.cta-icon-wrapper {
  margin-bottom: 24px;
}

.final-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.final-cta-section p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-form-box {
  background: rgba(220, 245, 250, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 32px 40px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.cf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.cf-status {
  color: #111827;
}

.cf-seats {
  color: #FF5F56;
}

.cf-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.cf-progress-fill {
  width: 58%;
  height: 100%;
  background: linear-gradient(90deg, #0296AF 0%, #00D2D3 100%);
  border-radius: 4px;
}

.cf-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #014358 0%, #30B4C4 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.cf-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Ticker Section */
.ticker-section {
  background: #014358;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;

  transform: rotate(-2deg);
  transform-origin: center;
  width: calc(100% + 60px);
  margin-left: -30px;
}

.ticker-content {
  display: inline-flex;
  gap: 40px;
  animation: ticker 30s linear infinite;
  padding-left: 40px;
}

.ticker-item {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.ticker-item svg {
  color: #66C4CD;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

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

  .promise-grid {
    flex-direction: column;
  }

  .learning-grid,
  .learning-bottom-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-container {
    flex-direction: column;
    gap: 32px;
  }

  .promise-right {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 5%;
  }

  .logo {
    height: 20px;
  }

  .cta-button {
    padding: 10px 16px;
    font-size: 10px;
  }

  .hero-section {
    padding: 7rem 5% 4rem;
  }

  .hero-container {
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    flex-basis: auto;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .pricing-banners {
    justify-content: center;
  }

  .hero-form-card-wrapper {
    width: 100%;
    flex-basis: auto;
  }

  .urgency-badge {
    right: 0px;
    top: -12px;
  }

  .pricing-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .pricing-right {
    align-items: center;
  }

  .how-it-works-section {
    padding: 4rem 5%;
  }

  .section-title {
    font-size: 28px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 60px;
    align-items: flex-start;
    margin-bottom: 3rem;
  }

  .timeline-divider {
    position: absolute;
    left: 0;
    top: -4px;
  }

  .timeline-content {
    width: 100%;
  }

  .left-content,
  .right-content {
    padding: 0;
    align-items: flex-start;
  }

  .text-right,
  .text-left {
    text-align: left;
  }

  .illus-box {
    display: none;
  }

  .domains-section {
    padding: 4rem 5%;
  }

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

  .pricing-section,
  .promise-section {
    padding: 4rem 5%;
  }

  .pricing-title,
  .promise-header h2 {
    font-size: 32px;
  }

  .promise-row-bottom {
    flex-direction: column;
  }

  .learning-section,
  .comparison-section,
  .testimonials-section,
  .faq-section {
    padding: 4rem 5%;
  }

  .learning-header h2,
  .comparison-header h2,
  .testi-text-side h2,
  .faq-left h2 {
    font-size: 32px;
  }

  .testi-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .final-cta-section {
    padding: 6rem 5%;
  }

  .final-cta-section h2 {
    font-size: 36px;
  }

  .cta-form-box {
    padding: 24px;
  }

  .testi-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6.5rem 5% 3rem;
  }

  .hero-title {
    font-size: 32px;
  }

  .badge-text {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero-form-card {
    padding: 24px 16px;
    gap: 20px;
  }

  .card-header h2 {
    font-size: 20px;
  }

  .price-large {
    font-size: 30px;
  }

  .guarantees {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .testi-card {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding: 32px 24px;
  }

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

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

  .pricing-card {
    padding: 24px 16px;
  }

  .box-1 {
    padding: 24px;
  }

  .box-title.italic-cyan {
    font-size: 18px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .price-large {
    font-size: 28px;
  }

  .section-title,
  .pricing-title,
  .promise-header h2,
  .learning-header h2,
  .comparison-header h2,
  .testi-text-side h2,
  .faq-left h2,
  .final-cta-section h2 {
    font-size: 28px;
  }

  .final-cta-section {
    padding: 4rem 5%;
  }
}

/* --- 1. Problem Section (Editorial Platinum UI) --- */
.problem-section-editorial {
  padding: 120px 5%;
  background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
  color: #0F172A;
  position: relative;
  overflow: hidden;
}

.problem-section-editorial::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(2, 150, 175, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.editorial-badge {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #DC2626;
  background: #FEE2E2;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.editorial-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 56px;
  line-height: 1.1;
  color: #0F172A;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.text-glow-red {
  color: #DC2626;
  text-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.editorial-subtitle {
  font-size: 20px;
  color: #475569;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 400px;
}

.editorial-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}

.editorial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: rgba(2, 150, 175, 0.2);
  filter: blur(60px);
  z-index: 0;
}

.editorial-illus {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.editorial-illus:hover {
  transform: scale(1.02);
}

.editorial-list {
  display: flex;
  flex-direction: column;
}

.editorial-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.editorial-item:first-child {
  padding-top: 0;
}

.editorial-item:hover {
  transform: translateX(20px);
  border-bottom-color: #94A3B8;
}

.ed-num {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 48px;
  color: #E2E8F0;
  line-height: 1;
  transition: color 0.3s ease;
}

.editorial-item:hover .ed-num {
  color: var(--primary);
}

.ed-content h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 12px;
}

.ed-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.editorial-conclusion {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.ed-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.3), transparent);
}

.editorial-conclusion p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-title {
    font-size: 40px;
  }
}

/* --- 2. Primary Feature Section --- */
.closest-exam-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, #011E3A 0%, #013A70 100%);
  position: relative;
  overflow: hidden;
}

.closest-exam-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 150, 175, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
}

.closest-exam-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-subtitle-aqua {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: 12px;
}

.section-title-light {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 20px;
}

.highlight-aqua {
  color: var(--primary-light);
}

.feature-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.feature-bullets .dot {
  color: var(--primary-light);
}

.feature-subtext {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.6;
}

.feature-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary-aqua {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--primary);
}

.btn-primary-aqua:hover {
  background: var(--primary-light);
  color: #013A70;
  border-color: var(--primary-light);
}

.btn-outline-aqua {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--primary-light);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--primary-light);
  transition: all 0.2s;
}

.btn-outline-aqua:hover {
  background: rgba(132, 246, 255, 0.1);
}

.trust-indicators-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.trust-badge i {
  color: var(--primary-light);
}

.closest-visual {
  position: relative;
}

.report-mockup {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.3s ease;
}

.report-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Responsive Styles for New Sections */
@media (max-width: 992px) {

  .problem-grid,
  .closest-exam-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .report-mockup {
    transform: none;
  }
}

@media (max-width: 768px) {
  .problem-title {
    font-size: 32px;
  }

  .section-title-light {
    font-size: 32px;
  }

  .feature-ctas {
    flex-direction: column;
  }
}


/* --- 4. Razorpay Glassmorphic Bento UI --- */
.rzp-premium-section {
  padding: 120px 5%;
  background: #020617;
  /* Deep slate, almost black */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.rzp-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.rzp-blob {
  position: absolute;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.5;
  animation: blobFloat 10s infinite alternate;
}

.rzp-blob-1 {
  width: 400px;
  height: 400px;
  background: #0ea5e9;
  top: -100px;
  left: -100px;
}

.rzp-blob-2 {
  width: 300px;
  height: 300px;
  background: #8b5cf6;
  bottom: -50px;
  right: 10%;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.rzp-header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.rzp-title {
  font-size: 48px;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.rzp-gradient-text {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rzp-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.rzp-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.rzp-bento-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.rzp-bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(56, 189, 248, 0.1);
}

.rzp-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.rzp-card-small {
  grid-column: span 1;
  grid-row: span 1;
}

.rzp-card-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.rzp-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.rzp-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.rzp-card-inner h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f8fafc;
}

.rzp-card-small h3,
.rzp-card-medium h3 {
  font-size: 20px;
}

.rzp-muted {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.rzp-stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rzp-stats-col {
  flex-direction: column;
  gap: 12px;
}

.rzp-stat {
  font-size: 14px;
  color: #94a3b8;
}

.rzp-stat strong {
  font-size: 20px;
  color: #f8fafc;
  margin-right: 4px;
}

.rzp-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

.rzp-abstract-graphic {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rzp-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.rzp-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 992px) {
  .rzp-bento-grid {
    grid-template-columns: 1fr;
  }

  .rzp-card-large,
  .rzp-card-small,
  .rzp-card-medium {
    grid-column: span 1;
    grid-row: auto;
  }
}

/* --- 5. Interactive Comparison Section --- */
.comparison-section {
  padding: 100px 5%;
  background: #F8F9FA;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.comp-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comp-typical {
  border: 1px solid #E5E7EB;
  opacity: 0.9;
  transform: scale(0.95);
}

.comp-benchmark {
  border: 2px solid var(--primary-light);
  box-shadow: 0 0 50px rgba(2, 150, 175, 0.2);
  transform: translateY(-15px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
  z-index: 2;
}

.comp-benchmark::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light), var(--primary));
  z-index: -1;
  border-radius: 18px;
  opacity: 0.5;
}

.comp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.comp-header {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
  color: #151C23;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #4B5563;
}

.comp-list .icon-x {
  color: var(--danger);
  font-size: 14px;
}

.comp-list .icon-v {
  color: #10B981;
  /* Green */
  font-size: 16px;
}

.comp-benchmark .comp-list li {
  color: #151C23;
  font-weight: 600;
}

/* --- 6. Premium Weakness Detection Section --- */
.weakness-section {
  padding: 120px 5%;
  background: #F8FAFC;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.specialty-card {
  background: linear-gradient(145deg, #FFFFFF, #F8FAFC);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02), 0 10px 25px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #E2E8F0, #CBD5E1);
  transition: all 0.4s ease;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(2, 150, 175, 0.05);
}

.specialty-card:hover::before {
  background: linear-gradient(180deg, #0296AF, #38BDF8);
}

.sp-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sp-icon-small {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 1), 0 4px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
  flex-shrink: 0;
}

.sp-title-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.sp-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.3px;
}

.sp-level {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.sp-score-compact {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}

.text-danger {
  color: #DC2626;
}

.text-success {
  color: #059669;
}

.text-warning {
  color: #D97706;
}

.sp-progress-track {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 100px;
  overflow: hidden;
}

.sp-progress-bar {
  height: 100%;
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-danger {
  background: linear-gradient(90deg, #EF4444, #F87171);
}

.bg-success {
  background: linear-gradient(90deg, #10B981, #34D399);
}

.bg-warning {
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.level-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

.level-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
}

.level-success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.sp-recommendation {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sp-recommendation i {
  color: #94A3B8;
  margin-top: 2px;
}

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

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

  .comp-typical {
    transform: none;
  }

  .comp-benchmark {
    transform: none;
  }
}

/* --- Razorpay-Style Scroll Animations --- */
.scroll-reveal,
.scroll-slide-up,
.scroll-slide-left,
.scroll-slide-right,
.scroll-scale-up {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.scroll-slide-up {
  transform: translateY(40px);
}

.scroll-slide-left {
  transform: translateX(-40px);
}

.scroll-slide-right {
  transform: translateX(40px);
}

.scroll-scale-up {
  transform: scale(0.9);
}

.scroll-slide-up.is-visible,
.scroll-slide-left.is-visible,
.scroll-slide-right.is-visible,
.scroll-scale-up.is-visible,
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* --- SEO Utilities --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

/* --- Form Field Formatting --- */
.registration-form input[type="email"] {
  text-transform: lowercase;
}

/* --- Success Popup Modal --- */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 14, 20, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.success-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-modal {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-modal-overlay.active .success-modal {
  transform: translateY(0) scale(1);
}

.modal-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #EAF8FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.modal-icon-wrapper i {
  font-size: 36px;
  color: #0D9488;
}

.success-modal h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #111827;
  margin-bottom: 12px;
}

.success-modal p {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 32px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-btn-primary {
  display: block;
  width: 100%;
  padding: 14px;
  background: #0296AF;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.modal-btn-primary:hover {
  background: #01788c;
  transform: translateY(-2px);
}

.modal-btn-secondary {
  display: block;
  width: 100%;
  padding: 14px;
  background: #F3F4F6;
  color: #374151;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-btn-secondary:hover {
  background: #E5E7EB;
}


/* --- NEW UI SECTIONS --- */
/* The Reality Section */
.reality-section {
  background: linear-gradient(180deg, #E8F7FB 0%, #FFFFFF 100%);
  padding: 80px 0 0;
  text-align: center;
}

.reality-header .subtitle-teal {
  color: #00A3B4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reality-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-top: 10px;
  margin-bottom: 40px;
}

.text-red {
  color: #E74C3C;
}

.reality-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.rcard {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 300px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 163, 180, 0.08);
}

.rcard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rcard-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.rcard-num {
  background: #E8F7FB;
  color: #00A3B4;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
}

.rcard p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

.reality-banner {
  background: linear-gradient(90deg, #026775 0%, #00C6D3 100%);
  border-radius: 12px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.rb-text {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.btn-white {
  background: #fff;
  color: #00A3B4;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.btn-white:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rb-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

/* The Blueprint Section */
.blueprint-section {
  padding: 80px 0;
  background: #fff;
}

.blueprint-card {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.bc-left {
  background: linear-gradient(135deg, #024653 0%, #0093A3 100%);
  padding: 60px 40px;
  color: #fff;
  flex: 1;
}

.bc-left h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.text-light-teal {
  color: #84F6FF;
}

.bc-left p {
  color: #E5E7EB;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bc-right {
  flex: 1;
  background: #f3f4f6;
}

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

.blueprint-timeline {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
}

.bt-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #E8F7FB;
  border: 1px dashed #00A3B4;
  z-index: 1;
}

.bt-step {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bt-dot {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #00A3B4;
  border-radius: 50%;
  margin-bottom: 20px;
}

.bt-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #f3f4f6;
}

.bt-box-center {
  border: 1px solid #00A3B4;
  box-shadow: 0 10px 30px rgba(0, 163, 180, 0.1);
}

.bt-badge {
  color: #00A3B4;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  background: #E8F7FB;
  padding: 4px 12px;
  border-radius: 16px;
}

.bt-paper {
  font-size: 10px;
  color: #9CA3AF;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.bt-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0 20px;
  color: #111827;
}

.bt-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f3f4f6;
  padding-top: 15px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat strong {
  color: #00A3B4;
  font-size: 16px;
  font-weight: 800;
}

.stat span {
  color: #9CA3AF;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bt-icon-power {
  color: #00A3B4;
  margin-bottom: 15px;
}

.bt-icon-power svg {
  stroke: #00A3B4;
}

/* Improvement Section */
.improvement-section {
  padding: 80px 0;
  background: #fff;
}

.imp-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.imp-left {
  flex: 1;
}

.imp-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-teal {
  color: #00A3B4;
}

.imp-left p {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.imp-scholars {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F9FAFB;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
}

.scholar-avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: #ccc;
  overflow: hidden;
}

.avatar:first-child {
  margin-left: 0;
}

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

.imp-scholars span {
  font-size: 13px;
  font-weight: 600;
  color: #4B5563;
}

.imp-right {
  flex: 1;
}

.dashboard-mockup {
  background: #1B2332;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dash-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.dots {
  display: flex;
  gap: 6px;
  margin-right: 20px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4B5563;
}

.dash-title {
  color: #9CA3AF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dash-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.dc-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.dc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.dc-icon.red {
  background: #FEE2E2;
  color: #EF4444;
}

.dc-icon.green {
  background: #D1FAE5;
  color: #10B981;
}

.dc-icon.yellow {
  background: #FEF3C7;
  color: #F59E0B;
}

.dash-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}

.badge-red {
  background: #FEE2E2;
  color: #EF4444;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.badge-green {
  background: #D1FAE5;
  color: #10B981;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.badge-yellow {
  background: #FEF3C7;
  color: #F59E0B;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.dc-score {
  margin-left: auto;
  font-size: 20px;
  font-weight: 800;
}

.dc-score.red {
  color: #EF4444;
}

.dc-score.green {
  color: #10B981;
}

.dc-score.yellow {
  color: #F59E0B;
}

.dc-progress {
  height: 4px;
  background: #F3F4F6;
  border-radius: 2px;
  margin-bottom: 16px;
}

.dc-progress .bar {
  height: 100%;
  border-radius: 2px;
}

.dc-progress .bar.red {
  background: #EF4444;
}

.dc-progress .bar.green {
  background: #10B981;
}

.dc-progress .bar.yellow {
  background: #F59E0B;
}

.dash-card p {
  font-size: 11px;
  color: #6B7280;
  line-height: 1.4;
  margin: 0;
  display: flex;
  gap: 6px;
}

.dash-card p i {
  margin-top: 2px;
}

.dc-dark {
  background: #111827;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.dc-add-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.dc-dark h5 {
  color: #fff;
  margin-bottom: 6px;
}

.dc-dark p {
  color: #9CA3AF;
  justify-content: center;
  text-align: center;
}

/* Comparison Section Light */
.comparison-light-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.comp-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.comp-left {
  flex: 1;
}

.comp-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.comp-left p {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.6;
}

.comp-right {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.comp-card-benchmark {
  background: linear-gradient(135deg, #74AED6 0%, #4D86A9 100%);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  flex: 1;
  position: relative;
  box-shadow: 0 20px 40px rgba(77, 134, 169, 0.2);
}

.badge-recommended {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}

.comp-card-benchmark h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.comp-card-benchmark ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comp-card-benchmark ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 500;
}

.comp-card-benchmark ul li i {
  background: rgba(255, 255, 255, 0.2);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
}

.comp-card-typical {
  background: #fff;
  border-radius: 16px;
  padding: 50px 30px 30px;
  color: #6B7280;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comp-card-typical h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #9CA3AF;
}

.comp-card-typical ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comp-card-typical ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 500;
}

.comp-card-typical ul li i {
  background: #F3F4F6;
  color: #9CA3AF;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .rb-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .blueprint-card {
    flex-direction: column;
  }

  .blueprint-timeline {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .bt-line {
    display: none;
  }

  .bt-step {
    width: 100%;
  }

  .imp-container,
  .comp-container {
    flex-direction: column;
    text-align: center;
  }

  .comp-right {
    flex-direction: column;
  }

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

  .imp-scholars {
    justify-content: center;
  }
}



/* Tweaks for smaller, more premium spacing */
.reality-section {
  padding: 60px 0 0;
}

.reality-header h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

.rcard {
  padding: 18px 24px;
  width: 280px;
}

.reality-cards {
  gap: 15px;
  margin-bottom: 30px;
}

.reality-banner {
  padding: 16px 30px;
  margin-bottom: 60px;
  max-width: 900px;
}

.blueprint-section {
  padding: 60px 0;
}

.bc-left {
  padding: 40px 30px;
}

.bc-left h2 {
  font-size: 28px;
}

.blueprint-card {
  margin-bottom: 30px;
  max-width: 900px;
}

.bt-box {
  padding: 20px;
  width: 230px;
}

.bt-dot {
  margin-bottom: 15px;
}

.improvement-section {
  padding: 60px 0;
}

.imp-container {
  gap: 40px;
}

.imp-left h2 {
  font-size: 32px;
}

.dashboard-mockup {
  padding: 20px;
}

.dash-card {
  padding: 16px;
}

.dc-top {
  margin-bottom: 12px;
}

.dc-score {
  font-size: 18px;
}

.dash-card h5 {
  font-size: 13px;
}

.comparison-light-section {
  padding: 60px 0;
}

.comp-card-benchmark {
  padding: 24px;
}

.comp-card-typical {
  padding: 40px 24px 24px;
}

/* Dark Comparison Section */
.comparison-dark-section {
  padding: 80px 0;
  background: #3F788B;
  color: #fff;
}

.comparison-dark-section .comp-left h2 {
  color: #fff;
  font-size: 32px;
}

.comparison-dark-section .comp-left p {
  color: #E5E7EB;
}

.dark-typical {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9CA3AF !important;
}

.dark-typical h3 {
  color: #E5E7EB !important;
}

.dark-typical ul li i {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #9CA3AF !important;
}



/* Exact Blueprint Styling Overrides */
.blueprint-card {
  max-width: 100% !important;
  width: 100% !important;
  border-radius: 20px !important;
}

@media (min-width: 1200px) {
  .blueprint-section .container {
    width: 100% !important;
  }
}

.bc-left {
  background: linear-gradient(100deg, #186A7A 0%, #3AD4F1 100%) !important;
}

.bc-left h2 {
  font-size: 40px !important;
}

.text-light-teal {
  color: #A3F3F9 !important;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3) !important;
  padding: 12px 30px !important;
  border-radius: 30px !important;
}

.blueprint-timeline {
  max-width: 100% !important;
  width: 100% !important;
  padding-top: 60px !important;
}

.bt-line {
  border: none !important;
  height: 2px !important;
  background: linear-gradient(90deg, rgba(88, 223, 228, 0) 0%, #58DFE4 50%, rgba(88, 223, 228, 0) 100%) !important;
  box-shadow: 0 0 8px #58DFE4 !important;
  top: 70px !important;
}

.bt-dot {
  background: #fff !important;
  border: 3px solid #58DFE4 !important;
  box-shadow: 0 0 8px #58DFE4 !important;
  width: 14px !important;
  height: 14px !important;
}

.bt-step:nth-child(3) .bt-dot {
  border: 3px solid #6E8DFB !important;
  box-shadow: 0 0 8px #6E8DFB !important;
}

.bt-box {
  width: 300px !important;
  border: 1px solid rgba(88, 223, 228, 0.2) !important;
  box-shadow: 0 15px 40px rgba(88, 223, 228, 0.15) !important;
  padding: 24px !important;
}

.bt-box-center {
  border: 1px solid #fff !important;
  border-top: 4px solid rgba(110, 141, 251, 0.2) !important;
  box-shadow: 0 -4px 20px rgba(110, 141, 251, 0.1), 0 15px 40px rgba(110, 141, 251, 0.1) !important;
}

.bt-icon-power {
  color: #6E8DFB !important;
  background: #F4F7FF !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 15px !important;
}

.bt-icon-power svg {
  stroke: #6E8DFB !important;
}

.bt-box-center h4 {
  color: #007CA8 !important;
}

.bt-box-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 20px !important;
}

.bt-badge {
  background: #E8F7FB !important;
  border: 1px solid rgba(88, 223, 228, 0.3) !important;
  color: #00A3B4 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  margin-bottom: 0 !important;
}

.bt-paper {
  margin-bottom: 0 !important;
}

.bt-box h4 {
  color: #004A5D !important;
  margin-bottom: 30px !important;
}

.stat strong {
  color: #58DFE4 !important;
  font-size: 24px !important;
}



/* Exact Comparison Light Styling Overrides */
.comparison-light-section {
  padding: 120px 0 !important;
  background: #fff url('regular-practice-bg.png') no-repeat center center !important;
  background-size: cover !important;
}

.comp-left h2 {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #0A1128 !important;
  margin-bottom: 24px !important;
}

.text-teal {
  color: #00A3B4 !important;
}

.comp-left p {
  color: #4B5563 !important;
  font-size: 18px !important;
  max-width: 400px;
}

.comp-card-benchmark {
  background: linear-gradient(135deg, #62BDCB 0%, #6E8DFB 100%) !important;
  border-radius: 8px !important;
  padding: 40px !important;
  box-shadow: 0 20px 40px rgba(110, 141, 251, 0.2) !important;
}

.card-head-center {
  text-align: center;
  margin-bottom: 30px;
}

.badge-recommended {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #fff;
  padding: 6px 16px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  margin-bottom: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.comp-card-benchmark h3 {
  font-size: 22px !important;
  font-weight: 700 !important;
}

.comp-card-benchmark ul li {
  font-size: 15px !important;
  margin-bottom: 20px !important;
}

.comp-card-benchmark ul li i {
  background: transparent !important;
  font-size: 18px !important;
}

.comp-card-typical {
  background: #fff !important;
  border-radius: 8px !important;
  padding: 40px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

.comp-card-typical h3 {
  color: #6E9FB0 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-top: 10px !important;
}

.comp-card-typical ul li {
  font-size: 15px !important;
  color: #9CA3AF !important;
  margin-bottom: 20px !important;
}

.comp-card-typical ul li i {
  background: transparent !important;
  color: #9CA3AF !important;
  font-size: 18px !important;
}



/* Overlay for better text visibility */
.comparison-light-section {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('regular-practice-bg.png') no-repeat center center !important;
  background-size: cover !important;
}



/* Exact Comp-Right Layout & Alignment */
.comp-right {
  gap: 30px !important;
  align-items: stretch !important;
}

.comp-card-benchmark,
.comp-card-typical {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 50px 40px !important;
  border-radius: 12px !important;
}

.comp-card-typical {
  /* Align titles vertically by compensating for the badge height in the left card */
  padding-top: 95px !important;
}

.card-head-center {
  width: 100%;
}

.comp-card-benchmark .card-head-center {
  margin-bottom: 40px !important;
}

.comp-card-typical .card-head-center {
  margin-bottom: 40px !important;
}

.badge-recommended {
  display: inline-block !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  padding: 8px 24px !important;
  margin-bottom: 20px !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
}

.comp-card-benchmark h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.comp-card-typical h3 {
  color: #82A2B3 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.comp-card-benchmark ul,
.comp-card-typical ul {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.comp-card-benchmark ul li,
.comp-card-typical ul li {
  font-size: 14px !important;
  margin-bottom: 22px !important;
  font-weight: 500 !important;
}

.comp-card-typical ul li {
  color: #9CA3AF !important;
}

.comp-card-typical ul li i {
  color: #CBD5E1 !important;
}



/* Exact Comp-Right Layout & Alignment FIX */
.comp-right {
  gap: 30px !important;
  align-items: stretch !important;
  justify-content: center !important;
}

.comp-card-benchmark,
.comp-card-typical {
  text-align: center !important;
  padding: 50px 40px !important;
  border-radius: 12px !important;
  flex: 0 0 340px !important;
  /* Fixed width to prevent wrapping */
  box-sizing: border-box !important;
  display: block !important;
  /* Remove flex column */
}

.comp-card-typical {
  padding-top: 50px !important;
  /* Reset padding to equal the left card */
}

.card-head-center {
  width: 100% !important;
  margin-bottom: 40px !important;
  height: 90px !important;
  /* Fixed height to align the bottom of headers */
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.comp-card-benchmark .card-head-center {
  justify-content: flex-start !important;
}

.badge-recommended {
  display: inline-block !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  padding: 8px 24px !important;
  margin-bottom: 20px !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  border-radius: 20px !important;
}

.comp-card-benchmark h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.comp-card-typical h3 {
  color: #82A2B3 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.comp-card-benchmark ul,
.comp-card-typical ul {
  display: inline-block !important;
  /* Just standard inline block */
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: left !important;
  list-style: none !important;
}

.comp-card-benchmark ul li,
.comp-card-typical ul li {
  font-size: 14px !important;
  margin-bottom: 22px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  white-space: nowrap !important;
  /* Force no wrap */
}

.comp-card-typical ul li {
  color: #9CA3AF !important;
}

.comp-card-typical ul li i {
  color: #CBD5E1 !important;
  font-size: 16px !important;
}

.comp-card-benchmark ul li i {
  font-size: 16px !important;
}



/* Exact Comp-Right Background and Padding Fix */
.comp-card-benchmark {
  background: linear-gradient(0deg, rgba(5, 130, 134, 0.24), rgba(5, 130, 134, 0.24)), linear-gradient(125.39deg, #7FE1D4 2.73%, #7D98E5 79.28%) !important;
  border-radius: 8px !important;
}

.comp-card-typical {
  border-radius: 8px !important;
}

.comp-card-benchmark,
.comp-card-typical {
  padding: 50px 24px !important;
  /* Smaller left and right padding */
}



/* Premium Responsiveness Overrides */
@media (max-width: 1100px) {
  .reality-cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 991px) {

  /* General Typography */
  h2 {
    font-size: 32px !important;
  }

  .comp-left h2 {
    font-size: 32px !important;
  }

  .bc-left h2 {
    font-size: 32px !important;
  }

  /* Reality Section */
  .rb-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .rb-content h3 {
    font-size: 20px;
  }

  .rcard {
    width: 100% !important;
    max-width: 340px;
    margin: 0 auto;
  }

  /* Blueprint Section */
  .blueprint-card {
    flex-direction: column !important;
  }

  .bc-left {
    padding: 40px 20px !important;
  }

  .blueprint-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 40px !important;
  }

  .bt-line {
    display: none !important;
  }

  .bt-step {
    width: 100% !important;
    flex-direction: column !important;
  }

  .bt-box {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  /* Improvement Section */
  .imp-container {
    flex-direction: column;
    text-align: center;
  }

  .imp-left {
    padding-bottom: 30px;
  }

  .imp-scholars {
    justify-content: center;
    margin: 0 auto;
  }

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

  /* Comparison Sections */
  .comp-container {
    flex-direction: column;
    text-align: center;
  }

  .comp-left {
    padding-bottom: 40px;
  }

  .comp-left p {
    margin: 0 auto;
  }

  .comp-right {
    flex-direction: column !important;
    align-items: center !important;
  }

  .comp-card-benchmark,
  .comp-card-typical {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding-top: 40px !important;
  }

  .comp-card-typical {
    padding-top: 40px !important;
    margin-top: 20px !important;
  }

  .card-head-center {
    height: auto !important;
    margin-bottom: 20px !important;
    justify-content: center !important;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 28px !important;
  }

  .comp-left h2,
  .bc-left h2 {
    font-size: 28px !important;
  }

  .reality-section {
    padding-top: 40px !important;
  }

  .blueprint-section,
  .improvement-section,
  .comparison-light-section,
  .comparison-dark-section {
    padding: 50px 0 !important;
  }

  .comp-card-benchmark,
  .comp-card-typical {
    padding: 30px 20px !important;
  }

  .bt-box {
    padding: 20px 15px !important;
  }

  .dashboard-mockup {
    padding: 15px !important;
  }
}



/* Body Padding Layout Adjustment */
body {
  padding-left: 10% !important;
  padding-right: 10% !important;
}

@media (max-width: 991px) {
  body {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}



/* Revert body padding and use section margins */
body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

section {
  margin-left: 10% !important;
  margin-right: 10% !important;
}

@media (max-width: 991px) {
  section {
    margin-left: 5% !important;
    margin-right: 5% !important;
  }
}



/* Revert section margins to allow full-width backgrounds */
section {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Apply the 10% spacing to the inner containers instead */
.container {
  padding-left: 10% !important;
  padding-right: 10% !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 991px) {
  .container {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}

/* Dashboard Image Max-Height Adjustment */
.learning-dashboard-card img {
    max-height: 400px !important;
    object-fit: cover !important;
    object-position: top !important;
}

