/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF5C00;
  --orange-light: #FF7A2E;
  --dark: #0d0d12;
  --dark2: #14141c;
  --dark3: #1e1e2a;
  --gray: #f4f4f6;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: rgba(0,0,0,.08);
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --font: 'Inter', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .75rem 0;
  transition: all .3s;
}
.nav.scrolled {
  background: rgba(13,13,18,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none; flex: 1;
}
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: .5rem .9rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
  transition: all .15s; cursor: pointer; white-space: nowrap;
}
.nav-link:hover { color: white; background: rgba(255,255,255,.08); }
.nav-link svg { transition: transform .2s; }
.nav-link:hover svg { transform: rotate(180deg); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(20,20,28,.95); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm);
  padding: .5rem; min-width: 180px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s; pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.dropdown-menu a {
  display: block; padding: .5rem .85rem; border-radius: 6px;
  color: rgba(255,255,255,.75); font-size: 13px;
  transition: all .15s;
}
.dropdown-menu a:hover { color: white; background: rgba(255,255,255,.07); }

.nav-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

.btn-ghost {
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  transition: all .15s;
}
.btn-ghost:hover { color: white; background: rgba(255,255,255,.08); }

.btn-primary {
  padding: .55rem 1.25rem; border-radius: var(--radius-sm);
  background: var(--orange); color: white;
  font-size: 14px; font-weight: 600;
  transition: all .15s; display: inline-block;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,92,0,.4); }

.nav-toggle { display: none; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--dark);
  padding: 7rem 0 0;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,92,0,.18) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(79,100,247,.12) 0%, transparent 60%);
}
.hero-inner {
  flex: 1; display: flex; align-items: center; gap: 4rem;
  padding-top: 2rem; padding-bottom: 3rem; position: relative; z-index: 1;
}
.hero-content { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,92,0,.12); border: 1px solid rgba(255,92,0,.25);
  color: #FF8A4D; border-radius: 100px;
  padding: .35rem .9rem; font-size: 13px; font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.1; color: white; margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.gradient-text {
  background: linear-gradient(135deg, #FF5C00 0%, #FF9A5C 50%, #FFD580 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.65); max-width: 480px;
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.btn-hero-primary {
  padding: .85rem 2rem; border-radius: var(--radius-sm);
  background: var(--orange); color: white;
  font-size: 15px; font-weight: 700;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,92,0,.45); }
.btn-hero-ghost {
  padding: .85rem 1.5rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2); color: white;
  font-size: 15px; font-weight: 600; background: rgba(255,255,255,.05);
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }
.hero-note { font-size: 13px; color: rgba(255,255,255,.4); }

