/* CrewsOps Landing — Standalone Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --amber-light: #fef3c7;
  --amber-muted: #fffbeb;
  --dark:        #0f172a;
  --dark-2:      #1e293b;
  --dark-3:      #334155;
  --green:       #10b981;
  --bg:          #f1f5f9;
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --border-2:    #cbd5e1;
  --text:        #0f172a;
  --text-muted:  #64748b;
  --r:           8px;
  --r-lg:        12px;
  --r-xl:        16px;
  --shadow-sm:   0 1px 3px rgba(15,23,42,.07);
  --shadow-md:   0 8px 24px rgba(15,23,42,.09);
  --shadow-lg:   0 20px 60px rgba(15,23,42,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: #fff; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Nav ─────────────────────────────────────────────────────── */
.lnav {
  position: sticky; top: 0; z-index: 100;
  height: 64px; background: var(--dark);
  display: flex; align-items: center;
  padding: 0 5%;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.lnav-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: #fff;
  letter-spacing: -.2px; margin-right: 36px; flex-shrink: 0;
}
.lnav-brand em { color: var(--amber); font-style: normal; }
.lnav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.lnav-link {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.5);
  padding: 7px 14px; border-radius: var(--r);
  transition: all .14s;
}
.lnav-link:hover  { color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }
.lnav-link.active { color: var(--amber); }
.lnav-end { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.btn-signin {
  background: var(--amber); color: var(--dark);
  font-size: 13.5px; font-weight: 700;
  padding: 8px 20px; border-radius: var(--r);
  transition: background .14s; white-space: nowrap; display: inline-block;
  touch-action: manipulation;
}
.btn-signin:hover { background: var(--amber-dark); }

/* Mobile nav */
.lnav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer; margin-left: 12px;
  touch-action: manipulation;
}
.lnav-burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.7); border-radius: 2px; }
.lnav-mobile {
  display: none; background: var(--dark-2);
  padding: 12px 5% 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lnav-mobile.open { display: block; }
.lnav-mobile .lnav-link { display: block; padding: 12px 14px; margin-bottom: 2px; }
.lnav-mobile .btn-signin { display: block; text-align: center; margin-top: 12px; padding: 13px 20px; border-radius: var(--r); font-size: 15px; }

/* ── Layout helpers ──────────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ── Section headings ────────────────────────────────────────── */
.section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--amber-dark); margin-bottom: 12px;
}
.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  color: var(--dark); letter-spacing: -.5px; line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted); max-width: 660px; line-height: 1.7;
}
.text-center .section-sub { margin: 0 auto; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 104px 5% 96px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(245,158,11,.13) 0%, transparent 60%);
  top: -320px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,.07) 0%, transparent 60%);
  bottom: -200px; right: -100px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.28);
  border-radius: 99px; padding: 5px 16px;
  font-size: 12.5px; font-weight: 600; color: var(--amber);
  letter-spacing: .03em; margin-bottom: 26px;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 7vw, 72px); font-weight: 800;
  color: #fff; letter-spacing: -2px; line-height: 1.08;
  margin-bottom: 22px;
}
.hero-h1 em { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.48); line-height: 1.75;
  max-width: 680px; margin: 0 auto 42px;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--amber); color: var(--dark);
  font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: var(--r-lg);
  transition: all .14s; white-space: nowrap; display: inline-block;
  touch-action: manipulation;
}
.btn-hero-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-hero-outline {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.8);
  font-size: 15px; font-weight: 600;
  padding: 14px 32px; border-radius: var(--r-lg);
  border: 1.5px solid rgba(255,255,255,.13);
  transition: all .14s; white-space: nowrap; display: inline-block;
  touch-action: manipulation;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.11); color: #fff; }

/* ── Stats bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 30px 5%;
}
.stats-bar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800; color: #fff;
  letter-spacing: -.5px; line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.36); margin-top: 5px; font-weight: 500; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.08); }

/* ── Feature grid ────────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat-icon {
  width: 50px; height: 50px; border-radius: var(--r-lg);
  background: var(--amber-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.feat-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.feat-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Split rows ──────────────────────────────────────────────── */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-row.rev { direction: rtl; }
.split-row.rev > * { direction: ltr; }
.split-visual {
  background: var(--dark); border-radius: var(--r-xl);
  padding: 36px 28px; min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.split-visual::before {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.14) 0%, transparent 65%);
  top: -120px; right: -100px; pointer-events: none;
}
.split-visual-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px; font-weight: 800;
  color: rgba(255,255,255,.05); position: absolute;
  bottom: 18px; right: 22px; letter-spacing: -1px; pointer-events: none;
}
.split-visual-content { position: relative; z-index: 1; width: 100%; }

.perk-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.perk-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.perk-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--amber-light);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.perk-check svg { width: 10px; height: 10px; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--dark);
  padding: 88px 5%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,158,11,.12) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4.5vw, 46px); font-weight: 800;
  color: #fff; letter-spacing: -.6px; margin-bottom: 16px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,.45); margin-bottom: 38px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 5% 0;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: #fff; }
