/* ========================================
   QA LEAD - Landing Page Styles
   ======================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Poppins:wght@400;500;600&display=swap');

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/LufgaRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/LufgaSemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/LufgaBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/LufgaItalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/LufgaBoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Titillium Web', sans-serif;
  background-color: #010521;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.4;
}

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

ul, ol {
  list-style: none;
}

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

section[id] {
  scroll-margin-top: 80px;
}

/* --- CSS Variables --- */
:root {
  --color-bg-primary: #010521;
  --color-bg-secondary: #0b1026;
  --color-bg-card: #151a30;
  --color-bg-card-highlight: #1f2646;
  --color-green: #60cc87;
  --color-purple-light: #627af1;
  --color-purple: #6277f1;
  --color-purple-dark: #5f3af8;
  --color-purple-border: #6042f7;
  --color-text-primary: #ffffff;
  --color-text-secondary: #d4d7ef;
  --color-text-muted: #a7aac2;
  --color-text-green: #60cc87;
  --color-border-card: #6277f1;
  --color-faq-bg: #131314;
  --color-faq-border: #3a3a3a;
  --font-heading: 'Lufga', 'Titillium Web', sans-serif;
  --font-body: 'Titillium Web', sans-serif;
  --max-width: 1216px;
  --glow-shadow: 0px 4px 45.4px 0px rgba(95, 58, 248, 0.8);
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(to bottom, #627af1, #5f3af8);
  color: #ffffff;
  box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
  box-shadow: 0px 6px 55px 0px rgba(95, 58, 248, 0.9);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--color-purple-border);
  box-shadow: var(--glow-shadow);
}

.btn-outline:hover {
  background: rgba(98, 122, 241, 0.1);
}

.btn img, .btn svg {
  width: 24px;
  height: 24px;
}

.btn-small {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-small img {
  width: 18px;
  height: 18px;
}

/* --- Navigation --- */
.navbar {
  background-color: var(--color-bg-primary);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(98, 119, 241, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: var(--max-width);
}

.navbar-logo img {
  height: 31px;
  width: 126px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-text-secondary);
  padding: 10px;
  transition: color 0.2s ease;
  line-height: 1.4;
}

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

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.navbar-hamburger span {
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  padding-top: 71px;
}

.hero-bg {
  position: absolute;
  top: 71px;
  left: 0;
  width: 100%;
  height: 800px;
  z-index: 0;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 132px 0 100px;
  max-width: 656px;
}

.hero-logo img {
  width: 231px;
  height: 56px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.4;
  color: #ffffff;
}

.hero-text h1 .highlight {
  color: var(--color-green);
}

.hero-text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.hero-text p strong {
  font-weight: 700;
  color: var(--color-text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

/* --- Hero Glows --- */
.hero-glow {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: color-dodge;
  opacity: 0.6;
}

.hero-glow img {
  width: 100%;
  height: 100%;
}

.hero-glow-left {
  top: -280px;
  left: -40px;
  width: 1331px;
  height: 1112px;
}

.hero-glow-right {
  top: -90px;
  right: -140px;
  width: 1331px;
  height: 1112px;
}

/* --- Hero Sparkles --- */
.hero-sparkles {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-sparkles img {
  width: 100%;
  height: 100%;
}

.hero-sparkles-left {
  top: 300px;
  left: 120px;
  width: 553px;
  height: 494px;
  opacity: 0.45;
}

.hero-sparkles-right {
  top: 490px;
  right: 0;
  width: 553px;
  height: 494px;
  opacity: 0.45;
}

/* --- Hero Floating Badge (Organização) --- */
.hero-floating-badge {
  position: absolute;
  left: 55%;
  bottom: 190px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 18px;
  background: rgba(194, 183, 194, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.77px solid rgba(255, 255, 255, 1);
  border-radius: 5px;
}

.hero-floating-badge img {
  width: 8px;
  height: 8px;
}

.hero-floating-badge span {
  font-family: 'SF Pro Display', var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-floating-card {
  position: absolute;
  right: 80px;
  bottom: 100px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 33px;
  background: rgba(194, 183, 194, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.4px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.hero-floating-card span {
  font-family: 'SF Pro Display', var(--font-heading);
  font-weight: 600;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-floating-card img {
  width: 33px;
  height: 33px;
}

/* --- Value Props Bar --- */
.value-props {
  background-color: #04091c;
  padding: 30px 0;
}

.value-props .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: nowrap;
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  flex: 0 1 auto;
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(180deg, #627af1 0%, #5f3af8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(43, 127, 255, 0.2), 0 4px 6px rgba(43, 127, 255, 0.2);
}

.value-prop-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.value-prop-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-prop-text h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 22.5px;
  color: #ffffff;
}

.value-prop-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 19.25px;
  white-space: nowrap;
}

/* --- Problems Section --- */
.problems {
  background: linear-gradient(180deg, #0b1026 0%, #070c25 100%);
  padding: 72px 0 120px;
  position: relative;
  overflow: hidden;
}

.problems-glow {
  position: absolute;
  left: 50%;
  top: 208px;
  width: 646px;
  height: 646px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 89, 212, 0.22) 0%, rgba(72, 89, 212, 0.12) 32%, rgba(72, 89, 212, 0) 68%);
  pointer-events: none;
}

.problems-layout {
  position: relative;
  z-index: 1;
}

.problems-header {
  text-align: center;
  margin-bottom: 64px;
}

.problems-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: var(--color-green);
  margin-bottom: 16px;
  max-width: 736px;
  margin-left: auto;
  margin-right: auto;
}

.problems-header p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-muted);
  max-width: 565px;
  margin-left: auto;
  margin-right: auto;
}

.problems-header p strong {
  font-weight: 700;
}

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

.problem-card {
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-border-card);
  border-radius: 16px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 230px;
}

.problem-card:first-child {
  background-color: var(--color-bg-card-highlight);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card-icon img {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}

.problem-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-muted);
}

.problems-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--color-purple-border);
  border-radius: 39px;
  padding: 16px 40px;
  max-width: 530px;
  margin: 0 auto;
  background: rgba(21, 26, 48, 0.7);
  box-shadow: 0 0 22px rgba(95, 58, 248, 0.24), inset 0 0 0 1px rgba(98, 122, 241, 0.1);
}