/* App mockup */
.hero-visual { flex: 0 0 540px; position: relative; }
.app-mockup {
  background: #1a1a28; border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform .4s;
}
.app-mockup:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.mockup-titlebar {
  display: flex; align-items: center; gap: 6px;
  background: #0f0f1a; padding: .6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.mockup-title { flex: 1; text-align: center; font-size: 12px; color: rgba(255,255,255,.3); }
.mockup-body { display: flex; height: 280px; }
.mockup-sidebar {
  width: 44px; background: #12121e; padding: .75rem .5rem;
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid rgba(255,255,255,.05);
}
.mockup-tool {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,.07);
}
.mockup-tool.active { background: rgba(255,92,0,.3); border: 1px solid rgba(255,92,0,.4); }
.mockup-canvas { flex: 1; display: flex; flex-direction: column; }
.mockup-photo {
  flex: 1; position: relative;
  background: linear-gradient(135deg, #1a3a5c 0%, #2d1b4e 40%, #4a1942 70%, #7a2030 100%);
  overflow: hidden;
}
.photo-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,150,50,.15) 0%, transparent 60%);
}
.photo-overlay-label {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  border-radius: 4px; padding: 2px 8px;
  font-size: 10px; color: rgba(255,255,255,.7); font-family: monospace;
}
.mockup-histogram {
  height: 50px; background: #0f0f1a;
  border-top: 1px solid rgba(255,255,255,.05);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q20 35 40 30 Q60 25 80 15 Q100 5 120 10 Q140 15 160 25 Q180 35 200 50Z' fill='rgba(255,92,0,.2)'/%3E%3Cpath d='M0 50 Q20 35 40 30 Q60 25 80 15 Q100 5 120 10 Q140 15 160 25 Q180 35 200 50' fill='none' stroke='rgba(255,92,0,.5)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.mockup-panels {
  width: 140px; background: #12121e; padding: .6rem;
  border-left: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column; gap: .5rem;
  overflow: hidden;
}
.panel-item { }
.panel-item span { display: block; font-size: 9px; color: rgba(255,255,255,.4); margin-bottom: 3px; }
.panel-slider {
  height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden;
}
.slider-fill { height: 100%; background: linear-gradient(90deg, #FF5C00, #FF9A5C); border-radius: 2px; }

.hero-wave { position: relative; margin-top: auto; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--text); }
.trust-item span { font-size: 13px; color: var(--muted); }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--gray { background: var(--gray); }
.section--dark { background: var(--dark); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
  line-height: 1.2; letter-spacing: -.02em; color: var(--text);
  margin-bottom: .75rem;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ── Features Grid ───────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all .25s;
}
.feature-card:hover {
  border-color: rgba(255,92,0,.2); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card--accent {
  background: linear-gradient(135deg, #fff7f3 0%, #fff3ed 100%);
  border-color: rgba(255,92,0,.15);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── Compare ─────────────────────────────────────────────────────────────── */
.compare-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.compare-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }
.compare-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; font-weight: 500;
}

.price-compare-cards { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.price-card {
  width: 100%; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--border); background: var(--white);
}
.price-card--competitor { opacity: .7; }
.price-card--zoner {
  border-color: rgba(255,92,0,.3); background: #fff7f3;
  box-shadow: 0 8px 32px rgba(255,92,0,.12);
}
.price-card-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .5rem; }
.price-card--zoner .price-card-label { color: var(--orange); }
.price-card-price { font-size: 1.8rem; font-weight: 800; color: var(--text); }
.price-card-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card-total { font-size: 13px; color: var(--muted); margin-top: .25rem; }
.price-vs {
  font-size: 13px; font-weight: 800; color: var(--muted);
  background: var(--gray); border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all .25s;
}
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial--accent {
  background: var(--dark); border-color: transparent;
  color: white;
}
.testimonial--accent p { color: rgba(255,255,255,.75); }
.stars { font-size: 1rem; margin-bottom: .75rem; }
.testimonial p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF9A5C);
  color: white; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { font-size: 14px; display: block; }
.testimonial-author span { font-size: 12px; color: var(--muted); }
.testimonial--accent .testimonial-author span { color: rgba(255,255,255,.5); }

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2rem; position: relative;
  transition: all .25s;
}
.pricing-card:hover { border-color: rgba(255,255,255,.15); transform: translateY(-4px); }
.pricing-card--featured {
  background: rgba(255,92,0,.1); border-color: rgba(255,92,0,.3);
  transform: scale(1.02);
}
.pricing-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .9rem; border-radius: 100px; white-space: nowrap;
}
.pricing-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.pricing-price { font-size: 2.25rem; font-weight: 900; color: white; margin-bottom: .25rem; }
.pricing-period { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.pricing-features li {
  font-size: 14px; color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: .5rem;
}
.pricing-features li::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.btn-pricing-primary {
  display: block; text-align: center; padding: .85rem;
  background: var(--orange); color: white; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; transition: all .2s;
}
.btn-pricing-primary:hover { background: var(--orange-light); box-shadow: 0 6px 20px rgba(255,92,0,.4); }
.btn-pricing-ghost {
  display: block; text-align: center; padding: .85rem;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; transition: all .2s;
}
.btn-pricing-ghost:hover { background: rgba(255,255,255,.07); color: white; border-color: rgba(255,255,255,.3); }

/* ── CTA Section ─────────────────────────────────────────────────────────── */
.cta-section { padding: 5rem 0; background: var(--gray); }
.cta-inner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1040 50%, #2a0a0a 100%);
  border-radius: 24px; padding: 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,92,0,.12) 0%, transparent 70%);
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: 2.25rem; font-weight: 800; color: white; margin-bottom: .75rem; letter-spacing: -.02em; }
.cta-inner p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--dark2); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand p { color: rgba(255,255,255,.4); font-size: 14px; margin-top: .75rem; line-height: 1.6; max-width: 200px; }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  transition: all .15s;
}
.social-links a:hover { background: rgba(255,255,255,.12); color: white; }
.footer-col h4 { color: rgba(255,255,255,.8); font-size: 13px; font-weight: 700; margin-bottom: 1rem; }
.footer-col a {
  display: block; color: rgba(255,255,255,.4); font-size: 13px;
  margin-bottom: .5rem; transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem;
  font-size: 13px; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: .5rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { flex: 0 0 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .compare-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 4px;
    background: none; border: none; cursor: pointer; padding: .5rem;
  }
  .nav-toggle span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }
  .hero-inner { flex-direction: column; padding-top: 3rem; }
  .hero-visual { flex: none; width: 100%; }
  .app-mockup { transform: none; }
  .trust-divider { display: none; }
  .trust-items { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .pricing-card--featured { transform: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 5rem; }
  .hero-title { font-size: 2.25rem; }
  .cta-inner { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
