:root {
  --primary: #FF6B35;
  --primary-dark: #e55a2b;
  --accent: #FF6B35;
  --success: #10b981;
  --charcoal: #1C1917;
}

/* ===== BASE ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== LAUNCH BANNER ===== */
.launch-banner {
  background: #FF6B35;
  color: white;
  padding: 0.8rem 0;
  text-align: center;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero::before {
    content: '60';
    position: absolute;
    font-size: 30rem;
    font-weight: 900;
    opacity: 0.05;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
}

.logo {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 0.75rem;
}

.logo-60 {
  color: white;
  opacity: 0.85;
  font-size: 3rem;
}

.hero-headline {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .hero-headline {
    font-size: 1.9rem;
  }
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.93;
  margin-bottom: 1.75rem;
}

.cta-button {
  background: #f9f9f9;
  color: #ff6b35;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  box-shadow:
    inset 0 0 5px #ff6b35,
    0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  background: linear-gradient(150deg, #ff6b35 0%, #ff9863 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: white;
}

.cta-button-white {
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-button-white:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: white;
}

.hero-pill {
  display: inline-block;
  margin-top: 1.1rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ===== TEMPLATE FAN ===== */
.template-fan-wrap {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fan-img {
  position: absolute;
  width: 220px;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  transition: transform 0.3s ease;
}

.fan-img-left {
  transform: rotate(-8deg) translate(-80px, 12px);
  z-index: 1;
}

.fan-img-center {
  transform: rotate(0deg) translate(0px, 0px);
  z-index: 3;
}

.fan-img-right {
  transform: rotate(8deg) translate(80px, 12px);
  z-index: 2;
}

.template-fan-wrap:hover .fan-img-left {
  transform: rotate(-12deg) translate(-100px, 18px);
}

.template-fan-wrap:hover .fan-img-right {
  transform: rotate(12deg) translate(100px, 18px);
}

@media (max-width: 991px) {
  .template-fan-wrap {
    height: 200px;
    margin-top: 2rem;
  }

  .fan-img {
    width: 130px;
  }

  .fan-img-left {
    transform: rotate(-7deg) translate(-50px, 8px);
  }

  .fan-img-right {
    transform: rotate(7deg) translate(50px, 8px);
  }
}

/* ===== TEMPLATE GALLERY ===== */
.template-gallery {
  background: #fff;
}

.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #ddd #f8f9fa;
}

.gallery-scroll::-webkit-scrollbar {
  height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.gallery-card {
  scroll-snap-align: start;
  flex: 0 0 160px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
  display: block;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border-color: var(--primary);
  color: inherit;
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.gallery-card-body {
  padding: 0.6rem 0.75rem 0.75rem;
}

.gallery-card-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
  text-transform: capitalize;
}

.badge-free {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.03em;
}

.badge-pro {
  background: #fff3ed;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.03em;
}

/* ===== SOCIAL PROOF STRIP ===== */
.social-proof {
  background: var(--charcoal);
  color: white;
  padding: 4rem 0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: white;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1050;
}

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

@media (max-width: 767px) {
  .sticky-cta {
    top: auto;
    bottom: 0;
    transform: translateY(100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

.sticky-cta-text {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .sticky-cta-text {
    display: none;
  }
}

.sticky-dismiss {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.sticky-dismiss:hover {
  color: white;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(160deg, #fff8f5 0%, #ffffff 100%);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 1.75rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(255, 107, 53, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(255, 107, 53, 0.15);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  color: #FF6B35;
}

.step-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-top: 1rem;
}

.steps-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.steps-row .step-card {
  flex: 1 1 0;
  text-align: center;
}

.steps-connector {
  display: none;
}

@media (min-width: 768px) {
  .steps-row {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .steps-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: #FF6B35;
    font-size: 1.5rem;
    opacity: 0.4;
  }
}

/* ===== WHAT'S INCLUDED ===== */
.feature-card-new {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(255, 107, 53, 0.12);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: #FF6B35;
  transition: background 0.3s ease;
}

.feature-card-new:hover .feature-icon-wrap {
  background: rgba(255, 107, 53, 0.18);
}

.feature-icon-wrap.free {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.feature-card-new:hover .feature-icon-wrap.free {
  background: rgba(16, 185, 129, 0.18);
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  background: #f8f9fa;
  padding: 4rem 0;
}

.comparison-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.comparison-table thead tr {
  background: #1C1917;
  color: white;
}

.comparison-table thead th {
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
}

.comparison-table .feature-col {
  width: 28%;
  color: rgba(255, 255, 255, 0.6);
}

.comparison-table .others-col {
  width: 32%;
  color: rgba(255, 255, 255, 0.75);
}

.comparison-table .cv60-col {
  width: 40%;
  background: var(--primary);
  color: white;
  position: relative;
}

.winner-badge-inline {
  display: inline-block;
  background: white;
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.6rem;
  vertical-align: middle;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s ease;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: #fafafa;
}

.comparison-table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: #333;
}

.comparison-table tbody td:last-child {
  background: rgba(255, 107, 53, 0.04);
  font-weight: 500;
}

.cmp-yes {
  color: #10b981;
  margin-right: 0.4rem;
  font-size: 1rem;
}

.cmp-no {
  color: #ef4444;
  margin-right: 0.4rem;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .comparison-table .feature-col {
    display: none;
  }

  .comparison-table .others-col,
  .comparison-table .cv60-col {
    width: 50%;
  }

  .comparison-table tbody td:first-child {
    display: none;
  }
}

/* ===== ROI STRIP ===== */
.roi-strip {
  background: #1C1917;
  padding: 4rem 0;
  color: white;
}

.roi-side {
  padding: 2rem;
  border-radius: 16px;
}

.roi-bad {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-good {
  background: var(--primary);
}

.roi-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.roi-value {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.roi-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0;
}

.roi-vs {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* ===== FAQ ===== */
.faq-section {
  background: #f8f9fa;
  padding: 5rem 0;
}

.faq-item {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-btn {
  background: white !important;
  color: #1a1a1a !important;
  font-size: 1rem;
  padding: 1.1rem 1.5rem;
  gap: 0.75rem;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--primary) !important;
  background: white !important;
}

.faq-btn::after {
  filter: none;
  color: var(--primary);
}

.faq-btn:not(.collapsed)::after {
  filter: none;
}

.faq-icon {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-btn.collapsed .faq-icon {
  color: #aaa;
}

.faq-body {
  background: white;
  color: #555;
  padding: 0 1.5rem 1.25rem 3.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '60';
  position: absolute;
  font-size: 28rem;
  font-weight: 900;
  opacity: 0.06;
  right: -80px;
  bottom: -60px;
  line-height: 1;
  pointer-events: none;
}

.final-cta-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.final-cta-sub {
  opacity: 0.9;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  opacity: 0.85;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: #111110;
  color: #999;
  padding: 3.5rem 0 0;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  color: #777;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  margin-top: 1rem;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #444;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
