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

:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fff7ed;
  --orange-mid: #ffedd5;
  --text: #111111;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* NAV */
nav {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

nav .logo-img {
  height: 72px;
}

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

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

/* HERO */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1 1 420px;
  min-width: 420px;
  position: relative;
  z-index: 1;
}

.hero-visual {
  flex: 0 0 680px;
  position: relative;
  z-index: 1;
  margin-right: -80px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 68%);
  border-radius: 50%;
  animation: orb-drift 9s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(249,115,22,0.09) 0%, transparent 68%);
  border-radius: 50%;
  animation: orb-drift 12s ease-in-out infinite alternate-reverse;
  pointer-events: none;
  z-index: 0;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(1.08); }
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f0f0f;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px 7px 12px;
  border-radius: 100px;
  margin-bottom: 30px;
  border: 1px solid rgba(249,115,22,0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.hero-tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.18), transparent);
  animation: tag-shimmer 3.5s ease-in-out infinite;
}

@keyframes tag-shimmer {
  0%   { left: -80%; }
  40%  { left: 140%; }
  100% { left: 140%; }
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(249,115,22,0.5);
  animation: dot-pulse 2s ease-out infinite;
}

@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--text); }

/* CYCLE WORD */
.cycle-wrap {
  display: inline-block;
  overflow: hidden;
}

#cycleWord {
  color: var(--orange);
  display: inline-block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

#cycleWord.exit {
  opacity: 0;
  transform: translateY(-10px);
}

#cycleWord.enter {
  animation: word-in 0.35s ease forwards;
}

@keyframes word-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

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

.stat-num {
  font-weight: 700;
  color: var(--text);
}

.stat-dot {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
}

/* TRUST */
.trust {
  padding: 32px 0;
}

.trust-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-tags span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 12px 22px;
  border-radius: 8px;
  cursor: default;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-width: fit-content;
}

.trust-tags span:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249,115,22,0.25);
}

.tag-more {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(249,115,22,0.12) 4px,
    rgba(249,115,22,0.12) 8px
  ) !important;
  border-color: var(--orange) !important;
  color: var(--orange-dark) !important;
}

.tag-more:hover {
  background-image: none !important;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 20px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--orange); }

.mobile-cta {
  margin-top: 12px;
  text-align: center;
  border-bottom: none;
}

/* DIVIDER */
.divider {
  border: none;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249,115,22,0.25) 15%,
    rgba(249,115,22,0.85) 40%,
    #f97316 50%,
    rgba(249,115,22,0.85) 60%,
    rgba(249,115,22,0.25) 85%,
    transparent 100%
  );
  border-radius: 2px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-orange {
  background-color: var(--orange-light);
  background-image: radial-gradient(circle, #f9731630 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  border-top: 1px solid #fde8d0;
  border-bottom: 1px solid #fde8d0;
}

.label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 52px;
  max-width: 480px;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.step {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}

.step:last-child { border-right: none; }

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

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

/* WHY */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.reason h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.reason p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.plan {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  position: relative;
  background: var(--white);
}

.plan-featured {
  border-color: var(--orange);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2.5px;
  margin-bottom: 8px;
  line-height: 1;
}

.plan-price span {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  color: var(--text);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  background: var(--orange-mid);
  color: var(--orange-dark);
  transition: background 0.2s;
}

.btn-plan:hover { background: #fddbb4; }

.btn-plan-featured {
  background: var(--orange);
  color: var(--white);
}

.btn-plan-featured:hover { background: var(--orange-dark); }

/* CTA SECTION */
.cta-section {
  background: #0f0f0f;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.cta-left {
  flex: 1 1 0;
}

.cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 20px;
}

.cta-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 0;
}

.cta-highlight {
  color: var(--orange);
}

.cta-right {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.cta-stat-item {
  padding: 20px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.cta-stat-item:hover {
  background: rgba(249,115,22,0.08);
}

.cta-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.cta-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.btn-cta-main {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-cta-main:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.cta-sub strong {
  color: rgba(255,255,255,0.65);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-white:hover { opacity: 0.9; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 56px;
  align-items: flex-start;
}

.footer-brand {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-email {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--orange-dark); }

.footer-cols {
  flex: 1;
  display: flex;
  gap: 56px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text);
  margin-bottom: 4px;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

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

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-content { min-width: 0; flex: none; width: 100%; }
  .hero-visual { flex: none; width: 100%; max-width: 540px; margin-right: 0; }
  .cta-inner { flex-direction: column; gap: 40px; }
  .cta-right { flex: none; width: 100%; }
  .cta-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  /* Container */
  .container { padding: 0 20px; }

  /* Nav */
  nav { padding: 16px 0; }
  nav .logo-img { height: 48px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero-inner { gap: 32px; }
  .hero h1 { font-size: 36px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary { width: 100%; text-align: center; }
  .hero-stats { gap: 10px; margin-top: 32px; }
  .hero-visual { max-width: 100%; }

  /* Sections */
  .section { padding: 48px 0; }
  h2 { font-size: 28px; letter-spacing: -1px; }
  .section-sub { font-size: 15px; margin-bottom: 36px; }

  /* Steps */
  .steps { border-radius: 10px; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 24px; }
  .step:last-child { border-bottom: none; }

  /* Reasons */
  .reasons { grid-template-columns: 1fr; gap: 24px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .plan { padding: 24px; }

  /* Trust tags */
  .trust-tags { gap: 8px; }
  .trust-tags span { font-size: 13px; padding: 10px 16px; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-heading { font-size: 30px; letter-spacing: -1px; }
  .cta-stats { grid-template-columns: 1fr 1fr; }
  .cta-stat-num { font-size: 26px; }
  .btn-cta-main { width: 100%; text-align: center; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 36px; padding-top: 40px; padding-bottom: 36px; }
  .footer-brand { flex: none; }
  .footer-cols { flex-wrap: wrap; gap: 28px; justify-content: flex-start; }
  .footer-col { min-width: calc(50% - 14px); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}
