:root {
  --orange: #fd6220;
  --orange-dark: #d94f17;
  --orange-light: #fff0ea;
  --teal: #04807e;
  --teal-dark: #036261;
  --teal-light: #e0f4f4;
  --cream: #fffcf4;
  --beige: #fffced;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #7a7a9a;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.navbar-brand-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  text-decoration: none;
}

.navbar-brand-logo span {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.45rem 1.4rem !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(253, 98, 32, 0.35);
}

nav.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  background: #fff !important;
}

.hero-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, #fff5f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(253, 98, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(4, 128, 126, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(253, 98, 32, 0.25);
  margin-bottom: 1.5rem;
}

.badge-pill i {
  font-size: 0.7rem;
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 1.2rem;
}

.hero-headline .accent {
  color: var(--orange);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
}

.bullet-list li .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #0aa8a5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bullet-list li .check i {
  color: #fff;
  font-size: 0.6rem;
}

.cta-primary {
  background: linear-gradient(135deg, var(--orange), #ff8a4a);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(253, 98, 32, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(253, 98, 32, 0.45);
  color: #fff;
}

.cta-primary i {
  transition: transform 0.3s;
}

.cta-primary:hover i {
  transform: translateX(4px);
}

.book-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.book-3d {
  position: relative;
  width: 260px;
  height: 340px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-18deg) rotateX(5deg);
  transition: transform 0.5s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.book-3d:hover {
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
}

.book-cover {
  width: 100%;
  height: 100%;
  border-radius: 4px 16px 16px 4px;
  background: linear-gradient(145deg, var(--teal) 0%, #036261 40%, #025050 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.book-cover::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  border-radius: 0 16px 16px 0;
}

.book-cover-badge {
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
  width: fit-content;
}

.book-cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.book-cover-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.book-cover-author {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: auto;
}

.book-spine {
  position: absolute;
  left: -18px;
  top: 4px;
  width: 18px;
  height: 100%;
  background: linear-gradient(to right, #013d3c, #025050);
  border-radius: 4px 0 0 4px;
  transform-origin: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-spine span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-pages {
  position: absolute;
  right: -6px;
  top: 4px;
  width: 10px;
  height: calc(100% - 8px);
  background: repeating-linear-gradient(to right, #f0ede8 0px, #f0ede8 1px, #e8e5e0 1px, #e8e5e0 2px);
  border-radius: 0 2px 2px 0;
  opacity: 0.9;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4s ease-in-out infinite;
}

.float-card:nth-child(1) { top: 10%; right: 0; animation-delay: 0s; }
.float-card:nth-child(2) { top: 50%; right: -10px; animation-delay: 1.3s; }
.float-card:nth-child(3) { bottom: 12%; left: -30px; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-orange .fc-icon {
  background: var(--orange-light);
}

.fc-orange .fc-icon i {
  color: var(--orange);
}

.fc-teal .fc-icon {
  background: var(--teal-light);
}

.fc-teal .fc-icon i {
  color: var(--teal);
}

.float-card .fc-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.float-card .fc-label {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

.lead-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
}

.lead-card,
.lead-info {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lead-card {
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.lead-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--orange-light), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.lead-info {
  background: linear-gradient(180deg, var(--beige), var(--cream));
  border-radius: 16px;
  padding: 2.2rem;
  height: 100%;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.lead-info .right-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.lead-info h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.lead-info p {
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.lead-info .benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.lead-info .benefits li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text-mid);
  font-weight: 600;
}

.lead-info .benefits li .icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.lead-card-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.lead-card-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.lead-card-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.form-control-premium {
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  transition: all 0.25s;
  width: 100%;
}

.form-control-premium:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(4, 128, 126, 0.1);
}

.form-label-premium {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: block;
}

.btn-lead {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), #ff7a40);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(253, 98, 32, 0.35);
  margin-top: 1.4rem;
}

.btn-lead:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(253, 98, 32, 0.45);
}

.trust-line {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.metrics-section {
  padding: 4rem 0;
  background: var(--cream);
}

.metrics-section .section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-align: center;
  margin-bottom: 0.5rem;
}

.metrics-section h2,
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.metric-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.metric-card.mc-orange::after { background: var(--orange); }
.metric-card.mc-teal::after { background: var(--teal); }

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.metric-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-card.mc-orange .metric-icon { background: var(--orange-light); }
.metric-card.mc-orange .metric-icon i { color: var(--orange); font-size: 1.4rem; }
.metric-card.mc-teal .metric-icon { background: var(--teal-light); }
.metric-card.mc-teal .metric-icon i { color: var(--teal); font-size: 1.4rem; }

.metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.learn-section {
  padding: 5rem 0;
  background: var(--beige);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 3rem;
}

.learn-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.learn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--teal-light), transparent);
  transition: height 0.35s;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.learn-card:hover::before { height: 80px; }
.learn-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.learn-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-light), #c0e9e9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  transition: all 0.35s;
}

