/* GetASub — marketing site stylesheet */

:root {
  /* Brand */
  --orange: #FF6B35;          /* primary action colour */
  --orange-bright: #FF8456;
  --orange-deep: #E5562A;
  --orange-soft: #FFE9DD;     /* tinted background */

  --navy: #0F1B2D;            /* dark sections */
  --navy-soft: #1A2638;
  --navy-deep: #070D17;

  /* Neutrals */
  --ink: #0F1B2D;
  --ink-soft: #2B384C;
  --muted: #5C6B82;
  --line: #E2E7F0;
  --line-soft: #EEF2F8;
  --bg: #F7F9FC;
  --card: #FFFFFF;

  /* Status */
  --green: #1E9F66;
  --green-bg: #E5F6EE;
  --red: #C8362E;
  --red-bg: #FBE7E5;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,27,45,0.06);
  --shadow: 0 6px 24px rgba(15,27,45,0.08);
  --shadow-lg: 0 24px 60px rgba(15,27,45,0.16);
  --font-sans: "Inter", "Helvetica Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }
small { color: var(--muted); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.row-between { display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.muted { color: var(--muted); }
.text-center { text-align: center; }

/* ========== Top nav ========== */

.topnav {
  background: var(--navy);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topnav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.topnav .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.topnav .brand .accent { color: var(--orange); }
.topnav nav { display: flex; gap: 6px; align-items: center; }
.topnav nav a {
  color: rgba(255,255,255,0.78);
  font-weight: 500; font-size: 0.93rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 120ms ease, color 120ms ease;
}
.topnav nav a:hover { color: white; background: rgba(255,255,255,0.08); }
.topnav .cta {
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  margin-left: 8px;
  transition: background 120ms ease;
}
.topnav .cta:hover { background: var(--orange-bright); color: var(--navy); }

/* ========== Buttons ========== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 80ms ease, background 120ms ease, box-shadow 120ms ease;
  font-family: var(--font-sans);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 22px rgba(255,107,53,0.35);
}
.btn-primary:hover { background: var(--orange-bright); }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: var(--navy-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: white; border-color: var(--ink-soft); }
.btn-ghost-dark {
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); }

/* ========== Hero ========== */

.hero {
  background: var(--navy);
  color: white;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(60% 90% at 100% 0%, rgba(255,107,53,0.18) 0%, transparent 60%),
    radial-gradient(40% 80% at 0% 100%, rgba(255,107,53,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 95%);
  background-size: 56px 56px;
  opacity: 0.5;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange-bright);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: white; max-width: 22ch; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p.lead { color: rgba(255,255,255,0.78); font-size: 1.2rem; max-width: 56ch; margin-top: 18px; }
.hero .cta-row { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero .reassure {
  margin-top: 28px; color: rgba(255,255,255,0.55); font-size: 0.88rem;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.hero .reassure span { display: inline-flex; align-items: center; gap: 6px; }

/* ========== Section base ========== */

section.section { padding: 96px 0; }
section.section-dark { background: var(--navy); color: white; }
section.section-dark p { color: rgba(255,255,255,0.78); }
section.section-dark h2, section.section-dark h3 { color: white; }
section.section-tinted { background: var(--orange-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: 12px;
}

/* ========== Step cards ========== */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--navy);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }

/* ========== Type-of-work cards ========== */

.streams { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.streams-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
@media (max-width: 880px) { .streams { grid-template-columns: 1fr; } .streams-2 { grid-template-columns: 1fr; } }
.stream {
  border-radius: var(--radius);
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stream::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
}
.stream.s-projects::before { background: #2A6CDB; }
.stream.s-minor::before    { background: var(--orange); }
.stream.s-bid::before      { background: #6B3FB1; }

.stream-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.stream.s-projects .stream-tag { background: #E5EEFB; color: #2A6CDB; }
.stream.s-minor    .stream-tag { background: var(--orange-soft); color: var(--orange-deep); }
.stream.s-bid      .stream-tag { background: #EFE8FA; color: #6B3FB1; }

/* ========== Feature grid ========== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-card .ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: grid; place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-card p { font-size: 0.94rem; margin: 0; }

/* ========== Pricing ========== */

.price-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 24px 60px rgba(255,107,53,0.18);
  position: relative;
}
.price-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  color: var(--ink);
  margin: 16px 0 4px;
}
.price-card .price small {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--muted);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}
.price-card li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--orange);
  font-weight: 700;
}
.price-card .free-trial {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* ========== FAQ ========== */

.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform 200ms ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: var(--ink-soft); }

/* ========== Footer ========== */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
  font-size: 0.9rem;
}
.site-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .site-footer .container { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 14px;
}
.site-footer a { display: block; padding: 4px 0; color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: white; }
.site-footer .small {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px;
  padding-top: 20px;
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.5);
}

/* ========== Mobile tweaks ========== */

@media (max-width: 760px) {
  .topnav .container { height: 64px; }
  .topnav nav { display: none; }
  section.section { padding: 64px 0; }
  .hero { padding: 72px 0 88px; }
}
