/* Wise Apple Sales Page - High-Converting Styles */

:root {
  --primary: #7bff82;
  --primary-dark: #57b55c;
  --secondary: #081011;
  --surface: #0b1618;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --accent-gold: #b29d60;
  --danger: #ff4444;
  --success: #4ade80;
  --cta-orange: #ff6b00;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--secondary);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
}

.section-subtitle.centered {
  text-align: center;
  margin: 0 auto 32px;
}

.highlight {
  color: var(--primary);
}

.check {
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, rgba(123, 255, 130, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero__eyebrow .pulse {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
  font-size: 42px;
  max-width: 950px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.hero__subtitle-large {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

/* ========================
   SOCIAL PROOF BAR
   ======================== */
.social-proof-bar {
  background: rgba(123, 255, 130, 0.08);
  border-top: 1px solid rgba(123, 255, 130, 0.2);
  border-bottom: 1px solid rgba(123, 255, 130, 0.2);
  padding: 20px 0;
}

.social-proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.proof-items {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.proof-icon {
  font-size: 24px;
}

.watch-demo-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.watch-demo-link:hover {
  opacity: 0.8;
}

.watch-demo-link::before {
  content: "▶";
  font-size: 12px;
}

/* ========================
   WHAT IS SECTION FULL
   ======================== */
.what-is-section-full {
  padding: 64px 0;
  background: rgba(0, 0, 0, 0.4);
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.badge-row {
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  background: rgba(123, 255, 130, 0.15);
  border: 1px solid rgba(123, 255, 130, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.what-is-content .section-title {
  color: var(--accent-gold);
}

.video-placeholder {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.video-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 12px;
  box-shadow: 0 8px 32px rgba(123, 255, 130, 0.4);
}

.play-overlay span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.what-is-lead {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.what-is-lead strong {
  color: var(--primary);
}

.what-is-content p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.what-is-content strong {
  color: var(--primary);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.trust-item svg {
  color: var(--success);
}

.trust-item.stars .stars-display {
  color: #ffc107;
  letter-spacing: 2px;
}

/* Benefits Sidebar Card */
.benefits-card {
  background: rgba(123, 255, 130, 0.06);
  border: 1px solid rgba(123, 255, 130, 0.2);
  border-radius: 16px;
  padding: 24px;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.benefit-row:last-child {
  border-bottom: none;
}

/* ========================
   RESULTS SECTION
   ======================== */
.results-section {
  padding: 64px 0;
  background: var(--surface);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.results-info .section-title {
  color: var(--accent-gold);
  font-size: 28px;
}

.results-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 16px;
}

.result-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.result-check {
  color: var(--primary);
  font-weight: 700;
}

.results-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(123, 255, 130, 0.08);
  border: 1px solid rgba(123, 255, 130, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-card .stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-card .stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.results-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.results-message {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.results-sub {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ========================
   FEATURES SHOWCASE
   ======================== */
.features-showcase {
  padding: 64px 0;
}

.features-showcase .section-title {
  margin-bottom: 8px;
}

.feature-showcase-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-showcase-content {
  flex: 1;
  min-width: 300px;
}

.feature-icon-large {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-name {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-description strong {
  color: var(--text);
}

.feature-description em {
  color: var(--primary);
  font-style: normal;
}

.feature-benefit {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--text);
}

.feature-cta {
  flex-shrink: 0;
}

/* Guarantee Banner */
.guarantee-banner {
  background: linear-gradient(135deg, rgba(123, 255, 130, 0.1) 0%, rgba(178, 157, 96, 0.1) 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.guarantee-icon {
  font-size: 48px;
}

.guarantee-text strong {
  display: block;
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.guarantee-text p {
  color: var(--muted);
  margin: 0;
}

/* ========================
   HOW IT WORKS
   ======================== */
.how-it-works {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--secondary) 100%);
}

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

.how-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.step-card-new {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.step-card-new:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.step-image {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card-new h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.step-card-new p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.step-card-new a {
  color: var(--primary);
  text-decoration: none;
}

.step-card-new a:hover {
  text-decoration: underline;
}

.how-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.how-footer p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ========================
   QUOTES SECTION
   ======================== */
.quotes-section {
  padding: 64px 0;
  background: var(--surface);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.quote-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.quote-card::before {
  content: """;
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 48px;
  font-family: Georgia, serif;
  color: rgba(123, 255, 130, 0.2);
  line-height: 1;
}

.quote-card p {
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  padding-left: 24px;
}

.quote-card cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
  padding-left: 24px;
}

.quote-card cite strong {
  color: var(--primary);
  font-size: 14px;
}

.quote-card cite span {
  color: var(--muted);
  font-size: 12px;
}

.quotes-cta {
  text-align: center;
}

/* ========================
   BEGINNER SECTION
   ======================== */
.beginner-section {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(123, 255, 130, 0.06) 0%, rgba(0, 0, 0, 0) 100%);
  text-align: center;
}

.beginner-grid {
  max-width: 800px;
  margin: 0 auto 32px;
}

.beginner-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.beginner-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  font-size: 15px;
  color: var(--text);
}

/* ========================
   READY SECTION
   ======================== */
.ready-section {
  padding: 64px 0;
  background: var(--secondary);
}

.ready-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.ready-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}

.ready-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--text);
  padding: 16px;
  background: rgba(123, 255, 130, 0.06);
  border-radius: 12px;
}

/* ========================
   ORDER CARD
   ======================== */
.order-card {
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 3px solid var(--primary);
}

.order-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.urgency-banner {
  background: var(--danger);
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  margin: -28px -24px 20px;
  border-radius: 17px 17px 0 0;
}

.product-image {
  text-align: center;
  margin-bottom: 16px;
}

.product-image img {
  max-width: 120px;
  height: auto;
}

.price-display {
  text-align: center;
  margin-bottom: 8px;
}

.price-label {
  font-size: 14px;
  color: #666;
  display: block;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -2px;
}

.price-display.large .price-amount {
  font-size: 56px;
  color: var(--text);
}

.price-period {
  font-size: 18px;
  color: #666;
}

.price-display.large .price-period {
  color: var(--muted);
}

.was-price {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.was-price s {
  color: #999;
}

.discount-badge {
  background: var(--danger);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}

.price-note {
  text-align: center;
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.order-features {
  list-style: none;
  margin-bottom: 20px;
}

.order-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ff9000 0%, #ff6b00 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(255, 144, 0, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 144, 0, 0.5);
}

.cta-main {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.cta-sub {
  display: block;
  font-size: 13px;
  opacity: 0.9;
}

.cta-button.large {
  padding: 24px 32px;
  font-size: 20px;
  max-width: 500px;
  margin: 0 auto 24px;
}

.cta-button.large .cta-main {
  font-size: 22px;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}

.security-badge svg {
  color: var(--success);
}

.payment-methods {
  text-align: center;
  margin: 16px 0;
}

.payment-methods img {
  max-width: 200px;
  opacity: 0.8;
}

.guarantee-badge {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.guarantee-badge strong {
  display: block;
  color: #276749;
  margin-bottom: 4px;
}

.guarantee-badge p {
  font-size: 13px;
  color: #48bb78;
  margin: 0;
}

/* ========================
   FAQ SECTION
   ======================== */
.faq-section {
  padding: 64px 0;
  background: var(--surface);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item a {
  color: var(--primary);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

.faq-item strong {
  color: var(--primary);
}

/* ========================
   GIVING SECTION
   ======================== */
.giving-section {
  padding: 48px 0;
  background: linear-gradient(180deg, rgba(255, 140, 140, 0.06) 0%, rgba(0, 0, 0, 0) 100%);
}

.giving-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.giving-icon {
  font-size: 48px;
  color: #ff9090;
  margin-bottom: 16px;
}

.giving-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.giving-content p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 12px;
}

.giving-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ========================
   FINAL CTA SECTION
   ======================== */
.final-cta {
  padding: 80px 0;
  background: radial-gradient(ellipse at center top, rgba(123, 255, 130, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
}

.final-order-card {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
}

.final-order-card .price-display {
  margin-bottom: 12px;
}

.final-order-card .was-price {
  margin-bottom: 24px;
  color: var(--muted);
}

.guarantee-final {
  display: flex;
  gap: 20px;
  text-align: left;
  background: rgba(123, 255, 130, 0.08);
  border: 1px solid rgba(123, 255, 130, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.guarantee-final svg {
  flex-shrink: 0;
  color: var(--primary);
}

.guarantee-final strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.guarantee-final p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .container.disclaimer {
  margin-top: 24px;
}

.footer p {
  color: var(--muted);
  font-size: 14px;
}

.disclaimer-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  text-align: center;
}

.footer nav {
  display: flex;
  gap: 24px;
}

.footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer nav a:hover {
  color: var(--text);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .what-is-grid {
    grid-template-columns: 1fr;
  }

  .what-is-sidebar {
    max-width: 500px;
    margin: 0 auto;
  }

  .results-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .result-stat {
    justify-content: center;
  }

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

  .ready-pricing {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .feature-showcase-content {
    width: 100%;
  }

  .feature-benefit {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle-large {
    font-size: 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 22px;
  }

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

  .social-proof-bar .container {
    flex-direction: column;
    text-align: center;
  }

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

  .steps-grid,
  .quotes-grid {
    grid-template-columns: 1fr;
  }

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

  .price-amount {
    font-size: 42px;
  }

  .cta-button.large {
    padding: 20px 24px;
  }

  .cta-button.large .cta-main {
    font-size: 18px;
  }

  .guarantee-final {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-final svg {
    margin: 0 auto;
  }

  .guarantee-banner {
    flex-direction: column;
    text-align: center;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .trust-row {
    justify-content: center;
  }
}
