/* ===== SOARMODELS LLC — stylesheet ===== */

:root {
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --ink: #11162a;
  --ink-soft: #4a5169;
  --ink-faint: #767d96;
  --brand: #2b3a8f;
  --brand-2: #5468ff;
  --accent: #00c2a8;
  --line: #e6e8f0;
  --radius: 16px;
  --shadow: 0 10px 30px -12px rgba(17, 22, 42, 0.18);
  --maxw: 1120px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  font-size: 0.98rem; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); color: #fff; box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand-2); color: var(--brand); }
.btn-block { width: 100%; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--brand); }
.brand-rest { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 0.96rem; }
.nav-links a:hover { color: var(--brand); text-decoration: none; }
.nav-cta {
  background: var(--ink); color: #fff !important; padding: 10px 18px; border-radius: 999px;
}
.nav-cta:hover { background: var(--brand); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(84, 104, 255, 0.12), transparent 60%),
    radial-gradient(700px 400px at 0% 10%, rgba(0, 194, 168, 0.10), transparent 55%),
    var(--bg);
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
}
.hero-inner { max-width: 880px; }
.eyebrow {
  display: inline-block; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand); background: rgba(84, 104, 255, 0.08);
  padding: 7px 14px; border-radius: 999px; margin: 0 0 22px;
}
.hero h1 span { background: linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); max-width: 640px; margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; }
.hero-stats div { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.hero-stats dt { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.hero-stats dd { margin: 0; color: var(--ink-faint); font-size: 0.92rem; }

/* ===== Sections ===== */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.section-head { max-width: 640px; margin: 0 0 52px; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.prose p { color: var(--ink-soft); margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(135deg, rgba(43,58,143,0.10), rgba(0,194,168,0.12));
  color: var(--brand); font-size: 1.2rem; margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

/* ===== Contact ===== */
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.contact-list li { display: grid; gap: 2px; }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); font-weight: 600; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 0.96rem; color: var(--ink); background: #fcfcfe; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(84,104,255,0.15); }
.field textarea { resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin: 14px 0 0; text-align: center; }

/* ===== Legal ===== */
.updated { color: var(--ink-faint); font-size: 0.9rem; margin: -6px 0 28px; }
.legal { margin-bottom: 40px; }
.legal h3 { margin-top: 28px; color: var(--ink); }
.legal p { color: var(--ink-soft); }
.terms-title { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #c7cce0; padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; align-items: start; }
.site-footer .brand { color: #fff; }
.site-footer .brand-rest { color: #fff; }
.footer-brand p { color: #8d94b3; margin: 12px 0 0; font-size: 0.92rem; max-width: 280px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #c7cce0; font-size: 0.94rem; }
.footer-nav a:hover { color: #fff; }
.footer-meta p { margin: 0 0 6px; font-size: 0.92rem; }
.footer-meta a { color: #c7cce0; }
.footer-meta a:hover { color: #fff; }
.copyright { color: #8d94b3 !important; margin-top: 14px !important; font-size: 0.85rem !important; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; width: 100%; }
  .nav-links.open { max-height: 420px; }
  .nav-cta { display: inline-block; margin-top: 8px; }
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (min-width: 861px) and (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
