/* ============================================================
   Elev8 Aerial — design system
   Palette/type recovered from the original Framer export.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800;900&family=Tomorrow:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg: #0c1722;
  --bg-elevated: #101f2c;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-dim: rgba(202, 220, 232, 0.76);
  --text-dimmer: rgba(202, 220, 232, 0.56);
  --text-faint: rgba(202, 220, 232, 0.42);
  --accent: #31d0cd;
  --accent-2: #58f0e9;
  --accent-ink: #061219;
  --gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);

  --font-display: "Orbitron", sans-serif;
  --font-body: "Tomorrow", sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; color: var(--text); font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.section {
  padding: var(--space-7) 0;
}
.section--tight { padding: var(--space-6) 0; }
.section--alt { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-5);
  text-align: center;
}
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.15; }
.section-head p { margin-top: var(--space-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--gradient);
  color: var(--accent-ink);
  box-shadow: 0 8px 24px -8px rgba(49, 208, 205, 0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(49, 208, 205, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--space-3);
  background: rgba(12, 23, 34, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { width: 34px; height: 34px; border-radius: 50%; }
.brand span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
}

@media (min-width: 810px) {
  .nav-cta { display: inline-flex; }
}

@media (max-width: 809.98px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: var(--space-2) var(--space-3) var(--space-4);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
  }
  .nav-links[data-open="true"] { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-7) 0 var(--space-6);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,23,34,0.55) 0%, rgba(12,23,34,0.88) 55%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: var(--space-3);
}
.hero-content p { font-size: 1.05rem; margin-bottom: var(--space-4); }
.hero-actions { display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: var(--space-3);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1199.98px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 809.98px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.card h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; color: var(--text-dimmer); line-height: 1.55; }

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(49, 208, 205, 0.12);
  border: 1px solid rgba(49, 208, 205, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.icon-badge svg { width: 20px; height: 20px; }

/* ---------- Services ---------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.service-card:hover { border-color: rgba(49, 208, 205, 0.4); transform: translateY(-2px); }

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  counter-reset: step;
}
@media (max-width: 809.98px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { position: relative; padding-top: var(--space-4); }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-2);
}
.process-step h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.35rem; }
.process-step p { font-size: 0.9rem; color: var(--text-dimmer); }

/* ---------- Story / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 809.98px) { .split { grid-template-columns: 1fr; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split-copy h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: var(--space-3); }
.split-copy p + p { margin-top: var(--space-2); }

.credentials { margin-top: var(--space-4); display: grid; gap: var(--space-2); }
.credential {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.credential .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.credential h4 { font-size: 0.85rem; color: var(--text); margin-bottom: 0.2rem; }
.credential p { font-size: 0.8rem; color: var(--text-dimmer); }

/* ---------- CTA banner ---------- */
.cta-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  background: radial-gradient(circle at top right, rgba(49,208,205,0.08), transparent 60%);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: 0.5rem; }
.cta-banner p { color: var(--text-dimmer); max-width: 480px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-4);
  align-items: start;
}
@media (max-width: 809.98px) { .contact-grid { grid-template-columns: 1fr; } }

.detail-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.detail-panel h2 { font-size: 1.35rem; margin-bottom: var(--space-2); }
.detail-panel > p { font-size: 0.9rem; margin-bottom: var(--space-3); }
.detail-items { display: grid; gap: var(--space-2); }
.detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(234,248,255,0.86);
}
.detail-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: grid;
  gap: var(--space-3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 599.98px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(49, 208, 205, 0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 11px; color: var(--text-faint); line-height: 1.55; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Pricing ---------- */
.pricing-card { display: flex; flex-direction: column; }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  margin: 0.6rem 0 0.2rem;
}
.pricing-card .price span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-left: 0.35rem;
}
.pricing-card .price-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.pricing-note {
  max-width: 760px;
  margin: var(--space-5) auto 0;
  text-align: center;
  padding: var(--space-3) var(--space-4);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
}
.pricing-note p { font-size: 0.85rem; color: var(--text-dimmer); }

/* ---------- Legal page ---------- */
.legal-header { text-align: center; max-width: 640px; margin: 0 auto var(--space-5); }
.legal-header h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: var(--space-2); }
.legal-body { max-width: 760px; margin: 0 auto; display: grid; gap: var(--space-4); }
.legal-body section h2 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.legal-body section p { font-size: 0.95rem; line-height: 1.75; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-4) 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.footer-brand {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.footer-links { display: flex; gap: var(--space-3); }
.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-links a:hover { color: var(--text-dim); }
.footer-contact a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
