:root {
  --black: #080a0e;
  --white: #f5f3ee;
  --cream: #ede8df;
  --accent: #c8f04b;
  --accent2: #4bf0c8;
  --muted: #8a8f99;
  --card-bg: #0f1218;
  --border: rgba(255,255,255,0.07);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Cursor ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200,240,75,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease-out;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(8,10,14,0.7);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  padding: 10px 22px !important;
  border-radius: 40px !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(200,240,75,0.3) !important;
  color: var(--black) !important;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200,240,75,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(75,240,200,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content { position: relative; max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,240,75,0.08);
  border: 1px solid rgba(200,240,75,0.2);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,240,75,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  font-family: 'DM Sans', sans-serif;
  cursor: none;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.hero-stats {
  position: absolute;
  right: 60px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeLeft 0.8s 0.4s ease both;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 400; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translate(24px, -50%); }
  to   { opacity: 1; transform: translate(0, -50%); }
}

/* ── Shared section styles ── */
section { padding: 100px 60px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 64px;
}

/* ── Solutions ── */
#solutions { background: var(--black); }
.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.solution-card {
  background: var(--card-bg);
  padding: 36px;
  position: relative;
  transition: background 0.3s;
  cursor: none;
}
.solution-card:hover { background: #141820; }
.solution-card.featured {
  background: rgba(200,240,75,0.05);
  border: 1px solid rgba(200,240,75,0.15);
}
.solution-card.featured:hover { background: rgba(200,240,75,0.08); }
.solution-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
}
.solution-card.featured .solution-icon { background: rgba(200,240,75,0.1); }
.solution-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.solution-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.solution-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.solution-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.solution-tags span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
}
.solution-price { display: flex; align-items: baseline; gap: 4px; }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.price-per { font-size: 0.8rem; color: var(--muted); }
.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 16px;
  font-weight: 500;
  cursor: none;
  transition: gap 0.2s;
}
.solution-link:hover { gap: 10px; }

/* ── Process ── */
#process {
  background: linear-gradient(180deg, var(--black) 0%, #0a0d12 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.process-step { position: relative; }
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -24px; top: 16px;
  color: var(--border);
  font-size: 1.2rem;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(200,240,75,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── Industries ── */
#niches { background: var(--black); }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.niche-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  background: var(--card-bg);
  transition: all 0.25s;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.niche-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,240,75,0.04), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.niche-card:hover { border-color: rgba(200,240,75,0.25); transform: translateY(-3px); }
.niche-card:hover::before { opacity: 1; }
.niche-emoji { font-size: 2rem; margin-bottom: 16px; display: block; }
.niche-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.niche-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.niche-pain { font-size: 0.78rem; color: var(--accent); font-weight: 500; font-style: italic; }

/* ── Contact ── */
#contact {
  background: linear-gradient(135deg, #0a0f1a 0%, var(--black) 50%, #0a1208 100%);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,240,75,0.04) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.contact-left h2 { margin-bottom: 20px; }
.contact-left p { color: var(--muted); line-height: 1.75; margin-bottom: 40px; font-size: 1rem; }
.contact-perks { display: flex; flex-direction: column; gap: 16px; }
.contact-perk { display: flex; align-items: flex-start; gap: 14px; }
.perk-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(200,240,75,0.1);
  border: 1px solid rgba(200,240,75,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.perk-text { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.perk-text strong { color: var(--white); display: block; font-weight: 500; font-size: 0.92rem; }

/* Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.form-subtitle { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200,240,75,0.4);
  background: rgba(200,240,75,0.03);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8f99' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255,255,255,0.04);
}
.form-group select option { background: #1a1f2a; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: none;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,240,75,0.3);
}
.form-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 14px; }
.success-msg { display: none; text-align: center; padding: 20px; }
.success-msg.show { display: block; }
.success-msg h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.success-msg p { color: var(--muted); font-size: 0.9rem; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--white); }
.footer-logo span { color: var(--accent); }
footer p { font-size: 0.82rem; color: var(--muted); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { display: none; }
  section { padding: 70px 24px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .process-step::after { display: none; }
}