.problems-cta-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.problems-cta-icon img {
  width: 24px;
  height: 24px;
}

.problems-cta p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-secondary);
}

/* --- Mentor Section --- */
.mentor {
  background:
    radial-gradient(circle at 18% 62%, rgba(31, 42, 111, 0.65) 0%, rgba(6, 11, 36, 0) 28%),
    linear-gradient(180deg, #02052b 0%, #010521 100%);
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden;
}

.mentor-watermark {
  position: absolute;
  left: -6px;
  top: 102px;
  width: 652px;
  height: 561px;
  pointer-events: none;
  opacity: 0.08;
}

.mentor-watermark img {
  width: 100%;
  height: 100%;
  display: block;
}

.mentor-layout {
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

.mentor-image {
  flex-shrink: 0;
  width: 515px;
  height: 725px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2, 7, 28, 0.28);
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mentor-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 496px;
}

.mentor-title {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mentor-tag {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 1.96px;
  line-height: 1.3;
}

.mentor-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-green);
  line-height: 1;
}

.mentor-subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
  margin-top: -12px;
}

.mentor-linkedin {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.mentor-linkedin img {
  width: 24px;
  height: 24px;
}

.mentor-linkedin span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.mentor-bio {
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex: 1;
}

.mentor-bio-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
}

.mentor-bio-text p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.mentor-bio-text p:first-child {
  font-size: 18px;
  line-height: 1.4;
}

.mentor-bio-text p strong {
  font-weight: 700;
}

.mentor-bio-text .quote {
  font-style: italic;
  margin-top: 4px;
}

.mentor-bio-text .quote strong {
  font-weight: 700;
  font-style: italic;
}

.mentor-bio .btn {
  align-self: flex-start;
  padding: 20px 32px;
  gap: 6px;
  box-shadow: 0 4px 45.4px rgba(95, 58, 248, 0.8);
}

.mentor-bio .btn img {
  width: 18px;
  height: 18px;
}

