/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2744;
  --navy2:  #243056;
  --gold:   #c8a84b;
  --gold2:  #e0bb6a;
  --white:  #ffffff;
  --off:    #f7f8fc;
  --gray:   #64748b;
  --light:  #e8ecf4;
  --green:  #22c55e;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,39,68,.10);
  --shadow-lg: 0 12px 48px rgba(26,39,68,.18);
  --font: 'Inter', system-ui, sans-serif;
  --max: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── UTILITIES ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold2); }

.section { padding: 96px 0; }
.section--light { background: var(--off); }
.section--dark  { background: var(--navy); color: var(--white); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; }

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,39,68,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.nav-wrap--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-t { color: var(--gold); }
.logo-sub { font-weight: 400; opacity: .7; margin-left: 4px; font-size: .95rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3060 100%);
  padding: 100px 0 80px;
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* Demo cards */
.card-stack { position: relative; }

.demo-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.demo-card--after {
  background: rgba(34,197,94,.08);
  border-color: rgba(34,197,94,.25);
}

.demo-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.demo-label--green { color: var(--green); }

.demo-body { margin-bottom: 14px; }
.demo-bar {
  height: 9px;
  background: rgba(255,255,255,.35);
  border-radius: 4px;
  margin-bottom: 10px;
}
.demo-bar--green {
  background: rgba(34,197,94,.55);
}

.demo-time {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.demo-time--green { color: var(--green); }

/* ─── TRUST BAR ─────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--light);
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,39,68,.08);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-inner span { font-size: .85rem; font-weight: 600; color: var(--gray); }
.tool-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tool-list li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--light);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

/* ─── STEPS ─────────────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.step p   { font-size: .9rem; color: var(--gray); line-height: 1.65; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--light);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ─── PRICING ───────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card--full { grid-column: 1 / -1; }

.pricing-card {
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fdf8ee 0%, #fff 100%);
  box-shadow: var(--shadow);
}

.pricing-card--full {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.pricing-full-left {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-full-left .btn { align-self: flex-start; margin-top: 4px; }
.pricing-full-right {
  flex: 1 1 280px;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing-tag { font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-freq { font-size: 1rem; font-weight: 500; color: var(--gray); }
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; }
.pricing-desc { font-size: .9rem; color: var(--gray); }

.pricing-list { display: flex; flex-direction: column; gap: 8px; }
.pricing-list li {
  font-size: .88rem;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
}
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ─── INDUSTRIES ────────────────────────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.industry-icon { font-size: 1.8rem; margin-bottom: 14px; }
.industry-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.industry-card p  { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ─── ABOUT ─────────────────────────────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 24px; line-height: 1.2; }
.about-text p  { font-size: .95rem; color: var(--gray); margin-bottom: 16px; line-height: 1.75; }
.about-text .btn { margin-top: 8px; }

.about-values { display: flex; flex-direction: column; gap: 24px; }

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--off);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.value-icon {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.value-item p      { font-size: .88rem; color: var(--gray); margin: 0; }

/* ─── CONTACT ───────────────────────────────────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-text p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 28px; line-height: 1.75; }

.contact-facts { display: flex; flex-direction: column; gap: 10px; }
.contact-facts li { font-size: .9rem; color: rgba(255,255,255,.7); }
.contact-facts a { color: var(--gold2); text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--navy);
  transition: border-color .15s;
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,75,.12); }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
  background: #111827;
  padding: 48px 0;
  text-align: center;
  color: rgba(255,255,255,.5);
}
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-tagline { font-size: .88rem; margin-bottom: 16px; }
.footer-legal { font-size: .8rem; }
.footer-legal a { color: var(--gold2); }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .pricing-card--full { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .pricing-card--full { flex-direction: column; gap: 20px; }
  .pricing-full-left,
  .pricing-full-right { flex: 0 0 auto; width: 100%; }
  .pricing-full-left .btn { align-self: stretch; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links--open { display: flex; }
  .nav-links li    { width: 100%; }
  .nav-links a     { display: block; padding: 14px 24px; }
  .nav-toggle      { display: block; }
  .nav-wrap        { position: relative; }

  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .steps            { flex-direction: column; }
  .step-arrow       { transform: rotate(90deg); margin: 0 auto; }
  .about-inner,
  .contact-inner    { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .pricing-card--full { flex-direction: column; }
  .industry-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr; }
  .hero-cta      { flex-direction: column; }
  .trust-inner   { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 28px 20px; }
}
