/* ===========================================================
   SkyRank Team — shared stylesheet
   =========================================================== */

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

:root {
  --ink:        #18243F;
  --ink-2:      #22304F;
  --ink-3:      #2E3E60;
  --line:       #E2E8F0;
  --line-dk:    rgba(255,255,255,0.10);
  --text:       #1E293B;
  --text-soft:  #52627A;
  --muted:      #94A3B8;
  --cyan:       #22D3EE;
  --indigo:     #6366F1;
  --violet:     #A855F7;
  --pale:       #F6F8FC;
  --white:      #ffffff;
  --grad:       linear-gradient(100deg, #22D3EE 0%, #6366F1 55%, #A855F7 100%);
  --radius:     18px;
  --shadow:     0 18px 50px rgba(15,23,42,0.10);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; }

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

/* ── Type helpers ─────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(99,102,241,0.10);
  border: 1px solid rgba(99,102,241,0.20);
  padding: 5px 15px; border-radius: 30px; margin-bottom: 18px;
}
.eyebrow.on-dark {
  color: #C7D2FE; background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}
h1, h2, h3, .h { font-family: 'Poppins', 'Inter', system-ui, sans-serif; letter-spacing: -0.5px; }
.title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 800; line-height: 1.18; color: #0F172A; margin-bottom: 16px;
}
.title.on-dark { color: #fff; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: 17.5px; color: var(--text-soft); max-width: 660px; }
.lead.on-dark { color: #C3CFE2; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 700;
  padding: 14px 26px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 30px rgba(99,102,241,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(99,102,241,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }

/* ── Nav ──────────────────────────────────────────────────── */
header.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(24,36,63,0.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dk);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; max-width: 1240px; margin: 0 auto; padding: 13px 28px;
}
.nav-logo svg, .nav-logo img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: #C3CEDF; position: relative; padding: 4px 0;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px; background: var(--grad);
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700;
  color: #fff; white-space: nowrap; letter-spacing: .2px;
}
.nav-phone:hover { color: #7DD3FC; }
.nav-phone-ic {
  display: inline-grid; place-items: center; width: 30px; height: 30px;
  border-radius: 9px; background: var(--grad); font-size: 15px; line-height: 1;
  box-shadow: 0 6px 16px rgba(99,102,241,0.35);
}
.nav-cta { font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 10px; background: var(--grad); color: #fff; }
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ── Sections ─────────────────────────────────────────────── */
section { padding: 92px 0; }
.sec-pale { background: var(--pale); }
.sec-dark { background: var(--ink); color: #fff; }
.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1000px 520px at 78% -8%, rgba(129,140,248,0.55), transparent 64%),
              radial-gradient(760px 460px at 8% 104%, rgba(34,211,238,0.34), transparent 62%),
              linear-gradient(160deg, #22304F 0%, #18243F 55%, #1B2A47 100%);
  color: #fff; padding: 104px 0 96px;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(32px, 4.2vw, 50px); font-weight: 800; line-height: 1.1; margin-bottom: 18px;
}
.hero p.lead { font-size: 17px; color: #C8D3E5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* hero split: copy left, lead form right */
.hero-grid {
  display: grid; grid-template-columns: minmax(0,1fr) 386px; gap: 48px; align-items: center;
}
.hero-copy { max-width: 600px; }

.hero-form {
  background: #fff; border-radius: 18px; padding: 24px 22px 20px;
  box-shadow: 0 26px 70px rgba(2,8,23,0.45);
  border: 1px solid rgba(255,255,255,0.65);
}
.hero-form h2 {
  font-family: 'Poppins', sans-serif; font-size: 21px; font-weight: 800;
  color: #0F172A; margin-bottom: 5px; letter-spacing: -0.3px;
}
.hero-form .hf-sub { font-size: 13px; line-height: 1.5; color: var(--text-soft); margin-bottom: 16px; }
.hero-form .form { gap: 10px; }
.hero-form .field label { font-size: 12px; margin-bottom: 4px; }
.hero-form .field input, .hero-form .field select { padding: 9px 12px; font-size: 14px; border-radius: 9px; }
.hero-form .btn { padding: 12px 20px; font-size: 14.5px; margin-top: 3px; }
.hero-form .form-note { text-align: center; font-size: 11.5px; margin-top: 1px; }

/* page hero (inner pages) */
.page-hero {
  background: radial-gradient(820px 440px at 82% -20%, rgba(129,140,248,0.50), transparent 64%),
              linear-gradient(160deg, #22304F 0%, #18243F 100%);
  color: #fff; padding: 74px 0 72px; text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; margin-bottom: 14px; }

/* ── Grids & cards ────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.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: #CBD5E1; }
.card h3 { font-size: 19px; font-weight: 700; color: #0F172A; margin-bottom: 9px; }
.card p { font-size: 15px; color: var(--text-soft); }
.card.dark {
  background: rgba(255,255,255,0.04); border-color: var(--line-dk);
}
.card.dark:hover { background: rgba(255,255,255,0.07); box-shadow: none; border-color: rgba(255,255,255,0.2); }
.card.dark h3 { color: #fff; }
.card.dark p { color: #A9B7CE; }

.icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad); margin-bottom: 18px; font-size: 22px;
  box-shadow: 0 8px 22px rgba(99,102,241,0.28);
}

.tick { list-style: none; margin-top: 16px; }
.tick li {
  position: relative; padding-left: 26px; margin-bottom: 8px; font-size: 14.5px; color: var(--text-soft);
}
.tick li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--indigo); font-weight: 800;
}
.card.dark .tick li { color: #A9B7CE; }
.card.dark .tick li::before { color: var(--cyan); }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 22px 12px; }
.stat b { display: block; font-family: 'Poppins', sans-serif; font-size: 34px; font-weight: 800; }
.stat span { font-size: 13px; color: #A8B6CC; letter-spacing: .4px; }

/* steps */
.step { position: relative; padding-left: 62px; margin-bottom: 34px; }
.step .num {
  position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center; font-family: 'Poppins', sans-serif; font-weight: 800;
  color: #fff; background: var(--grad); box-shadow: 0 8px 22px rgba(99,102,241,0.28);
}
.step h3 { font-size: 18px; margin-bottom: 6px; color: #0F172A; }
.step p { font-size: 15px; color: var(--text-soft); }
.sec-dark .step h3 { color: #fff; }
.sec-dark .step p { color: #C3CFE2; }

/* pill row */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  font-size: 13px; font-weight: 600; color: var(--text-soft);
  border: 1px solid var(--line); background: #fff;
  padding: 7px 15px; border-radius: 30px;
}
.sec-dark .pill { color: #C3CEDF; background: rgba(255,255,255,0.05); border-color: var(--line-dk); }

/* split */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }

/* CTA band */
.cta-band {
  background: var(--grad); color: #fff; text-align: center; padding: 74px 0;
}
.cta-band h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 800; margin-bottom: 12px; }
.cta-band p { font-size: 17px; opacity: .95; max-width: 620px; margin: 0 auto 28px; }

/* ── Forms ────────────────────────────────────────────────── */
.form { display: grid; gap: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: #0F172A; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--ink); color: #A9B7CE; padding: 62px 0 26px; font-size: 14.5px;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
footer h4 { font-family: 'Poppins', sans-serif; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
footer a:hover { color: #fff; }
.foot-list { list-style: none; display: grid; gap: 9px; }
.nap { font-style: normal; margin-top: 16px; font-size: 14px; line-height: 1.7; color: #A9B7CE; }
.nap strong { color: #fff; }

/* areas we serve */
.areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; justify-content: center; }
.area-chip {
  font-size: 14px; font-weight: 600; color: var(--text-soft);
  background: #fff; border: 1px solid var(--line);
  padding: 9px 17px; border-radius: 30px;
}
.area-chip strong { color: var(--indigo); }
.foot-bottom {
  margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line-dk);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: #6E7E96;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1180px) {
  .nav-links { gap: 20px; }
  .nav-phone { font-size: 15px; }
  .nav-phone-ic { width: 27px; height: 27px; font-size: 14px; }
}
@media (max-width: 1050px) {
  .nav-links a { font-size: 13.5px; }
  .nav-cta { display: none; }
}
@media (max-width: 980px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { max-width: 100%; }
  .hero-form { max-width: 520px; }
}
@media (max-width: 760px) {
  section { padding: 66px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #18243F; border-bottom: 1px solid var(--line-dk); padding: 8px 28px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-dk); }
  .nav-links a.active::after { display: none; }
  .nav-cta { display: none; }
  .nav-inner { gap: 10px; }
  .nav-phone { font-size: 15px; gap: 6px; }
  .g2, .g3, .g4, .stats { grid-template-columns: 1fr; }
  .stats { gap: 4px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 60px 0 62px; }
  .hero-form { padding: 26px 22px 22px; }
}
@media (max-width: 430px) {
  .nav-logo svg, .nav-logo img { height: 34px; }
  .nav-phone span:last-child { display: none; }
  .nav-phone-ic { width: 34px; height: 34px; font-size: 17px; }
}