.mentor-trusted {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mentor-trusted-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.4;
}

.mentor-trusted-logos {
  display: flex;
  align-items: center;
  gap: 21px;
}

.mentor-trusted-logos img {
  height: auto;
  width: auto;
}

.mentor-trusted-logos .logo-softplan {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}

.mentor-trusted-logos .logo-multidrop {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mentor-trusted-logos .logo-multidrop img {
  height: 22px;
  width: 35px;
}

.mentor-trusted-logos .logo-multidrop span {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #ffffff;
}

.mentor-trusted-logos .logo-altran {
  height: 18px;
  width: auto;
}

/* --- How It Works Section --- */
.how-it-works {
  background:
    radial-gradient(circle at 18% 62%, rgba(31, 42, 111, 0.65) 0%, rgba(6, 11, 36, 0) 28%),
    linear-gradient(180deg, #02052b 0%, #010521 100%);
  padding: 124px 0 118px;
  position: relative;
  overflow: hidden;
}

.how-it-works-glow {
  position: absolute;
  left: -260px;
  bottom: -280px;
  width: 860px;
  height: 860px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48, 67, 180, 0.28) 0%, rgba(48, 67, 180, 0.08) 35%, rgba(48, 67, 180, 0) 70%);
  pointer-events: none;
}

.how-it-works-stars {
  position: absolute;
  left: 0;
  bottom: 180px;
  width: 380px;
  height: 220px;
  pointer-events: none;
}

.how-it-works-stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(231, 236, 255, 0.6);
  box-shadow: 0 0 10px rgba(98, 122, 241, 0.28);
}

.how-it-works-stars span:nth-child(1) { left: 6px; top: 122px; }
.how-it-works-stars span:nth-child(2) { left: 44px; top: 165px; }
.how-it-works-stars span:nth-child(3) { left: 70px; top: 142px; }
.how-it-works-stars span:nth-child(4) { left: 80px; top: 98px; width: 4px; height: 4px; }
.how-it-works-stars span:nth-child(5) { left: 102px; top: 188px; }
.how-it-works-stars span:nth-child(6) { left: 138px; top: 158px; width: 4px; height: 4px; }
.how-it-works-stars span:nth-child(7) { left: 170px; top: 173px; }
.how-it-works-stars span:nth-child(8) { left: 186px; top: 110px; }
.how-it-works-stars span:nth-child(9) { left: 216px; top: 174px; }
.how-it-works-stars span:nth-child(10) { left: 244px; top: 136px; }
.how-it-works-stars span:nth-child(11) { left: 284px; top: 118px; }
.how-it-works-stars span:nth-child(12) { left: 318px; top: 154px; width: 4px; height: 4px; }

.how-it-works-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
  position: relative;
  z-index: 1;
}

.how-it-works-left {
  flex: 1;
  max-width: 472px;
}

.how-it-works-left h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.15;
  color: var(--color-green);
  margin-bottom: 26px;
}

.how-it-works-left p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  max-width: 471px;
}

.how-it-works-left p strong {
  font-weight: 700;
}

.how-it-works-right {
  flex: 1;
  max-width: 604px;
}

.timeline {
  position: relative;
  padding-left: 66px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, rgba(23, 120, 158, 0.8) 0%, rgba(44, 121, 171, 0.45) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 104px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -64px;
  top: 34px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2f7cad;
  border: 3px solid #60cc87;
  box-shadow: 0 0 0 4px rgba(47, 124, 173, 0.28);
}

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

.timeline-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 32px 34px;
  min-height: 164px;
  box-shadow: 0 18px 40px rgba(2, 5, 23, 0.26);
}

.timeline-phase {
  font-family: var(--font-heading);
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 10px;
}

.timeline-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  color: #ffffff;
  margin-bottom: 10px;
}

.timeline-card p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  color: var(--color-text-muted);
}

/* --- Deliverables Section --- */
.deliverables {
  background: linear-gradient(90deg, #0b1026 0%, #04092a 100%);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}

.deliverables-glow {
  position: absolute;
  right: -260px;
  top: -110px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 96, 255, 0.42) 0%, rgba(70, 96, 255, 0.14) 28%, rgba(70, 96, 255, 0) 66%);
  pointer-events: none;
}

