:root {
  --purple: #460897;
  --purple-dark: #2d0560;
  --purple-light: #6b0dc1;
  --purple-pale: #e8d5f5;
  --yellow: #ffd60a;
  --green: #32d74b;
  --red: #ff3b30;
  --blue: #007aff;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f7;
  --gray-200: #e5e5ea;
  --gray-300: #d1d1d6;
  --gray-400: #c7c7cc;
  --gray-600: #8e8e93;
  --gray-700: #636366;
  --gray-800: #48484a;
  --gray-900: #1c1c1e;
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--purple);
  color: var(--white);
}

/* ============================================
   FLOATING CTA
============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--purple);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-cta.active {
  transform: translateY(0);
}

.floating-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.floating-cta-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.floating-cta-text strong {
  font-size: 18px;
  font-weight: 800;
}

.floating-cta-text span {
  font-size: 14px;
  opacity: 0.9;
}

.floating-cta-btn {
  background: var(--yellow);
  color: var(--purple);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.floating-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 214, 10, 0.4);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 80px 40px 100px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.4;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-logo {
  width: 200px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-highlight {
  color: var(--yellow);
  position: relative;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-tagline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 214, 10, 0.3);
  color: rgba(255, 255, 255, 0.95);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-tagline strong {
  color: var(--yellow);
  font-weight: 800;
}

.hero-cta {
  background: var(--yellow);
  color: var(--purple);
  border: none;
  padding: 20px 48px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(255, 214, 10, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 214, 10, 0.5);
}

.founders-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
}

.founders-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ============================================
   ASSESSMENT TOOLS
============================================ */
.assessment-tools {
  background: var(--purple-dark);
  padding: 60px 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.tool-item {
  background: linear-gradient(135deg, #d0006f, #ff0080);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #fafafa;
}

.tool-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(208, 0, 111, 0.4);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tool-icon i {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  stroke-width: 2.5;
}

.tool-item h3 {
  font-size: 16px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.3;
}

/* ============================================
   SECTION UTILITIES
============================================ */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.white {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.highlight {
  color: var(--purple);
  font-weight: 900;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  padding: 100px 40px;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--purple-pale);
}

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--purple);
}

