:root {
  --bg: #0a0e1a;
  --bg-2: #131a2e;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --ink: #0d1226;
  --ink-soft: #4b5374;
  --muted: #8a90a8;
  --line: #e6e9f2;
  --primary: #ff5b1f;
  --primary-2: #ff8a3c;
  --accent: #1ddbb1;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 18, 38, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Sora', 'Inter', sans-serif; letter-spacing: -0.02em; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: white; font-weight: 700; font-family: 'Sora', sans-serif; }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white; font-weight: 700; font-family: 'JetBrains Mono', monospace; font-size: 14px;
}
.site-nav a {
  color: rgba(255,255,255,0.72);
  margin-left: 24px; font-size: 15px; font-weight: 500;
}
.site-nav a:hover { color: white; text-decoration: none; }
.site-nav a.active { color: white; }
.cta-link {
  background: var(--primary);
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
}
.cta-link:hover { background: var(--primary-2); }

/* HERO */
.hero {
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(255,91,31,0.18), transparent 60%),
    radial-gradient(800px 400px at 0% 10%, rgba(29,219,177,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: white;
  padding: 96px 0 64px;
  text-align: center;
}
.hero .eyebrow { color: var(--accent); }
.hero h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 800;
}
.grad {
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  color: rgba(255,255,255,0.78);
  font-size: 19px;
  max-width: 720px;
  margin: 0 auto;
}
.hero-cta { margin-top: 28px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 12px; font-weight: 700; color: var(--primary);
  margin: 0 0 12px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 10px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.05s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-2); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: white; }

/* STATS */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 32px;
  color: white;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 4px; }

/* PAGE HERO (non-home) */
.page-hero {
  padding: 64px 0 36px;
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); margin: 0 0 14px; }
.page-hero .lede { color: var(--ink-soft); font-size: 18px; max-width: 60ch; }

/* SECTIONS */
.section { padding: 72px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { background: var(--bg-2); color: white; }
.section-title { font-size: 28px; margin: 0 0 12px; }
.section-title.light { color: white; }
.section-sub { color: var(--ink-soft); margin: 0 0 32px; max-width: 60ch; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 800px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* SERVICE CARDS (home) */
.service-card {
  display: block; background: white;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; color: var(--ink);
  transition: transform 0.1s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover {
  text-decoration: none; transform: translateY(-2px);
  border-color: var(--primary); box-shadow: var(--shadow);
}
.service-card h3 { margin: 0 0 8px; font-size: 18px; }
.service-card p { margin: 0 0 14px; color: var(--ink-soft); }
.service-from { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--primary); font-weight: 600; }

/* WHY (dark) */
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.why-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  margin-bottom: 14px; color: white;
}
.why-card h3 { margin: 0 0 8px; font-size: 18px; color: white; }
.why-card p { margin: 0; color: rgba(255,255,255,0.7); }

/* PROJECT CARDS */
.project-card {
  display: block; background: white;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; color: var(--ink);
  transition: transform 0.1s ease, border-color 0.15s ease;
}
.project-card:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--primary); }
.project-card h3 { margin: 0 0 8px; font-size: 18px; }
.project-card p { margin: 0 0 12px; color: var(--ink-soft); }
.project-tag-row { font-size: 12px; margin-bottom: 10px; }
.pill {
  background: rgba(255,91,31,0.1); color: var(--primary);
  padding: 3px 10px; border-radius: 999px; font-weight: 600; font-size: 12px;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  background: var(--surface-alt); color: var(--ink-soft);
  padding: 4px 8px; border-radius: 6px; border: 1px solid var(--line);
}
.project-link { margin-top: 14px; color: var(--primary); font-weight: 500; font-size: 14px; }

/* QUOTES */
.quote-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; margin: 0;
}
.quote-card p { margin: 0 0 12px; color: var(--ink); font-size: 15px; line-height: 1.6; }
.quote-card footer { color: var(--muted); font-size: 13px; }

/* CTA BAND */
.cta-band {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,91,31,0.18), transparent 60%),
    var(--bg);
  color: white;
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: white; font-size: 32px; margin: 0 0 12px; }
.cta-band p { color: rgba(255,255,255,0.72); margin: 0 0 24px; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: 28px; margin: 0 0 12px; }
.cta-inner p { color: var(--ink-soft); margin: 0 0 22px; }

/* SERVICE BLOCKS */
.service-block {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.service-block:first-child { border-top: none; padding-top: 0; }
.service-block-head { margin-bottom: 24px; }
.service-block-head h2 { font-size: 26px; margin: 0 0 10px; }
.service-summary { color: var(--ink-soft); margin: 0 0 6px; max-width: 70ch; }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card {
  position: relative;
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column;
}
.tier-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(255,91,31,0.15);
}
.tier-badge {
  position: absolute; top: -10px; right: 18px;
  background: var(--primary); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.tier-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }
.tier-price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 36px; margin: 6px 0 2px; }
.tier-delivery { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); }
.tier-what { color: var(--ink-soft); margin: 16px 0 18px; flex: 1; }
.tier-cta { color: var(--primary); border-color: var(--line); }
.tier-cta:hover { border-color: var(--primary); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
.faq {
  background: white; border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 20px;
}
.faq summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: "+"; font-size: 22px; color: var(--primary); margin-left: 12px; }
.faq[open] summary::after { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--ink-soft); }

/* PROCESS */
.process-list { list-style: none; padding: 0; margin: 0; }
.process-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--line);
}
.process-item:first-child { border-top: none; padding-top: 0; }
.process-num {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 36px;
  color: var(--primary);
}
.process-item h3 { margin: 0 0 6px; font-size: 20px; }
.process-item p { margin: 0; color: var(--ink-soft); }

/* LISTS / FORMS */
.list-bare { list-style: none; padding: 0; margin: 0 0 24px; }
.list-bare li { padding: 10px 0; border-bottom: 1px dashed var(--line); }
.list-bare li:last-child { border-bottom: none; }
.muted { color: var(--muted); }

.form { display: flex; flex-direction: column; gap: 14px; }
.form label { display: flex; flex-direction: column; gap: 6px; }
.form label > span { font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: white;
  outline: none;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--primary); }
.form button { align-self: flex-start; }

.alert { padding: 14px 16px; border-radius: 10px; margin-bottom: 16px; }
.alert.success { background: #e6fffa; border: 1px solid var(--accent); color: #045a49; }

.contact-list li { padding: 12px 0; }

/* FOOTER */
.site-footer {
  background: var(--bg);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 14px; align-items: center;
}
.footer-brand { color: white; font-weight: 700; font-family: 'Sora', sans-serif; }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: white; }
.sep { margin: 0 8px; color: rgba(255,255,255,0.25); }
