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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #011D26;
  color: #E2CDAC;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(1, 29, 38, 0.95);
  border-bottom: 1px solid rgba(176, 139, 95, 0.2);
  backdrop-filter: blur(8px);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #E2CDAC;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-logo:hover {
  color: #B08B5F;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-link {
  color: #E2CDAC;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: color 0.2s, background 0.2s;
}

.header-link:hover {
  color: #B08B5F;
}

.header-btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background-color: #B08B5F;
  color: #011D26;
  text-decoration: none;
  font-weight: 700;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}

.header-btn:hover {
  background-color: #c49d6a;
  transform: scale(1.03);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #011D26, #022a35, #011D26);
  opacity: 0.85;
  z-index: 10;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#011D26 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.grid-bg-light {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 560px;
  text-align: left;
}

.hero-image-wrap {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #B08B5F;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero: foto do mentor com degradê (surgindo do nada) */
.hero-image-float {
  flex: 1;
  min-width: 300px;
  max-width: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mentor-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

/* Anel e brilho sutil em volta do círculo (fora do clip) */
.mentor-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(176, 139, 95, 0.28);
  pointer-events: none;
}

.mentor-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 139, 95, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.mentor-photo-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E2CDAC;
  box-shadow:
    0 0 0 1px rgba(176, 139, 95, 0.12),
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 70px rgba(176, 139, 95, 0.1);
}

.mentor-float-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

/* Degradê de baixo para cima: transparente embaixo = surge do nada */
.mentor-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, #011D26 0%, rgba(1, 29, 38, 0.85) 25%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.mentor-avatar {
  margin-bottom: 1.5rem;
}

.avatar-circle {
  width: 120px;
  height: 120px;
  margin: 0 0 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #1f2937, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #B08B5F;
  font-size: 2rem;
  font-weight: 700;
  color: #E2CDAC;
  object-fit: cover;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1.0rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.highlight {
  color: #B08B5F;
}

.highlight-text {
  color: #B08B5F;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #E2CDAC;
  margin-bottom: 2rem;
  max-width: 100%;
  font-weight: 300;
}

/* Buttons */
.cta-button {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 2rem;
}

.cta-button.primary {
  background-color: #B08B5F;
  color: #011D26;
  box-shadow: 0 4px 20px rgba(176, 139, 95, 0.35), 0 0 40px rgba(176, 139, 95, 0.08);
}

.cta-button.primary:hover {
  background-color: #c49d6a;
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(176, 139, 95, 0.4), 0 0 50px rgba(176, 139, 95, 0.12);
}

.cta-button.secondary {
  background-color: #011D26;
  color: #B08B5F;
  box-shadow: 0 20px 60px rgba(1, 29, 38, 0.8);
}

.cta-button.secondary:hover {
  background-color: #022a35;
  transform: scale(1.05);
}

.cta-button.large {
  font-size: 1.5rem;
  padding: 1.5rem 4rem;
  margin-top: 3rem;
}

/* Botão CTA de destaque (seção lista de espera) */
.cta-button--standout {
  position: relative;
  font-size: 1.35rem;
  padding: 1.35rem 3.25rem;
  border: 2px solid #B08B5F;
  animation: cta-pulse 2.2s ease-in-out infinite;
}

.cta-button--standout:hover {
  animation: none;
  box-shadow: 0 0 30px rgba(176, 139, 95, 0.5), 0 0 60px rgba(176, 139, 95, 0.25);
  transform: scale(1.06);
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(176, 139, 95, 0.25), 0 0 0 0 rgba(176, 139, 95, 0.4);
  }
  50% {
    box-shadow: 0 6px 28px rgba(176, 139, 95, 0.4), 0 0 0 12px rgba(176, 139, 95, 0);
  }
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.avatar-group {
  display: flex;
  margin-right: 0.5rem;
}

.avatar-small {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #374151, #1f2937);
  border: 2px solid #011D26;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -0.75rem;
}

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

.proof-text {
  font-size: 0.875rem;
  color: #E2CDAC;
}

/* Sections */
.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .highlight {
  position: relative;
  text-shadow: 0 0 40px rgba(176, 139, 95, 0.15);
}

.section-title.center {
  text-align: center;
}

.section-title.large {
  font-size: 4rem;
}

.section-text {
  font-size: 1.25rem;
  color: #E2CDAC;
  line-height: 1.8;
}

.section-text.center {
  text-align: center;
}

.mb-large {
  margin-bottom: 3rem;
}

/* Pain Section */
.pain-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #011D26, #022a35);
  position: relative;
}

.pain-text-block {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: justify;
}

