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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0B0F2F;
  color: #E0E0E0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
  color: #FFFFFF;
  line-height: 1.2;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.btn-primary {
  background: #6366F1;
  color: white;
}

.btn-primary:hover {
  background: #4F46E5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #A6ADFF;
  border: 2px solid #6366F1;
}

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #8B5CF6;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Sticky CTA Bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 47, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid #6366F1;
  padding: 1rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

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

.sticky-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* Hero Section */
.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #0B0F2F 0%, #1a1f4f 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Big Hook at Top */
.hero-hook {
  text-align: center;
  margin-bottom: 4rem;
}

.hook-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Hero Intro */
.hero-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.hero-left {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.hero-image-small {
  flex-shrink: 0;
}

.hero-image-small img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #6366F1;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.hero-text {
  flex: 1;
}

.hero-headline {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #FFFFFF;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.hero-bullets li {
  padding: 0.5rem 0;
  color: #E0E0E0;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.hero-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #6366F1;
  font-weight: bold;
  font-size: 1.1rem;
}

.hero-cta-text {
  font-size: 1.1rem;
  color: #A6ADFF;
  margin: 0;
  font-weight: 600;
  line-height: 1.6;
}

/* Hero Right (Video Area) */
.hero-right {
  background: rgba(30, 34, 81, 0.5);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.hero-video-placeholder {
  text-align: center;
  color: #8A93C4;
}

.video-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.hero-video-placeholder p {
  font-size: 1.1rem;
  color: #8A93C4;
  margin: 0;
}

/* Audit CTA Section */
.audit-cta-section {
  margin: 4rem auto;
  text-align: center;
  position: relative;
}

/* Simple Arrow */
.arrow-container {
  position: absolute;
  top: 25%;
  left: -140px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.simple-arrow {
  width: 120px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

.arrow-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6366F1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50%) translateX(5px);
  }
}

.audit-card {
  background: linear-gradient(135deg, #1E2251 0%, #252a5f 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  max-width: 650px;
  margin: 0 auto 2rem;
  border: 2px solid #6366F1;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.2);
  position: relative;
}

.audit-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.audit-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.audit-subhead {
  font-size: 1.3rem;
  color: #A6ADFF;
  margin-bottom: 2rem;
  line-height: 1.5;
  font-weight: 600;
}

.audit-process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
}

.step-number {
  background: #6366F1;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-text {
  color: #E0E0E0;
  font-size: 1rem;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
}

.trust-badge {
  font-size: 0.95rem;
  color: #A6ADFF;
  font-weight: 600;
}

