/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --fg: #E8E8E8;
  --fg-muted: #888888;
  --accent: #00FF88;
  --accent-dim: rgba(0, 255, 136, 0.12);
  --accent-glow: rgba(0, 255, 136, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1140px;
  --px: 24px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--accent-glow); }
  50% { box-shadow: 0 0 16px var(--accent-glow), 0 0 32px rgba(0, 255, 136, 0.1); }
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === HERO === */
.hero {
  padding: 140px var(--px) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}
.stat-source {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === PROBLEM === */
.problem {
  padding: 100px var(--px);
  border-top: 1px solid var(--border);
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.problem h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 48px;
  letter-spacing: -1px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
}
.problem-card:hover {
  border-color: rgba(0, 255, 136, 0.2);
}
.problem-icon {
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === WEBSITES SECTION === */
.websites {
  padding: 100px var(--px);
  border-top: 1px solid var(--border);
}
.websites-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.websites-header {
  margin-bottom: 56px;
}
.websites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.website-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s;
}
.website-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 136, 0.2);
}
.website-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.website-feature h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.website-feature p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.websites-cta {
  text-align: center;
}
.websites-cta .btn-pricing {
  display: inline-block;
  width: auto;
  padding: 14px 40px;
}

/* === SERVICES === */
.services {
  padding: 100px var(--px);
  background: var(--bg-card);
}
.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.services-header {
  margin-bottom: 56px;
}
.services-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.services-sub {
  font-size: 17px;
  color: var(--fg-muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 136, 0.2);
}
.service-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === NICHES === */
.niches {
  padding: 100px var(--px);
  border-top: 1px solid var(--border);
}
.niches-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.niches h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -1px;
  margin-bottom: 40px;
}
.niches-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.niche-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.niche-pill:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.niches-note {
  font-size: 15px;
  color: var(--fg-muted);
}

/* === PROCESS === */
.process {
  padding: 100px var(--px);
  background: var(--bg-card);
}
.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.process h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  position: relative;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 120px var(--px);
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.closing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.closing-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.cs-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === FOOTER === */
.footer {
  padding: 48px var(--px);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-email {
  font-size: 13px;
  color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  :root { --px: 20px; }

  .hero { padding: 120px var(--px) 60px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .stat-number { font-size: 56px; }
  .hero-stat { padding: 32px; }

  .problem-grid,
  .services-grid,
  .process-steps,
  .closing-stats,
  .websites-grid {
    grid-template-columns: 1fr;
  }

  .nav-tag { display: none; }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .problem, .services, .niches, .process, .closing, .websites {
    padding: 64px var(--px);
  }
}
/* === PRICING === */
.pricing {
  padding: 100px var(--px);
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-header {
  margin-bottom: 56px;
}
.pricing-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}
.pricing-card--featured:hover {
  border-color: var(--accent);
}
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 600;
}
.pricing-tier-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.pricing-price {
  margin-bottom: 16px;
  line-height: 1;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -2px;
}
.price-period {
  font-size: 18px;
  color: var(--fg-muted);
  margin-left: 4px;
}
.price-note {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-top: -8px;
  margin-bottom: 24px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  min-height: 56px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--fg);
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.btn-pricing:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.btn-pricing--accent {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-pricing--accent:hover {
  background: #00e67a;
  border-color: #00e67a;
}
.pricing-note {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.7;
}
.pricing-link {
  color: var(--accent);
  text-decoration: none;
}
.pricing-link:hover { text-decoration: underline; }

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 64px 0;
}

.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto 0;
}

.pricing-grid--two .pricing-desc {
  min-height: 0;
}

/* === CONTACT === */
.contact {
  padding: 100px var(--px);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-header {
  margin-bottom: 56px;
}
.contact-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.contact-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap { width: 100%; }
.contact-form { width: 100%; }
.form-row { display: flex; gap: 20px; }
.form-row--two > .form-group { flex: 1; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: #555; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg); color: var(--fg); }
.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
  cursor: pointer;
  font-weight: 500;
}
.radio-input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-textarea { min-height: 100px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-top: 4px;
}
.btn-submit:hover { background: #00e67a; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-privacy {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 16px;
}
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 16px;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--accent);
}
.form-success p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}
.contact-aside {
  padding-top: 4px;
}
.aside-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.aside-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.aside-value {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.aside-divider { height: 32px; }
.aside-note {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.aside-email {
  color: var(--accent);
  text-decoration: none;
}
.aside-email:hover { text-decoration: underline; }

/* === NAV LINKS === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.btn-nav {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-nav:hover { background: #00e67a; }

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid--two { grid-template-columns: 1fr; }
  .pricing-divider { margin: 48px 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { flex-direction: column; gap: 0; }
  .contact-aside { order: -1; display: flex; flex-wrap: wrap; gap: 0 24px; }
  .aside-item { flex: 0 0 calc(50% - 12px); }
  .aside-divider, .aside-note { flex: 0 0 100%; }
  .nav-links { gap: 16px; }
  .nav-link { display: none; }
}