.pain-text {
  color: #E2CDAC;
  font-size: 1.125rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.pain-text:last-child {
  margin-bottom: 0;
}

.pain-text--highlight {
  margin-top: 1.75rem;
  color: #B08B5F;
  font-weight: 600;
}

/* Journey Timeline (Mapa) */
.journey-section {
  padding: 4rem 0;
  background-color: #022a35;
  position: relative;
}

.journey-map {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 2rem auto 0;
  position: relative;
}

.journey-start,
.journey-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.journey-start {
  align-items: flex-start;
  margin-right: -0.5rem;
}

.journey-end {
  align-items: flex-end;
  margin-left: -0.5rem;
}

.journey-pin {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #B08B5F;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.journey-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #B08B5F;
}

.journey-dot.start {
  background-color: #E2CDAC;
  box-shadow: 0 0 0 4px rgba(176, 139, 95, 0.3);
}

.journey-dot.end {
  background-color: #B08B5F;
  box-shadow: 0 0 12px rgba(176, 139, 95, 0.6), 0 0 28px rgba(176, 139, 95, 0.2);
}

.journey-path-wrap {
  flex: 1;
  position: relative;
  height: 100px;
  min-width: 200px;
}

.journey-path-svg {
  width: 100%;
  height: 100%;
  color: rgba(176, 139, 95, 0.7);
}

.journey-path {
  stroke: #B08B5F;
  stroke-width: 3;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.journey-steps {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  pointer-events: none;
}

.journey-step {
  position: absolute;
  transform: translate(-50%, -120%);
  font-size: 0.75rem;
  font-weight: 600;
  color: #E2CDAC;
  opacity: 0.9;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .journey-map {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .journey-path-wrap {
    width: 100%;
    order: 2;
    height: 80px;
  }

  .journey-start {
    order: 1;
    margin-right: 0;
  }

  .journey-end {
    order: 3;
    margin-left: 0;
  }

  .journey-step {
    font-size: 0.6875rem;
  }
}

/* Platform Section */
.platform-section {
  padding: 5rem 0;
  background-color: #011D26;
}

/* Free Content / YouTube Section */
.free-content-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #011D26, #022a35);
}

.free-content-wrapper {
  max-width: 960px;
  margin: 3rem auto 0;
}

.free-content-video {
  background-color: #011D26;
  border-radius: 1rem;
  border: 1px solid rgba(176, 139, 95, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.free-content-aspect-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.free-content-aspect-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.devices-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.device-mockup {
  position: relative;
}

.device-mockup.laptop {
  width: 600px;
  height: 380px;
  background: linear-gradient(to bottom, #374151, #1f2937);
  border-radius: 12px 12px 0 0;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.device-mockup.laptop::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 20px;
  background: linear-gradient(to bottom, #1f2937, #111827);
  border-radius: 0 0 8px 8px;
}

.device-mockup.phone {
  width: 280px;
  height: 560px;
  background: #1f2937;
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 8px solid #374151;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #111827;
  border-radius: 8px;
  overflow: hidden;
}

.platform-preview {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.preview-header {
  height: 40px;
  background: #1e293b;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid #334155;
}

.preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #475569;
}

.preview-content {
  display: flex;
  height: calc(100% - 40px);
}

.preview-sidebar {
  width: 200px;
  background: #1e293b;
  border-right: 1px solid #334155;
  padding: 16px;
}

.preview-main {
  flex: 1;
  padding: 20px;
}

.preview-video {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #B08B5F, #8b6d47);
  border-radius: 8px;
  margin-bottom: 16px;
}

.preview-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-item {
  height: 40px;
  background: #1e293b;
  border-radius: 6px;
}

.platform-preview-mobile {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  padding: 12px;
}

.preview-mobile-header {
  height: 60px;
  background: #1e293b;
  border-radius: 8px;
  margin-bottom: 12px;
}

.preview-mobile-video {
  height: 180px;
  background: linear-gradient(135deg, #B08B5F, #8b6d47);
  border-radius: 8px;
  margin-bottom: 16px;
}

.preview-mobile-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-mobile-item {
  height: 50px;
  background: #1e293b;
  border-radius: 6px;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background-color: #011D26;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: #1f2937;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #B08B5F;
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(176, 139, 95, 0.25);
  border: 2px solid #B08B5F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #B08B5F;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-text {
  color: #E2CDAC;
  line-height: 1.8;
}

.mentor-message {
  margin-top: 1.5rem;
  background-color: #022a35;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #374151;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.message-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #B08B5F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #011D26;
  font-weight: 700;
}

.message-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.message-role {
  font-size: 0.75rem;
  color: #E2CDAC;
}

.message-text {
  font-size: 0.875rem;
  color: #E2CDAC;
}

/* For Who Section */
.for-who-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #011D26, #022a35);
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.for-who-card {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.for-who-card:hover {
  transform: translateY(-5px);
  border-color: #B08B5F;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(176, 139, 95, 0.08);
}

.for-who-number {
  font-size: 3rem;
  font-weight: 900;
  color: #B08B5F;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.for-who-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.for-who-text {
  color: #E2CDAC;
  line-height: 1.8;
}

.for-who-not-block {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(31, 41, 55, 0.35);
  border-radius: 0.5rem;
}

.for-who-not-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #B08B5F;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.for-who-not-text {
  color: #E2CDAC;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

/* Deliverables (O que você recebe) */
.deliverables-section {
  padding: 5rem 0;
  background-color: #011D26;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.deliverables-card {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  transition: border-color 0.3s ease;
}

.deliverables-card:hover {
  border-color: #B08B5F;
}

.deliverables-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #B08B5F;
  margin-bottom: 0.75rem;
}

.deliverables-text {
  color: #E2CDAC;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.deliverables-bonus {
  margin-top: 2rem;
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Access Section */
.access-section {
  padding: 5rem 0;
  background-color: #011D26;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.access-item {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  text-align: center;
  transition: all 0.3s ease;
}

.access-item:hover {
  transform: translateY(-5px);
  border-color: #B08B5F;
  box-shadow: 0 10px 30px rgba(176, 139, 95, 0.2);
}

.access-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(176, 139, 95, 0.25);
  border: 2px solid #B08B5F;
  color: #B08B5F;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.access-text {
  color: #E2CDAC;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* How it works */
.how-section {
  padding: 5rem 0;
  background-color: #011D26;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.how-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(176, 139, 95, 0.08);
  border: 1px solid rgba(176, 139, 95, 0.3);
  border-radius: 1rem;
  transition: border-color 0.3s ease;
}

.how-step:hover {
  border-color: #B08B5F;
}

.how-step-num {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  background-color: #B08B5F;
  color: #011D26;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.how-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #E2CDAC;
}

.how-step-text {
  font-size: 0.9375rem;
  color: #E2CDAC;
  line-height: 1.6;
  opacity: 0.95;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: #B08B5F;
  scroll-margin-top: 90px;
}

.center {
  text-align: center;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #011D26;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #011D26;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-guarantee {
  font-size: 0.9375rem;
  color: #011D26;
  opacity: 0.85;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #022a35, #011D26);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #B08B5F;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background-color: #B08B5F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #011D26;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-course {
  font-size: 0.875rem;
  color: #B08B5F;
}

.testimonial-stars {
  color: #B08B5F;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #E2CDAC;
  line-height: 1.8;
  font-style: italic;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #011D26;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  color: #E2CDAC;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mentor-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, #1f2937, #111827);
  border: 4px solid #B08B5F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  font-weight: 900;
  color: #E2CDAC;
  position: relative;
  overflow: hidden;
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.mentor-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 0;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: #022a35;
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(176, 139, 95, 0.25);
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E2CDAC;
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 1rem;
  color: #E2CDAC;
  line-height: 1.7;
  opacity: 0.95;
}

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Authority Section */
.authority-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #022a35, #011D26);
  text-align: center;
}

.authority-showcase {
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.platform-mockup {
  background-color: #1f2937;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 4px solid #B08B5F;
  box-shadow: 0 25px 50px rgba(176, 139, 95, 0.2);
}

.mockup-screen {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid #374151;
  background: #111827;
}

.mockup-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.mockup-screen-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.mockup-icon {
  font-size: 2.5rem;
  font-weight: 900;
  color: #B08B5F;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.mockup-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.mockup-subtitle {
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background-color: #022a35;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #B08B5F;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #E2CDAC;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #011D26;
  border-top: 1px solid #1f2937;
  padding: 3rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: #E2CDAC;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #B08B5F;
}

.footer-info {
  text-align: center;
  color: #E2CDAC;
  font-size: 0.875rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
}

.footer-copyright {
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-image-wrap {
    order: -1;
    max-width: 100%;
  }

  .hero-image-float {
    order: -1;
    max-width: 100%;
  }

  .mentor-photo-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .avatar-circle {
    margin-left: auto;
    margin-right: auto;
  }

  .social-proof {
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-title.large {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .device-mockup.laptop {
    display: none;
  }

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

  .cta-button {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .cta-button.large {
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
  }
}