.audit-btn {
  margin-bottom: 1.5rem;
  min-width: 250px;
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

.audit-footnote {
  font-size: 0.9rem;
  color: #8A93C4;
  font-style: italic;
  margin: 0;
}

.advanced-link {
  display: inline-block;
  font-size: 0.95rem;
  color: #6366F1;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.advanced-link:hover {
  color: #8B5CF6;
  text-decoration: underline;
}

/* Avatar Split */
.avatar-split {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(166, 173, 255, 0.1);
}

.avatar-split-title {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
  font-weight: 600;
}

.avatar-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.avatar-card {
  background: #1E2251;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}

.avatar-card:hover {
  transform: translateY(-5px);
  border-color: #6366F1;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.avatar-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.avatar-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* Problem Promise Section */
.problem-promise {
  padding: 5rem 0;
  background: #0B0F2F;
}

.problem-callout {
  text-align: center;
  margin-bottom: 2rem;
}

.problem-callout h2 {
  font-size: 2rem;
  color: #FF6B9D;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

.promise {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.promise p {
  font-size: 1.2rem;
  color: #B0B8E0;
  line-height: 1.8;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* Case Studies Visual */
.case-studies-visual {
  background: #0f1338;
  padding: 5rem 0;
}

.case-studies-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.case-study {
  background: linear-gradient(135deg, #1E2251 0%, #252a5f 100%);
  border-radius: 16px;
  padding: 48px;
  max-width: 640px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.case-study:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
  border-color: #6366F1;
}

.industry-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white;
  padding: 8px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.headline {
  margin-top: 40px;
  margin-bottom: 12px;
}

.headline-main {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 8px;
}

.headline-sub {
  font-size: 18px;
  color: #A6ADFF;
  font-weight: 400;
}

.timeframe {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  color: #A6ADFF;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 32px;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.metrics-container {
  display: grid;
  gap: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(11, 15, 47, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.metric-row:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.4);
}

.metric-box {
  text-align: center;
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8A93C4;
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
}

.before .metric-value {
  color: #B0B8E0;
}

.after .metric-value {
  color: #10B981;
}

.change-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.arrow {
  font-size: 24px;
  color: #6366F1;
}

.change-value {
  font-size: 20px;
  font-weight: 700;
  color: #10B981;
  white-space: nowrap;
}

.cta-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid rgba(99, 102, 241, 0.2);
}

.cta-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white;
  text-align: center;
  padding: 18px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.additional-context {
  margin-top: 32px;
  padding: 20px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
  border-left: 4px solid #6366F1;
}

.context-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.context-text {
  font-size: 14px;
  color: #B0B8E0;
  line-height: 1.6;
}

/* Variation 2: Cleaner, More Minimal */
.case-study.variation-2 .metric-row {
  grid-template-columns: 1fr;
  gap: 16px;
}

.case-study.variation-2 .comparison-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.case-study.variation-2 .metric-name {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}

/* Responsive for Case Studies */
@media (max-width: 768px) {
  .case-study {
    padding: 32px 24px;
  }

  .headline-main {
    font-size: 28px;
  }

  .metric-row {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .change-indicator {
    flex-direction: row;
    gap: 8px;
  }

  .case-study.variation-2 .comparison-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Timeline */
.timeline {
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #6366F1;
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-marker {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 1;
  text-align: right;
}

.timeline-marker {
  background: #6366F1;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 1;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #A6ADFF;
}

.timeline-content p {
  color: #B0B8E0;
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #1E2251;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #A6ADFF;
}

.feature-card p {
  color: #B0B8E0;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  background: #0f1338;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #B0B8E0;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #1E2251;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #6366F1;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.pricing-featured {
  border-color: #6366F1;
  background: linear-gradient(135deg, #1E2251 0%, #252a5f 100%);
  transform: scale(1.05);
}

.pricing-featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #6366F1;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-tier {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #A6ADFF;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
}

.price-period {
  font-size: 1.2rem;
  color: #8A93C4;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #B0B8E0;
  border-bottom: 1px solid rgba(166, 173, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: #6366F1;
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: #8A93C4;
  font-size: 0.9rem;
  font-style: italic;
}

/* Guarantee */
.guarantee {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  padding: 4rem 0;
}

.guarantee-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.guarantee-promise {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  line-height: 1.6;
}

.guarantee-terms {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Bonus Stack */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-item {
  background: #1E2251;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  padding-top: 3.5rem;
}

.bonus-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.bonus-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #A6ADFF;
  text-align: center;
}

.bonus-item p {
  color: #B0B8E0;
  text-align: center;
  line-height: 1.6;
}

.scarcity-note {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 1.5rem;
  background: rgba(255, 107, 157, 0.1);
  border-left: 4px solid #FF6B9D;
  border-radius: 8px;
  text-align: center;
}

.scarcity-note p {
  color: #FFB3CD;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.split-content p {
  font-size: 1.1rem;
  color: #B0B8E0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.checkmark-list {
  list-style: none;
  margin-bottom: 2rem;
}

.checkmark-list li {
  padding: 0.75rem 0;
  color: #B0B8E0;
  font-size: 1.05rem;
}

.checkmark-list li::before {
  content: '✓';
  color: #6366F1;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.3rem;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Agency Section */
.agency-section {
  background: #0f1338;
}

.agency-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #B0B8E0;
  max-width: 900px;
  margin: -1rem auto 3rem;
  line-height: 1.8;
}

.agency-pricing {
  max-width: 900px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.agency-plan {
  background: #1E2251;
  padding: 2.5rem;
  border-radius: 12px;
}

.agency-plan h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #A6ADFF;
}

.agency-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.agency-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #8A93C4;
}

.agency-volume, .agency-addons {
  margin-bottom: 1.5rem;
}

.agency-volume p, .agency-addons p {
  color: #B0B8E0;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.agency-guarantee {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  padding: 2.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agency-guarantee h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.agency-guarantee p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.agency-bonuses {
  max-width: 800px;
  margin: 0 auto;
  background: #1E2251;
  padding: 2.5rem;
  border-radius: 12px;
}

.agency-bonuses h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #A6ADFF;
  text-align: center;
}

/* Testimonials */
.testimonials {
  background: #0B0F2F;
}

.testimonials-section {
  background: #0B0F2F;
  padding: 5rem 0;
}

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

.testimonial-card {
  background: #1E2251;
  padding: 2rem 2rem 2rem 2.5rem;
  border-radius: 12px;
  border-left: 4px solid #6366F1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.stars {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: #E0E0E0;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1rem;
}

.quote {
  color: #E0E0E0;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  color: #A6ADFF;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.testimonial-project {
  color: #8A93C4;
  font-size: 0.85rem;
  font-style: italic;
}

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

.testimonial-text {
  color: #E0E0E0;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1rem;
  display: block;
  border: none;
  padding: 0;
}

.testimonial-author {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  background: transparent;
}

.testimonial-author span {
  display: block;
  color: #8A93C4;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.attribution {
  color: #A6ADFF;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
}

/* Expectations */
.expectations {
  background: #0f1338;
}

.expectations-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.expectation-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #1E2251;
  padding: 2rem;
  border-radius: 12px;
}

.expectation-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.expectation-item p {
  color: #B0B8E0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* FAQ */
.faq {
  background: #0B0F2F;
}

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

.faq-item {
  background: #1E2251;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(99, 102, 241, 0.1);
}

.faq-toggle {
  font-size: 1.5rem;
  color: #6366F1;
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: #B0B8E0;
  line-height: 1.7;
}

/* Lead Magnet */
.lead-magnet {
  background: linear-gradient(135deg, #1E2251 0%, #252a5f 100%);
  padding: 5rem 0;
}

.lead-magnet-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.lead-magnet-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lead-magnet-box p {
  font-size: 1.1rem;
  color: #B0B8E0;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lead-magnet-form {
  background: #1E2251;
  padding: 2rem;
  border-radius: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lead-magnet-form input {
  padding: 1rem;
  border: 2px solid #4A5070;
  background: #FFFFFF;
  color: #222222;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}

.lead-magnet-form input:focus {
  outline: none;
  border-color: #6366F1;
}

/* Contact Form */
.contact-section {
  background: #0f1338;
  padding: 5rem 0;
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #B0B8E0;
  margin-top: -1rem;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #1E2251;
  padding: 3rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #E0E0E0;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #4A5070;
  background: #FFFFFF;
  color: #222222;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  margin-top: 1rem;
  color: #A6ADFF;
  text-align: center;
  font-weight: 600;
}

/* Footer */
footer {
  background: #0B0F2F;
  padding: 3rem 0 2rem;
  border-top: 1px solid #1E2251;
}

.footer-content {
  text-align: center;
}

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

.footer-links a {
  color: #A6ADFF;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6366F1;
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-contact p {
  color: #8A93C4;
  font-size: 0.95rem;
}

.footer-note {
  margin-bottom: 1rem;
}

.footer-note p {
  color: #8A93C4;
  font-size: 0.85rem;
  font-style: italic;
}

.footer-copyright {
  color: #6A7090;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hook-headline {
    font-size: 2.5rem;
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-bullets li {
    text-align: left;
  }

  .hero-right {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .hook-headline {
    font-size: 2rem;
  }

  .hero-hook {
    margin-bottom: 3rem;
  }

  .hero-intro {
    grid-template-columns: 1fr;
  }

  .hero-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-image-small img {
    width: 90px;
    height: 90px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

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

  .hero-bullets li {
    font-size: 0.95rem;
  }

  .hero-right {
    min-height: 200px;
  }

  .arrow-container {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }

  .simple-arrow {
    width: 80px;
    height: 30px;
    transform: rotate(90deg);
  }

  .arrow-text {
    font-size: 1rem;
    order: -1;
  }

  .audit-card {
    padding: 2rem 1.5rem;
  }

  .audit-title {
    font-size: 1.8rem;
  }

  .audit-subhead {
    font-size: 1.1rem;
  }

  .audit-process {
    max-width: 100%;
  }

  .process-step {
    padding: 0.6rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .step-text {
    font-size: 0.95rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .audit-btn {
    min-width: auto;
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }

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

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

  .resources-subtitle {
    font-size: 1rem;
  }

  .avatar-cards {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(even) .timeline-marker {
    order: 1;
  }

  .timeline-item:nth-child(even) .timeline-content {
    order: 2;
    text-align: left;
  }

  .timeline-marker {
    justify-self: start;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    order: -1;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-cta-content {
    justify-content: center;
    text-align: center;
  }

  .sticky-cta-text {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

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

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: scale(1.02) translateY(-8px);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-headline {
    font-size: 1.75rem;
  }

  .trust-row {
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