.deliverables-stars {
  position: absolute;
  right: 0;
  top: 160px;
  width: 220px;
  height: 180px;
  pointer-events: none;
}

.deliverables-stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(230, 236, 255, 0.55);
  box-shadow: 0 0 10px rgba(98, 122, 241, 0.22);
}

.deliverables-stars span:nth-child(1) { right: 14px; top: 22px; }
.deliverables-stars span:nth-child(2) { right: 30px; top: 46px; }
.deliverables-stars span:nth-child(3) { right: 62px; top: 18px; }
.deliverables-stars span:nth-child(4) { right: 78px; top: 54px; width: 3px; height: 3px; }
.deliverables-stars span:nth-child(5) { right: 98px; top: 76px; }
.deliverables-stars span:nth-child(6) { right: 118px; top: 34px; }
.deliverables-stars span:nth-child(7) { right: 130px; top: 102px; }
.deliverables-stars span:nth-child(8) { right: 148px; top: 58px; }
.deliverables-stars span:nth-child(9) { right: 166px; top: 90px; width: 3px; height: 3px; }
.deliverables-stars span:nth-child(10) { right: 184px; top: 44px; }
.deliverables-stars span:nth-child(11) { right: 196px; top: 116px; }
.deliverables-stars span:nth-child(12) { right: 208px; top: 70px; }

.deliverables-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  max-width: 1520px;
}

.deliverables-left {
  flex: 0 1 712px;
  max-width: 712px;
}

.deliverables-left h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 32px;
}

.deliverables-left h2 .highlight {
  color: var(--color-green);
}

.deliverables-left > p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  color: var(--color-text-muted);
  margin-bottom: 39px;
  max-width: 712px;
}

.deliverables-left > p strong {
  color: #e2e5f1;
}

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

.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01);
}

.checklist-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.checklist-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}

.deliverables-right {
  flex: 0 1 640px;
  position: relative;
  max-width: 640px;
}

.deliverables-image {
  width: 100%;
  max-width: 640px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 4px solid transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #08102a;
}

.deliverables-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- Results Section --- */
.results {
  background:
    linear-gradient(64deg, #3142b4 0%, #3142b4 33%, #161d45 33.1%, #060b24 100%);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.results-glow {
  position: absolute;
  left: 34%;
  top: 108px;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 122, 241, 0.34) 0%, rgba(98, 122, 241, 0.12) 36%, rgba(98, 122, 241, 0) 72%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.results-brand-mark {
  position: absolute;
  right: -30px;
  top: 126px;
  width: min(42vw, 520px);
  opacity: 0.07;
  pointer-events: none;
}

.results-brand-mark img {
  width: 100%;
}

.results-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 120px;
  position: relative;
  z-index: 1;
}

.results-left {
  flex: 1;
  max-width: 450px;
}

.results-left h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #e1dfe9;
  margin-bottom: 16px;
}

.results-left h2 .highlight {
  color: var(--color-green);
}

.results-left p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: #b0b0b0;
}

.results-left p strong {
  color: #e1dfe9;
}

.results-right {
  flex: 1;
  max-width: 696px;
  position: relative;
  z-index: 1;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 140px;
  row-gap: 40px;
  position: relative;
  padding: 6px 0;
}

.results-grid::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  height: 2px;
  background: rgba(225, 223, 233, 0.45);
}

.result-card {
  padding: 0;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.result-card .value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.result-card .arrow {
  color: #6dd09b;
  margin-right: 10px;
}

.result-card .label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  color: #d1d1d1;
  line-height: 1.5;
}

.results-banner {
  margin-top: 80px;
  background: linear-gradient(180deg, #eeebf2 0%, #e8e4ee 100%);
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.results-banner-mark {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 92px;
  transform: translateY(-50%);
  opacity: 0.12;
  pointer-events: none;
}

.results-banner-mark img {
  width: 100%;
}

.results-banner-text {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  padding-left: 88px;
}

.results-banner-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.5;
  color: #5f4ce0;
  flex-shrink: 0;
}

.results-banner-text p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #262626;
  max-width: 414px;
}

