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

:root {
  --bg: #111215;
  --bg-card: #18181c;
  --bg-card-hover: #1e1e24;
  --accent: #d9ff4f;
  --accent-dim: #b8e63a;
  --text-primary: #f0ede8;
  --text-secondary: #8a8880;
  --text-muted: #5a5854;
  --border: #2a2a30;
  --border-light: #222228;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(217, 255, 79, 0.06) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 44ch;
  line-height: 1.7;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.device-browser-bar {
  background: var(--border-light);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
}

.dot:first-child { background: #ff5f57; }
.dot:nth-child(2) { background: #febc2e; }
.dot:nth-child(3) { background: #28c840; }

.site-preview {
  padding: 20px;
}

.preview-hero-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.preview-logo {
  width: 60px;
  height: 16px;
  background: var(--accent);
  border-radius: 3px;
}

.preview-nav {
  display: flex;
  gap: 12px;
}

.preview-nav span {
  width: 36px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
}

.preview-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-headline {
  height: 22px;
  background: var(--text-primary);
  border-radius: 3px;
  width: 80%;
}

.preview-sub {
  height: 12px;
  background: var(--text-muted);
  border-radius: 3px;
  width: 60%;
}

.preview-btn {
  height: 32px;
  background: var(--accent);
  border-radius: 4px;
  width: 140px;
  margin-top: 8px;
}

.speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 255, 79, 0.1);
  border: 1px solid rgba(217, 255, 79, 0.2);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-top: 20px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === PROOF === */
.proof {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 8vw;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.proof-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 12ch;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === PROCESS === */
.process {
  padding: 8rem 8vw;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.process h2, .pricing h2, .closing h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 4rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* === PRICING === */
.pricing {
  padding: 6rem 8vw;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217, 255, 79, 0.04) 0%, transparent 60%),
    var(--bg);
}

.pricing > .section-header,
.process > .section-header,
.closing > .closing-inner,
.promise-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing h2 {
  max-width: 36ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}

.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-dim) inset;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: block;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.plan-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  line-height: 1.5;
}

/* === PROMISE === */
.promise {
  padding: 5rem 8vw;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promise-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.promise-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.promise h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.promise p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 8rem 8vw;
}

.closing-inner {
  max-width: 640px;
}

.closing h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.closing-cta {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--accent) !important;
  font-weight: 700;
  font-style: italic;
}

/* === FOOTER === */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 8vw;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    padding: 6rem 6vw 4rem;
  }

  .hero-content { text-align: center; }
  .lede { margin: 0 auto 2rem; }
  .eyebrow { display: none; }

  .hero-visual { order: -1; }

  .proof-inner {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .proof-divider { display: none; }

  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .step-connector {
    width: 40px;
    height: 20px;
    background: none;
    margin: 0;
    position: relative;
  }

  .step-connector::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100%;
    background: var(--border);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* === CTA BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-decoration: none;
}

.btn-primary:hover { background: var(--accent-dim); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.hero-cta {
  margin-top: 2rem;
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-cta {
  margin-top: 2rem;
}

/* === CONTACT FORM === */
.contact-form-section {
  padding: 8rem 8vw;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.contact-form-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-header { text-align: center; margin-bottom: 3rem; }
.contact-form-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.contact-form-header p { color: var(--text-secondary); font-size: 1rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8880' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -0.5rem;
}

.form-success {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 3rem 0;
  color: var(--accent);
}

.form-success h3 { font-size: 1.5rem; color: var(--text-primary); }
.form-success p { color: var(--text-secondary); font-size: 1rem; }

/* === TESTIMONIALS === */
.testimonials {
  padding: 6rem 8vw;
}

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.testimonial-card:hover { border-color: var(--accent-dim); }

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
}

.testimonial-meta .testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-meta .testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .hero { padding: 4rem 5vw 3rem; }
  .process, .pricing, .closing, .contact-form-section, .testimonials { padding: 5rem 5vw; }
  .proof { padding: 2rem 5vw; }
  .proof-inner { gap: 1.5rem; }
  .proof-number { font-size: 1.5rem; }
  .price-amount { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}