.learn-card:hover .learn-icon {
  background: linear-gradient(135deg, var(--teal), #0aa8a5);
}

.learn-icon i {
  color: var(--teal);
  font-size: 1.3rem;
  transition: color 0.35s;
}

.learn-card:hover .learn-icon i { color: #fff; }

.learn-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  font-family: 'Poppins', sans-serif;
}

.learn-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.learn-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.about-section {
  padding: 5rem 0;
  background: var(--cream);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  min-height: 440px;
  background: linear-gradient(135deg, #c8e8e8, #f0c5ac);
}

.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
  gap: 1rem;
  padding: 2rem;
}

.about-img-placeholder .avatar-ring {
  width: 320px;
  height: 420px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  padding: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s;
}

.about-img-placeholder .avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
}

.about-img-placeholder .avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.about-img-placeholder .avatar-ring:hover { transform: translateY(-8px) scale(1.02); }
.about-img-placeholder .avatar-ring:hover .avatar-inner img { transform: scale(1.03); }

.founder-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  backdrop-filter: blur(6px);
}

.about-img-placeholder .name-badge {
  background: #fff;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-img-placeholder .role-badge {
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 500;
}

.about-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.about-story {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.achievement-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.achievement-card .ach-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-card .ach-icon i { color: var(--orange); font-size: 1.1rem; }
.achievement-card .ach-num { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); font-family: 'Playfair Display', serif; line-height: 1; }
.achievement-card .ach-desc { font-size: 0.75rem; color: var(--text-mid); font-weight: 500; }

.framework-section { padding: 5rem 0; background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%); }
.step-wrap { display: flex; flex-direction: column; gap: 0; position: relative; }
.step-wrap::before { content: ''; position: absolute; left: 32px; top: 64px; bottom: 64px; width: 2px; background: linear-gradient(to bottom, var(--orange), var(--teal)); border-radius: 2px; z-index: 0; }
.step-item { display: flex; gap: 1.5rem; align-items: flex-start; position: relative; z-index: 1; margin-bottom: 1.5rem; }
.step-num-wrap { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 2.5px solid var(--orange); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(253, 98, 32, 0.2); transition: all 0.35s; }
.step-item:nth-child(even) .step-num-wrap { border-color: var(--teal); box-shadow: 0 4px 20px rgba(4, 128, 126, 0.2); }
.step-num-wrap span { font-weight: 800; font-size: 1.1rem; color: var(--orange); }
.step-item:nth-child(even) .step-num-wrap span { color: var(--teal); }
.step-body { background: #fff; border-radius: var(--radius-md); padding: 1.5rem 1.8rem; box-shadow: var(--shadow-card); border: 1px solid rgba(0, 0, 0, 0.04); flex: 1; transition: all 0.35s; }
.step-body:hover { box-shadow: var(--shadow-hover); transform: translateX(6px); }
.step-body h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; font-family: 'Poppins', sans-serif; }
.step-body p { font-size: 0.88rem; color: var(--text-mid); margin: 0; line-height: 1.65; }