.results-banner-text p strong {
  font-weight: 700;
}

.results-banner-cta {
  flex-shrink: 0;
  padding: 20px 32px;
  font-size: 14px;
  text-transform: uppercase;
  gap: 6px;
}

.results-banner-cta img {
  width: 18px;
  height: 18px;
}

/* --- Testimonials Section --- */
.testimonials {
  background:
    linear-gradient(180deg, #04092a 0%, #0b1026 34%, #0b1026 66%, #04092a 100%);
  padding: 96px 0 92px;
  position: relative;
  overflow: hidden;
}

.testimonials-glow {
  position: absolute;
  left: 50%;
  top: 134px;
  width: 503px;
  height: 503px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 89, 212, 0.18) 0%, rgba(72, 89, 212, 0.09) 34%, rgba(72, 89, 212, 0) 72%);
  pointer-events: none;
}

.testimonials-layout {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4;
  color: var(--color-green);
}

.testimonials-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-bottom: 56px;
}

.testimonials-arrow {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  font-size: 38px;
  line-height: 1;
  opacity: 0.9;
}

.testimonials-arrow:hover {
  opacity: 1;
  transform: scale(1.08);
}

.testimonials-arrow.prev {
  transform: rotate(180deg);
}

.testimonials-arrow.prev:hover {
  transform: rotate(180deg) scale(1.08);
}

.testimonial-stage {
  width: 100%;
  max-width: 843px;
}

.testimonial-stars {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.testimonial-stars span {
  font-size: 18px;
  line-height: 1;
  color: #2952ff;
  text-shadow: 0 0 10px rgba(41, 82, 255, 0.2);
}

.testimonial-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 24px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

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

.testimonial-user-info h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #cccccc;
  text-align: left;
}

.testimonial-user-info p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #7f7f7f;
  text-align: left;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dot.active {
  background: #d9d9d9;
}

/* --- FAQ Section --- */
.faq {
  background-color: var(--color-bg-primary);
  padding: 100px 0;
}

.faq .container {
  max-width: 798px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
}

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

.faq-item {
  background-color: var(--color-faq-bg);
  border: 1.339px solid var(--color-faq-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(98, 119, 241, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  color: #e5e5e5;
}

.faq-question span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #e5e5e5;
  text-align: left;
}

.faq-question img {
  width: 27px;
  height: 27px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question img {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 21px 21px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* --- CTA Section --- */
.cta-section {
  background: #0b1027;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  position: relative;
  max-width: 1360px;
  min-height: 390px;
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid #3e79f0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #080a0d 0%, rgba(8, 12, 13, 0) 100%);
}

.cta-card-glow {
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.52;
}

.cta-card-glow-left {
  left: -430px;
  top: -360px;
  background: radial-gradient(circle, rgba(45, 76, 226, 0.38) 0%, rgba(45, 76, 226, 0.12) 32%, rgba(45, 76, 226, 0) 74%);
}

.cta-card-glow-right {
  right: -340px;
  top: -420px;
  background: radial-gradient(circle, rgba(115, 145, 255, 0.38) 0%, rgba(115, 145, 255, 0.1) 28%, rgba(115, 145, 255, 0) 72%);
}

.cta-card-pattern {
  position: absolute;
  left: 50%;
  top: -150px;
  width: 1014px;
  height: 420px;
  transform: translateX(-50%);
  background-image: radial-gradient(rgba(126, 138, 160, 0.22) 0.7px, transparent 0.7px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0) 74%);
  opacity: 0.42;
  pointer-events: none;
}

.cta-content {
  max-width: 468px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: #d8d8d8;
}

.cta-content p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #7f8186;
  margin-top: 0;
  max-width: 340px;
}

.cta-button {
  padding: 22px 28px;
  border-radius: 100px;
  gap: 6px;
  font-size: 18px;
  box-shadow: 0 5px 60px rgba(95, 58, 248, 0.8);
}

.cta-button img {
  width: 18px;
  height: 18px;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-bg-primary);
  padding: 32px 0;
  border-top: 1px solid rgba(98, 119, 241, 0.15);
  position: relative;
  overflow: hidden;
}