.testimonial-content p {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-rating {
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-content strong {
  display: block;
  font-size: 16px;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-content span {
  display: block;
  font-size: 14px;
  color: var(--gray-600);
}

/* ============================================
   MISSION
============================================ */
.mission {
  padding: 100px 40px;
  background: var(--gray-50);
  text-align: center;
}

.mission-text {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 60px;
}

.mission-text strong {
  color: var(--purple);
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  border-radius: 16px;
  padding: 40px 32px;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.stat-box.red {
  background: linear-gradient(135deg, #460897, #8524e0);
}

.stat-box.yellow {
  background: linear-gradient(135deg, #460897, #8524e0);
  color: var(--gray-900);
}

.stat-box.green {
  background: linear-gradient(135deg, #460897, #8524e0);
}

.stat-box.blue {
  background: linear-gradient(135deg, #460897, #8524e0);
}

.stat-number {
  font-family: "Urbanist", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.95;
}

/* ============================================
   FEATURES
============================================ */
.features {
  padding: 100px 40px;
  background: var(--white);
}

.features-list {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d0006f, #ff0080);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fafafa;
}

.feature-icon i {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  stroke-width: 2.5;
}

.feature-content h3 {
  font-size: 24px;
  color: var(--purple);
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ============================================
   ADDITIONAL TOOLS
============================================ */
.additional-tools {
  padding: 100px 40px;
  background: var(--purple);
  position: relative;
  overflow: hidden;
}

.additional-tools::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.3;
}

.additional-tools .section-container {
  position: relative;
  z-index: 10;
}

.tools-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.tool-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
}

.tool-card-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tool-card-icon i {
  width: 32px;
  height: 32px;
  stroke: var(--purple);
}

.tool-card-content h3 {
  font-size: 22px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.tool-card-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

/* ============================================
   ACADEMY
============================================ */
.academy {
  padding: 100px 40px;
  background: var(--gray-900);
  text-align: center;
}

.academy-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.academy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.academy-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.academy-stat {
  background: linear-gradient(135deg, #ff3b30, #ff6259);
  border-radius: 16px;
  padding: 32px;
  display: inline-block;
  margin-bottom: 32px;
}

.academy-stat .stat-number {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 8px;
}

.academy-stat .stat-label {
  font-size: 18px;
  color: var(--white);
}

.academy-info p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 24px;
}

.academy-info strong {
  color: var(--yellow);
  font-weight: 800;
}

/* ============================================
   PRICING
============================================ */
.pricing {
  padding: 100px 40px;
  background: var(--gray-50);
}

.pricing-info {
  background: var(--white);
  border: 2px solid var(--purple-pale);
  border-radius: 12px;
  padding: 24px 32px;
  margin: 32px auto;
  max-width: 900px;
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.7;
}

.pricing-info strong {
  color: var(--purple);
  font-weight: 800;
}

.price-old {
  color: var(--gray-600);
  text-decoration: line-through;
}

.price-new {
  color: var(--green);
  font-weight: 800;
  font-size: 20px;
}

/* Economy Table */
.economy-table {
  background: var(--white);
  border: 2px solid var(--purple);
  border-radius: 16px;
  padding: 40px;
  margin: 60px auto;
  max-width: 1200px;
  position: relative;
}

.economy-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.economy-table h3 {
  font-size: 28px;
  color: var(--purple);
  margin-bottom: 12px;
  text-align: center;
}

.economy-subtitle {
  font-size: 16px;
  color: var(--gray-700);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.economy-subtitle strong {
  color: var(--green);
  font-weight: 800;
}

.economy-table table {
  width: 100%;
  border-collapse: collapse;
}

.economy-table th,
.economy-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.economy-table th {
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.economy-table th.highlight-col {
  background: var(--green);
}

.economy-table td {
  font-size: 15px;
  color: var(--gray-800);
}

.economy-table .unit-price {
  font-size: 13px;
  color: var(--gray-600);
}

.economy-table .price-assinante {
  color: var(--purple);
  font-weight: 700;
}

.economy-table .savings {
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
}

.economy-table .best-deal {
  background: rgba(255, 214, 10, 0.1);
}

.economy-table .super-deal {
  background: rgba(50, 215, 75, 0.1);
}

.badge-popular,
.badge-super {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  margin-left: 8px;
  letter-spacing: 0.5px;
}

.badge-popular {
  background: var(--yellow);
  color: var(--purple);
}

.badge-super {
  background: var(--green);
  color: var(--white);
}

.economy-cta {
  background: var(--purple-pale);
  border-left: 4px solid var(--purple);
  padding: 20px 24px;
  margin-top: 32px;
  border-radius: 8px;
}

.economy-cta p {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.7;
  margin: 0;
}

.highlight-green {
  color: var(--green);
  font-weight: 900;
  font-size: 18px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--purple);
  background: linear-gradient(180deg, var(--white) 0%, var(--purple-pale) 100%);
}

.pricing-card.elite {
  border-color: var(--green);
  background: linear-gradient(180deg, var(--white) 0%, rgba(50, 215, 75, 0.1) 100%);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(70, 8, 151, 0.3);
}

.pricing-card.premium {
  border-color: var(--purple-light);
  background: linear-gradient(180deg, var(--white) 0%, rgba(107, 13, 193, 0.1) 100%);
}

.pricing-highlight-box {
  background: linear-gradient(135deg, var(--purple-pale), rgba(232, 213, 245, 0.4));
  border: 2px solid var(--purple);
  border-radius: 16px;
  padding: 32px;
  margin: 32px auto;
  max-width: 900px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.highlight-content h3 {
  font-size: 24px;
  color: var(--purple);
  margin-bottom: 12px;
}

.highlight-content p {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.7;
}

.highlight-content strong {
  color: var(--purple);
  font-weight: 800;
}

.plan-badge.purple {
  background: var(--purple-light);
  color: var(--white);
}

.price-old-small {
  font-size: 14px;
  color: var(--green);
  font-weight: 700;
  margin: 8px 0;
}

.price-divider {
  color: var(--gray-300);
  font-size: 12px;
  margin: 16px 0;
  letter-spacing: 2px;
}

.economy-badge-pro {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
}

.plan-guarantee {
  text-align: center;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
  padding: 16px;
  background: rgba(50, 215, 75, 0.1);
  border-radius: 8px;
  border: 1px solid var(--green);
}

.premium-highlight {
  background: var(--purple-pale);
  border-left: 4px solid var(--purple);
  padding: 16px;
  margin-top: 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
}

.price-value.premium {
  color: var(--purple-light);
}

.plan-button.premium {
  background: var(--purple-light);
}

.plan-button.premium:hover {
  background: var(--purple);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
}

.plan-badge {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.plan-badge.white {
  background: var(--white);
  color: var(--purple);
}

.plan-badge.green {
  background: var(--green);
  color: var(--white);
}

.plan-header h3 {
  font-size: 28px;
  color: var(--purple);
  margin-bottom: 8px;
}

.plan-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-description {
  font-size: 14px;
  color: var(--gray-700);
}

.plan-features {
  margin-bottom: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.feature:last-child {
  border-bottom: none;
}

.feature i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--green);
  margin-top: 2px;
}

.feature.inactive i {
  stroke: var(--red);
}

.feature.highlight i {
  stroke: var(--yellow);
}

.feature span {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
}

.plan-price {
  text-align: center;
  margin-bottom: 24px;
  padding: 24px 0;
  border-top: 2px solid var(--gray-200);
  border-bottom: 2px solid var(--gray-200);
}

.price-label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.price-period {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.price-value {
  font-family: "Urbanist", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 8px;
}

.price-value.primary {
  color: var(--purple-light);
}

.price-value.featured {
  color: var(--purple);
}

.price-value.elite {
  color: var(--green);
}

.price-details {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

.price-installment {
  font-size: 20px;
  color: var(--gray-800);
  font-weight: 700;
  margin: 16px 0;
}

.price-installment span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}

.price-old {
  font-size: 18px;
  color: var(--gray-600);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.economy-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 26px;
}

.plan-button {
  width: 100%;
  background: var(--gray-800);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}

.plan-button.secondary {
  background: var(--red);
}

.plan-button.primary {
  background: var(--purple);
}

.plan-button.featured {
  background: var(--purple);
}

.plan-button.elite {
  background: var(--green);
}

.plan-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.plan-note {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  text-align: center;
}

/* ============================================
   FAQ
============================================ */
.faq {
  padding: 100px 40px;
  background: var(--white);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--purple-pale);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question i {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  padding: 0 28px 28px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.final-cta .section-container {
  position: relative;
  z-index: 10;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: var(--yellow);
  color: var(--purple);
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px rgba(255, 214, 10, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 24px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 214, 10, 0.5);
}

.cta-button.large {
  padding: 20px 60px;
  font-size: 20px;
}

.cta-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--gray-900);
  padding: 60px 40px 40px;
  color: var(--white);
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--purple-light);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--purple-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    display: inline-flex;
  }

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

  .academy-info {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .section-container {
    padding: 0 24px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  .tool-item {
    padding: 24px 16px;
  }

  .tool-icon {
    width: 48px;
    height: 48px;
  }

  .tool-icon i {
    width: 24px;
    height: 24px;
  }

  .tool-item h3 {
    font-size: 14px;
  }

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

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .tools-list {
    grid-template-columns: 1fr;
  }

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

  .economy-table {
    padding: 24px;
    overflow-x: auto;
  }

  .economy-table table {
    min-width: 600px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .floating-cta-content {
    flex-direction: column;
    padding: 16px 24px;
  }

  .floating-cta-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 24px 80px;
  }

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

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

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

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