.testi-section { padding: 5rem 0; background: var(--cream); }
.testi-card { background: #fff; border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-card); border: 1px solid rgba(0, 0, 0, 0.04); transition: all 0.35s; height: 100%; position: relative; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testi-quote { font-size: 2.5rem; color: var(--orange); line-height: 1; margin-bottom: 0.5rem; opacity: 0.3; font-family: 'Playfair Display', serif; }
.testi-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; color: #fff; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); line-height: 1.2; }
.testi-role { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }
.testi-stars { color: #f4c430; font-size: 0.75rem; margin-bottom: 1rem; letter-spacing: 0.05em; }

.final-cta-section { padding: 6rem 0; background: linear-gradient(135deg, var(--teal-dark) 0%, #025a58 50%, #013d3c 100%); position: relative; overflow: hidden; }
.final-cta-section::before { content: ''; position: absolute; top: -50%; right: -15%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(253, 98, 32, 0.12), transparent 70%); pointer-events: none; }
.final-cta-section::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 40%; height: 100%; background: radial-gradient(ellipse, rgba(255,255,255,0.04), transparent 70%); pointer-events: none; }
.final-cta-eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(253, 98, 32, 0.9); margin-bottom: 0.75rem; }
.final-cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.final-cta-sub { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7; }
.final-cta-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); padding: 2.5rem; max-width: 480px; margin: 0 auto; }
.form-control-dark { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); padding: 0.85rem 1.1rem; font-size: 0.95rem; font-family: 'Poppins', sans-serif; color: #fff; width: 100%; transition: all 0.25s; }
.form-control-dark::placeholder { color: rgba(255,255,255,0.45); }
.form-control-dark:focus { outline: none; border-color: rgba(253, 98, 32, 0.7); background: rgba(255,255,255,0.15); box-shadow: 0 0 0 4px rgba(253, 98, 32, 0.15); color: #fff; }
.form-label-dark { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 0.4rem; display: block; }
.btn-final { width: 100%; background: linear-gradient(135deg, var(--orange), #ff7a40); color: #fff; border: none; border-radius: 50px; padding: 1rem; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 8px 30px rgba(253, 98, 32, 0.4); margin-top: 1.4rem; }
.btn-final:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(253, 98, 32, 0.55); }
.final-cta-row { display: flex; gap: 2rem; align-items: center; }
.final-cta-left { padding: 1rem; }
.final-cta-right { padding: 1rem; color: rgba(255,255,255,0.95); }
.final-cta-right h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.final-cta-right p { color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.final-cta-right .benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-bottom: 1rem; }
.final-cta-right .benefits li { display: flex; gap: 0.6rem; align-items: flex-start; color: rgba(255,255,255,0.9); font-weight: 700; }
.final-cta-right .benefits li .icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.85rem; flex-shrink: 0; }
.final-cta-testimonial { background: rgba(255,255,255,0.04); padding: 1rem; border-radius: 12px; margin-top: 1rem; display: flex; gap: 0.8rem; align-items: center; }
.final-cta-testimonial .t-avatar { width: 48px; height: 48px; border-radius: 10px; background: linear-gradient(135deg, var(--teal), #0aa8a5); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; }
.final-cta-testimonial .t-text { font-size: 0.9rem; color: rgba(255,255,255,0.9); }

footer { background: #0e0e1a; padding: 3rem 0 2rem; color: rgba(255,255,255,0.6); }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 0.4rem; }
.footer-brand span { color: var(--orange); }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 0; }
.footer-link { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.25s; }
.footer-link:hover { color: var(--orange); }
.social-icon-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; transition: all 0.25s; text-decoration: none; color: rgba(255,255,255,0.6); }
.social-icon-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 2rem 0 1.5rem; }
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

#successToast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: linear-gradient(135deg, var(--teal), #0aa8a5);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: 0 16px 50px rgba(4, 128, 126, 0.35);
  display: none;
  align-items: center;
  gap: 1rem;
  max-width: 340px;
  animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#successToast .toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
  .hero-section { padding: 7rem 0 4rem; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .bullet-list { display: inline-flex; text-align: left; }
  .book-wrap { margin-top: 3rem; min-height: 380px; }
  .book-3d { width: 210px; height: 275px; }
  .float-card:nth-child(3) { left: 0; }
  .step-wrap::before { left: 31px; }
  .final-cta-row { flex-direction: column; text-align: left; }
  .final-cta-right .benefits { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 767.98px) {
  .lead-card { padding: 2rem; }
  .lead-card .lead-right { padding-left: 0; padding-top: 1rem; }
  .lead-info .benefits { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 575.98px) {
  .book-3d { width: 180px; height: 240px; }
  .book-cover-title { font-size: 1.15rem; }
  .lead-card { padding: 1.5rem; }
  .about-img-placeholder .avatar-ring { width: 220px; height: 300px; }
}