.footer-bg-logo {
  position: absolute;
  bottom: -40px;
  left: -100px;
  width: 800px;
  opacity: 0.03;
  pointer-events: none;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* --- Decorative Elements --- */
.decorative-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 122, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .navbar-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-bg-primary);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(98, 119, 241, 0.15);
    z-index: 999;
  }

  .navbar-nav.active {
    display: flex;
  }

  .navbar-hamburger {
    display: flex;
  }

  .hero-content {
    max-width: 100%;
    padding: 80px 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-floating-card,
  .hero-floating-badge {
    display: none;
  }

  .hero-glow {
    display: none;
  }

  .hero-sparkles {
    display: none;
  }

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

  .problems {
    padding: 72px 0 104px;
  }

  .problems-glow {
    width: 520px;
    height: 520px;
    top: 280px;
  }

  .mentor .container,
  .how-it-works .container,
  .deliverables-layout,
  .results-layout {
    flex-direction: column;
  }

  .mentor {
    padding: 84px 0;
  }

  .mentor-watermark {
    left: -220px;
    top: 220px;
    transform: scale(0.82);
    transform-origin: top left;
  }

  .mentor-image {
    width: 100%;
    max-width: 515px;
    height: 500px;
    margin: 0 auto;
  }

  .mentor-content {
    max-width: 100%;
    gap: 40px;
  }

  .how-it-works-right {
    max-width: 100%;
  }

  .how-it-works {
    padding: 104px 0 96px;
  }

  .how-it-works-glow {
    left: -300px;
    bottom: -360px;
    width: 760px;
    height: 760px;
  }

  .how-it-works-stars {
    bottom: 90px;
  }

  .how-it-works-left {
    max-width: 100%;
  }

  .how-it-works-left h2 {
    font-size: 48px;
  }

  .deliverables {
    padding: 88px 0 96px;
  }

  .deliverables-glow {
    right: -280px;
    top: -120px;
    width: 620px;
    height: 620px;
  }

  .deliverables-stars {
    top: 110px;
  }

  .deliverables-left,
  .deliverables-right {
    max-width: 100%;
  }

  .results {
    padding: 110px 0 96px;
  }

  .results-glow {
    left: 8%;
    top: 40px;
    width: 420px;
    height: 420px;
  }

  .results-brand-mark {
    width: 360px;
    right: -80px;
    top: 220px;
  }

  .results-right {
    max-width: 100%;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48px;
  }

  .results-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-banner-text {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 72px;
    gap: 12px;
  }

  .results-banner-cta {
    align-self: flex-start;
  }

  .testimonials {
    padding: 88px 0;
  }

  .testimonials-glow {
    width: 420px;
    height: 420px;
    top: 120px;
  }

  .testimonials-header {
    margin-bottom: 48px;
  }

  .testimonials-header h2 {
    font-size: 38px;
  }

  .testimonials-carousel {
    gap: 28px;
    margin-bottom: 40px;
  }

  .testimonial-stage {
    max-width: 760px;
  }

  .testimonial-text {
    font-size: 21px;
  }

  .cta-section {
    padding: 88px 0;
  }

  .cta-card {
    min-height: 420px;
    border-radius: 32px;
  }

  .cta-card-pattern {
    width: 860px;
  }

  .cta-content {
    min-height: 420px;
    gap: 32px;
  }

  .cta-content h2 {
    font-size: 38px;
  }

  .cta-content p {
    font-size: 20px;
    margin-top: -12px;
  }

  .cta-button {
    padding: 22px 34px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .value-props .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .value-prop-item {
    width: 100%;
    max-width: 360px;
  }

  .value-prop-text p {
    white-space: normal;
  }

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

  .problems-header h2 {
    font-size: 28px;
  }

  .problems {
    padding: 72px 0 88px;
  }

  .problems-glow {
    display: none;
  }

  .problems-header {
    margin-bottom: 40px;
  }

  .problems-header p {
    font-size: 16px;
    line-height: 1.5;
  }

  .problems-grid {
    margin-bottom: 28px;
  }

  .problem-card {
    min-height: auto;
    padding: 24px;
  }

  .problems-cta {
    padding: 14px 20px;
    gap: 14px;
  }

  .problems-cta p {
    font-size: 16px;
    line-height: 1.5;
  }

  .mentor {
    padding: 72px 0;
  }

  .mentor-watermark {
    display: none;
  }

  .mentor-content {
    gap: 32px;
  }

  .mentor-subtitle {
    margin-top: -8px;
  }

  .mentor-bio {
    gap: 28px;
  }

  .mentor-bio .btn {
    width: 100%;
    justify-content: center;
  }

  .mentor-trusted-logos {
    gap: 12px 20px;
    flex-wrap: wrap;
  }

  .mentor-trusted-logos .logo-softplan {
    width: 100px;
  }

  .mentor-trusted-logos .logo-multidrop span {
    font-size: 18px;
  }

  .mentor-trusted-logos .logo-altran {
    height: 15px;
  }

  .results {
    padding: 64px 0 56px;
  }

  .results-layout {
    gap: 40px;
  }

  .deliverables {
    padding: 56px 0 64px;
  }

  .deliverables-layout {
    gap: 24px;
  }

  .deliverables-glow,
  .deliverables-stars {
    display: none;
  }

  .deliverables-left h2 {
    font-size: 32px;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .deliverables-left > p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .checklist {
    gap: 18px;
  }

  .checklist-item {
    padding: 16px;
    align-items: flex-start;
  }

  .checklist-item span {
    font-size: 16px;
    line-height: 1.5;
  }

  .testimonials {
    padding: 72px 0;
  }

  .testimonials-glow {
    display: none;
  }

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-header h2 {
    font-size: 32px;
  }

  .testimonials-carousel {
    gap: 16px;
    margin-bottom: 28px;
  }

  .testimonial-stars {
    margin-bottom: 20px;
  }

  .testimonial-stars span {
    font-size: 20px;
  }

  .testimonial-text {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .testimonial-user {
    gap: 14px;
  }

  .testimonial-user-info h4 {
    font-size: 18px;
  }

  .testimonial-user-info p {
    font-size: 15px;
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .cta-card-glow {
    width: 520px;
    height: 520px;
    opacity: 0.4;
  }

  .cta-card-glow-left {
    left: -320px;
    top: -260px;
  }

  .cta-card-glow-right {
    right: -260px;
    top: -300px;
  }

  .cta-card-pattern {
    width: 640px;
    height: 360px;
    top: -120px;
  }

  .cta-content {
    min-height: 360px;
    gap: 24px;
    max-width: 320px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 18px;
    margin-top: 0;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 18px;
  }

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

  .how-it-works {
    padding: 88px 0;
  }

  .how-it-works-glow,
  .how-it-works-stars {
    display: none;
  }

  .how-it-works-left h2 {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .how-it-works-left p {
    font-size: 18px;
  }

  .timeline {
    padding-left: 40px;
  }

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

  .timeline-item {
    margin-bottom: 28px;
  }

  .timeline-item::before {
    left: -38px;
    top: 28px;
    width: 14px;
    height: 14px;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(47, 124, 173, 0.22);
  }

  .timeline-card {
    padding: 28px 24px;
    min-height: auto;
  }

  .timeline-phase {
    font-size: 13px;
  }

  .timeline-card h3 {
    font-size: 22px;
  }

  .results-left p {
    font-size: 18px;
  }

  .results-glow,
  .results-brand-mark {
    display: none;
  }

  .results-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .results-grid::after {
    display: none;
  }

  .result-card {
    min-height: auto;
  }

  .result-card .value {
    font-size: 34px;
  }

  .result-card .label {
    font-size: 16px;
  }

  .results-banner {
    padding: 28px 20px;
  }

  .results-banner-text {
    padding-left: 0;
  }

  .results-banner-mark {
    display: none;
  }

  .results-banner-text h3 {
    font-size: 34px;
  }

  .results-banner-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .testimonials-arrow {
    display: none;
  }

  .faq-question span {
    font-size: 16px;
  }

  .footer .container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .btn {
    padding: 16px 24px;
    font-size: 16px;
  }

  .mentor-name {
    font-size: 32px;
  }

  .how-it-works-left h2 {
    font-size: 32px;
  }
}