.footer-brand em { color: var(--amber); font-style: normal; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link { font-size: 13.5px; color: rgba(255,255,255,.36); transition: color .14s; }
.footer-link:hover { color: rgba(255,255,255,.7); }
.footer-copy {
  font-size: 13px; color: rgba(255,255,255,.18);
  max-width: 1400px; margin: 28px auto 0;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 76px 5% 68px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,.11) 0%, transparent 60%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.page-hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  color: #fff; letter-spacing: -.8px; line-height: 1.13; margin-bottom: 16px;
}
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,.45); line-height: 1.75; }

/* ── Pricing ─────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  transition: box-shadow .2s; position: relative;
}
.price-card.featured { border-color: var(--amber); border-width: 2px; }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--dark);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 16px; border-radius: 99px; white-space: nowrap;
}
.price-tier { font-size: 12.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.price-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px; font-weight: 800; color: var(--dark); letter-spacing: -1px; line-height: 1;
}
.price-amount sup { font-size: 22px; vertical-align: super; margin-right: 2px; font-weight: 700; }
.price-period { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.price-desc {
  font-size: 14px; color: var(--text-muted); margin: 18px 0;
  line-height: 1.65; border-bottom: 1px solid var(--border); padding-bottom: 20px;
}
.price-features { list-style: none; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.price-features li { font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-features li .pf-check {
  flex-shrink: 0; width: 18px; height: 18px;
  background: var(--amber-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--amber-dark); font-weight: 900; margin-top: 1px;
}
.btn-price {
  width: 100%; display: flex; align-items: center; justify-content: center;
  padding: 13px 20px; border-radius: var(--r-lg);
  font-size: 14px; font-weight: 700; margin-top: 26px;
  transition: all .14s; border: none; cursor: pointer; font-family: inherit;
  touch-action: manipulation;
}
.btn-price-amber   { background: var(--amber); color: var(--dark); }
.btn-price-amber:hover { background: var(--amber-dark); }
.btn-price-dark    { background: var(--dark); color: #fff; }
.btn-price-dark:hover { background: var(--dark-2); }
.btn-price-outline { background: #fff; color: var(--dark); border: 1.5px solid var(--border-2); }
.btn-price-outline:hover { border-color: var(--dark); background: var(--dark); color: #fff; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q {
  font-size: 16px; font-weight: 700; color: var(--dark); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  user-select: none;
}
.faq-icon { font-size: 22px; color: var(--amber); flex-shrink: 0; line-height: 1; font-weight: 400; }
.faq-a { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-top: 12px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 46px; height: 46px; background: var(--amber-light); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-info-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-val { font-size: 15px; font-weight: 600; }
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 16px; color: var(--text); background: #fff;
  outline: none; font-family: inherit; transition: border-color .14s, box-shadow .14s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,.12); }
textarea.form-input { resize: vertical; min-height: 120px; font-size: 14px; }
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  background: var(--amber); color: var(--dark);
  font-size: 15px; font-weight: 700;
  padding: 13px 32px; border-radius: var(--r-lg);
  border: none; cursor: pointer; width: 100%;
  transition: all .14s; font-family: inherit; margin-top: 4px;
  touch-action: manipulation;
}
.btn-submit:hover { background: var(--amber-dark); }
#form-success { display: none; text-align: center; padding: 32px 20px; }
#form-success-icon { font-size: 52px; margin-bottom: 14px; }

/* ── About ───────────────────────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.who-card {
  background: var(--dark-2); border-radius: var(--r-xl);
  padding: 24px 20px; text-align: center;
  border: 1px solid rgba(255,255,255,.05);
  transition: background .18s;
}
.who-card:hover { background: var(--dark-3); }
.who-icon  { font-size: 34px; margin-bottom: 10px; }
.who-title { font-size: 14px; font-weight: 700; color: #fff; }
.who-desc  { font-size: 12.5px; color: rgba(255,255,255,.36); margin-top: 5px; line-height: 1.5; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
}
.value-icon  { font-size: 30px; margin-bottom: 14px; }
.value-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 9px; }
.value-text  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Comparison table ─────────────────────────────────────────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .split-row { gap: 52px; }
}
@media (max-width: 960px) {
  .feat-grid    { grid-template-columns: repeat(2, 1fr); }
  .price-grid   { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .split-row    { grid-template-columns: 1fr; gap: 36px; }
  .split-row.rev { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-grid     { grid-template-columns: repeat(2, 1fr); }
  .values-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .lnav-links  { display: none; }
  .lnav-burger { display: flex; }
  .lnav-end .btn-signin { display: none; }
  .feat-grid   { grid-template-columns: 1fr; }
  .who-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { gap: 28px; }
  .stat-divider { display: none; }
  .form-row-2  { grid-template-columns: 1fr; }
  .section     { padding: 64px 0; }
  .section-sm  { padding: 48px 0; }
  .hero        { padding: 72px 5% 64px; }
  .hero-h1     { letter-spacing: -1px; }
  .contact-form { padding: 24px 20px; }
  .cta-banner  { padding: 64px 5%; }
  .page-hero   { padding: 56px 5% 52px; }
  .split-visual { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .who-grid      { grid-template-columns: 1fr; }
  .stats-bar-inner { gap: 20px; }
  .stat-num      { font-size: 26px; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-outline { text-align: center; }
  .cta-actions   { flex-direction: column; align-items: stretch; }
  .cta-actions .btn-hero-primary,
  .cta-actions .btn-hero-outline { text-align: center; }
}
