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

:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --text: #FFFFFF;
  --muted: #999999;
  --accent: #F86F21;
  --accent-hover: #D95E10;
  --border: #222222;
}

html { scroll-behavior: smooth; }

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

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.2; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: #fff; transform: translateY(-1px); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── Section layout ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, border-bottom 0.3s;
}

#nav.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a.nav-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a.nav-text:hover { color: var(--text); }

.nav-links .btn { padding: 10px 20px; font-size: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(248,111,33,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { text-align: center; max-width: 820px; margin: 0 auto; }
.hero-content .eyebrow { margin-bottom: 24px; }

.hero-headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.trust-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item::before {
  content: '✦';
  color: var(--accent);
  font-size: 12px;
}

/* ════════════════════════════════════
   PAIN SECTION
════════════════════════════════════ */
#pain { padding: 100px 0; }

.pain-opener {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
  line-height: 1.35;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.pain-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
#how {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(33.33% - 12px); right: calc(33.33% - 12px);
  height: 1px;
  background: var(--border);
}

.step { text-align: center; position: relative; }

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ════════════════════════════════════
   WHAT MAKES IT WORK
════════════════════════════════════ */
#difference { padding: 100px 0; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.feature-arrow {
  color: var(--accent);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
  font-weight: 700;
}

.feature-item span { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ════════════════════════════════════
   PACKAGES
════════════════════════════════════ */
#packages {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 48px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 64px rgba(248,111,33,0.12);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-price {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.no-contract {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.pricing-pull-quote {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  padding: 0 16px;
}

.pricing-pull-quote::before,
.pricing-pull-quote::after { content: '"'; color: var(--accent); }

/* ════════════════════════════════════
   PORTFOLIO
════════════════════════════════════ */
#portfolio {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.portfolio-grid {
  columns: 3;
  column-gap: 16px;
  margin-bottom: 40px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.portfolio-item:hover img { transform: scale(1.02); }
.portfolio-item:hover::after { border-color: var(--accent); }

.portfolio-empty {
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
  font-size: 15px;
}

.portfolio-note {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.15); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
#faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s;
  font-family: 'Inter', sans-serif;
}

.faq-q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════
   CONTACT FORM
════════════════════════════════════ */
#contact {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

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

.contact-sub {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group .field-note {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-control {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 16px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-control:focus { border-color: var(--accent); }
.form-control option { background: #1a1a1a; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { font-family: 'Sora', sans-serif; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; }
.form-error-msg { color: #f55; font-size: 13px; margin-top: 12px; text-align: center; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
#footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

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

.footer-email a {
  color: var(--accent);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-email a:hover { color: var(--accent-hover); }

.footer-copy { font-size: 13px; color: #555; margin-top: 8px; }

.footer-disclaimer {
  font-size: 11px;
  color: #444;
  max-width: 560px;
  line-height: 1.6;
  margin-top: 8px;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { flex: 1; min-width: 140px; }

  .trust-row { flex-direction: column; align-items: center; gap: 12px; }

  .pain-grid { grid-template-columns: 1fr; }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-row::before { display: none; }

  .features-grid { grid-template-columns: 1fr; }

  .pricing-row {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pricing-card.featured { transform: none; }

  .portfolio-grid { columns: 2; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .portfolio-grid { columns: 1; }
  .hero-headline { font-size: 32px; }
}
