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

/* ── VARIABLES ── */
:root {
  --red:        #FF4D1C;
  --red-d:      #E03A0A;
  --red-bg:     #2C1500;
  --red-lite:   #FFE8E2;
  --char:       #1A1A1A;
  --iron:       #2C2C2C;
  --steel:      #3A3A3A;
  --smoke:      #555;
  --ash:        #888;
  --fog:        #F7F7F5;
  --yellow:     #FFB800;
  --yellow-bg:  #201A00;
  --green:      #22C37A;
  --green-bg:   #0A1F12;
  --white:      #FFFFFF;
  --radius:     12px;
  --ease:       cubic-bezier(.4, 0, .2, 1);
  --transition: .18s var(--ease);
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--char);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, .display { font-family: 'Space Grotesk', sans-serif; }

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

/* ── UTILITIES ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 60px; }
.centered  { text-align: center; }
.centered .sec-sub { margin-left: auto; margin-right: auto; }

/* ── PILLS ── */
.pill {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap; letter-spacing: .02em;
}
.pill-done    { background: #D4F5E4; color: #0D6B3F; }
.pill-active  { background: #FFF0CC; color: #7A4F00; }
.pill-parts   { background: var(--red-lite); color: #991A00; }
.pill-queue   { background: #EFEFED; color: #3A3A3A; }
.pill-offline { background: var(--yellow-bg); color: var(--yellow); }
.pill-free    { background: var(--green-bg); color: var(--green); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  padding: 12px 22px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-red   { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(255,77,28,.25); }
.btn-red:hover { background: var(--red-d); box-shadow: 0 6px 24px rgba(255,77,28,.35); }
.btn-outline-red { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline-red:hover { background: rgba(255,77,28,.08); }
.btn-dark  { background: var(--iron); color: #fff; border: 1px solid var(--steel); }
.btn-dark:hover { background: var(--steel); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn-white { background: #fff; color: var(--char); font-weight: 600; }
.btn-white:hover { background: var(--fog); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.btn-lg  { font-size: 15px; padding: 14px 28px; }
.btn-sm  { font-size: 13px; padding: 8px 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  background: var(--char);
  border-bottom: 1px solid var(--iron);
  padding: 0 60px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 200;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(26,26,26,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(60,60,60,.6);
}
.nav-logo-link {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 800;
  color: #fff; letter-spacing: -.5px;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--ash);
  transition: color var(--transition);
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; border-bottom-color: var(--red); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-login {
  font-size: 14px; color: var(--ash); padding: 8px 14px; cursor: pointer;
  transition: color var(--transition); border-radius: 8px;
}
.nav-login:hover { color: #fff; background: var(--iron); }

/* ── NAV MOBILE BURGER ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 22px; height: 15px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── NAV MOBILE PANEL ── */
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--char); border-bottom: 1px solid var(--iron);
  padding: 16px 20px 24px; z-index: 199;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px; font-size: 15px; color: var(--ash);
  border-radius: 8px; transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: #fff; background: var(--iron); }

/* ── HERO ── */
.hero {
  background: var(--char);
  padding: 88px 60px 0;
  display: flex; gap: 56px; align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--iron);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 75% 40%, rgba(255,77,28,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { flex: 1; padding-bottom: 80px; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-bg); border: 1px solid rgba(255,77,28,.35);
  border-radius: 20px; padding: 6px 14px; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-badge span { font-size: 12px; color: var(--red); font-weight: 500; }
.hero-h {
  font-family: 'Space Grotesk', sans-serif; font-size: 60px; font-weight: 700;
  color: #fff; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero-h em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 16px; color: var(--ash); line-height: 1.8;
  max-width: 440px; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--char);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; margin-left: -9px;
}
.avatar:first-child { margin-left: 0; }
.trust-stars { display: flex; gap: 2px; margin-bottom: 3px; }
.trust-stars i { font-size: 13px; color: var(--yellow); }
.trust-label { font-size: 12px; color: var(--smoke); }

/* ── DASHBOARD PREVIEW ── */
.hero-right { width: 380px; flex-shrink: 0; }
.preview {
  background: var(--iron); border-radius: 14px 14px 0 0;
  border: 1px solid var(--steel); border-bottom: none; overflow: hidden;
  box-shadow: 0 -8px 48px rgba(0,0,0,.4);
}
.preview-bar {
  background: var(--steel); padding: 10px 14px;
  display: flex; align-items: center; gap: 5px;
}
.p-dot { width: 9px; height: 9px; border-radius: 50%; }
.preview-bar span { font-size: 11px; color: var(--smoke); margin-left: 8px; }
.p-nav {
  background: var(--iron); display: flex; padding: 8px 12px; gap: 4px;
  border-bottom: 1px solid var(--steel);
}
.pn { padding: 6px 12px; border-radius: 6px; font-size: 11px; cursor: pointer; }
.pn.on  { background: var(--red); color: #fff; font-weight: 600; }
.pn.off { color: var(--smoke); }
.p-body { padding: 14px; }
.p-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.p-header span { font-size: 11px; color: var(--smoke); }
.p-new-btn {
  background: var(--red); color: #fff; font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; gap: 3px;
}
.p-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 10px; }
.p-stat { background: var(--steel); border-radius: 7px; padding: 10px; }
.p-stat-val { font-size: 16px; font-weight: 600; color: #fff; line-height: 1; }
.p-stat-lbl { font-size: 9px; color: var(--smoke); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }
.p-lbl { font-size: 9px; color: var(--smoke); letter-spacing: .08em; margin-bottom: 6px; text-transform: uppercase; }
.p-chart { background: var(--steel); border-radius: 7px; padding: 10px; margin-bottom: 8px; }
.p-bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; margin-bottom: 6px; }
.p-bar { flex: 1; border-radius: 3px 3px 0 0; }
.p-bar-lbs { display: flex; justify-content: space-between; }
.p-bar-lbs span { font-size: 8px; color: var(--smoke); }
.p-jobs { background: var(--steel); border-radius: 7px; padding: 6px 10px; }
.p-job {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid var(--iron);
}
.p-job:last-child { border-bottom: none; padding-bottom: 0; }
.p-job-ico {
  width: 22px; height: 22px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.p-job-nm { font-size: 11px; color: #ccc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-job-mt { font-size: 9px; color: var(--smoke); }
.p-mpill { font-size: 9px; font-weight: 500; padding: 2px 7px; border-radius: 10px; margin-left: auto; white-space: nowrap; }

/* ── STATS STRIP ── */
.stats-strip {
  background: #0D0D0D;
  display: flex;
  border-bottom: 1px solid var(--iron);
}
.ss { flex: 1; text-align: center; padding: 28px 16px; border-right: 1px solid var(--iron); }
.ss:last-child { border-right: none; }
.ss-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800;
  color: #fff; margin-bottom: 5px; letter-spacing: -.5px;
}
.ss-num span { color: var(--red); }
.ss-lbl { font-size: 12px; color: var(--smoke); }

/* ── SECTIONS ── */
section { padding: 96px 60px; }
.sec-eyebrow {
  font-size: 11px; color: var(--red); letter-spacing: .14em;
  font-weight: 600; margin-bottom: 10px; text-transform: uppercase;
}
.sec-h {
  font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 700;
  letter-spacing: -.6px; line-height: 1.12; margin-bottom: 14px;
}
.sec-sub {
  font-size: 15px; color: var(--ash); line-height: 1.8;
  max-width: 560px; margin-bottom: 52px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 88px 60px 80px;
  text-align: center;
  border-bottom: 1px solid var(--iron);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 100%, rgba(255,77,28,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .sec-eyebrow { margin-bottom: 12px; }
.page-hero .sec-h { font-size: 50px; letter-spacing: -2px; margin-bottom: 16px; }
.page-hero .sec-sub { margin: 0 auto 32px; }
.page-hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FEATURES SECTION ── */
.features-sec { background: var(--iron); }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feat-card {
  background: var(--char); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--steel); border-top: 3px solid var(--red);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  border-color: var(--red);
}
.feat-icon {
  width: 44px; height: 44px; background: var(--red-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feat-icon i { font-size: 21px; color: var(--red); }
.feat-title { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feat-desc { font-size: 13px; color: var(--ash); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how-sec { background: var(--char); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-card {
  background: var(--iron); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--steel); position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.how-num {
  width: 36px; height: 36px; background: var(--red); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 20px;
}
.how-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.how-desc { font-size: 13px; color: var(--ash); line-height: 1.7; }
.how-arrow {
  position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
  color: var(--steel); font-size: 22px; z-index: 1;
}
.how-card:last-child .how-arrow { display: none; }

/* ── BAY MANAGER ── */
.bays-sec { background: var(--iron); }
.bays-inner { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.bays-copy { flex: 1; min-width: 260px; }
.bays-copy .sec-sub { margin-bottom: 28px; }
.bays-ui { flex: 1; min-width: 280px; }
.bays-widget {
  background: #141414; border-radius: 16px; padding: 24px;
  border: 1px solid var(--steel);
  box-shadow: 0 16px 64px rgba(0,0,0,.4);
}
.bays-widget-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;
}
.bays-widget-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: #fff; }
.bays-widget-meta { font-size: 11px; color: var(--smoke); }
.bay-grid-demo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bay-tile {
  background: var(--char); border-radius: 10px; padding: 14px 10px;
  text-align: center; border-top: 3px solid var(--steel);
  transition: transform var(--transition);
}
.bay-tile:hover { transform: translateY(-2px); }
.bay-tile.busy  { border-top-color: var(--red); }
.bay-tile.warn  { border-top-color: var(--yellow); }
.bay-tile.free  { border-top-color: var(--green); }
.bay-num { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.bay-num.free-c { color: var(--green); }
.bay-tech { font-size: 10px; color: var(--smoke); margin-bottom: 8px; }

/* ── TESTIMONIALS ── */
.testi-sec { background: var(--char); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.tcard {
  background: var(--iron); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--steel); border-left: 3px solid var(--red);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tcard:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.tcard-stars i { font-size: 14px; color: var(--yellow); }
.tcard-quote { font-size: 14px; color: #bbb; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 10px; }
.tav {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.tav-name { font-size: 13px; font-weight: 600; color: #fff; }
.tav-loc { font-size: 11px; color: var(--smoke); }

/* ── PRICING ── */
.pricing-sec { background: var(--iron); }
.pricing-toggle {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-bottom: 52px;
}
.pt-label { font-size: 14px; color: var(--ash); }
.pt-switch {
  position: relative; width: 46px; height: 26px;
  background: var(--steel); border-radius: 13px;
  border: none; cursor: pointer; padding: 0;
  transition: background var(--transition);
}
.pt-switch.on { background: var(--red); }
.pt-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  transition: transform var(--transition);
}
.pt-switch.on .pt-thumb { transform: translateX(20px); }
.pt-save {
  font-size: 10px; font-weight: 600; color: var(--green);
  background: var(--green-bg); padding: 2px 7px; border-radius: 10px; margin-left: 4px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 900px; margin: 0 auto; }
.pcard {
  background: var(--char); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--steel); display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.pcard.featured {
  border: 2px solid var(--red); background: #1F0C06;
  box-shadow: 0 0 0 1px var(--red), 0 16px 48px rgba(255,77,28,.2);
}
.pcard.featured:hover { box-shadow: 0 0 0 1px var(--red), 0 20px 56px rgba(255,77,28,.28); }
.ptag {
  display: inline-block; background: var(--red-bg); color: var(--red);
  font-size: 11px; font-weight: 600; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 16px; align-self: flex-start;
}
.pname { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.pprice {
  font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 800;
  color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 4px;
}
.pperiod { font-size: 12px; color: var(--smoke); margin-bottom: 26px; }
.pfeats { list-style: none; flex: 1; margin-bottom: 28px; }
.pfeats li {
  font-size: 13px; color: var(--ash); padding: 8px 0;
  border-bottom: 1px solid var(--iron); display: flex; align-items: center; gap: 9px;
}
.pfeats li:last-child { border-bottom: none; }
.pfeats li i { font-size: 15px; color: var(--red); flex-shrink: 0; }
.pbtn {
  width: 100%; padding: 13px; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; text-align: center; font-family: 'Inter', sans-serif;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
}
.pbtn:hover { transform: translateY(-1px); }
.pbtn-red { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(255,77,28,.25); }
.pbtn-red:hover { background: var(--red-d); box-shadow: 0 6px 24px rgba(255,77,28,.35); }
.pbtn-outline { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.pbtn-outline:hover { background: var(--red-bg); }

/* ── CTA BAND ── */
.cta-band { background: var(--red); padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 110%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; }
.cta-band-badge {
  display: inline-flex; margin-bottom: 20px;
}
.cta-band-badge span {
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3);
  font-size: 12px; font-weight: 600; color: #fff;
  padding: 4px 14px; border-radius: 20px;
}
.cta-band-h {
  font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 800;
  color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 14px;
}
.cta-band-sub { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.cta-band-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #0D0D0D; padding: 72px 60px 36px;
  border-top: 1px solid var(--iron);
}
.footer-top { display: flex; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.footer-brand { max-width: 240px; flex-shrink: 0; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-logo span { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.footer-brand p { font-size: 13px; color: var(--smoke); line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { color: var(--smoke); transition: color var(--transition); }
.footer-socials a:hover { color: var(--red); }
.footer-socials i { font-size: 18px; }
.footer-cols { flex: 1; display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 120px; }
.footer-col-title { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 13px; color: var(--smoke); transition: color var(--transition); }
.footer-col-links a:hover { color: var(--red); }
.footer-bot {
  border-top: 1px solid var(--iron); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bot span { font-size: 13px; color: var(--smoke); }
.footer-bot-links { display: flex; gap: 20px; }
.footer-bot-links a { font-size: 13px; color: var(--smoke); transition: color var(--transition); }
.footer-bot-links a:hover { color: var(--red); }

/* ── FEATURE DETAIL (features page) ── */
.feat-detail-sec { padding: 96px 60px; }
.feat-detail-sec:nth-child(even) { background: var(--iron); }
.feat-detail { display: flex; gap: 64px; align-items: center; }
.feat-detail.reverse { flex-direction: row-reverse; }
.feat-detail-copy { flex: 1; }
.feat-detail-copy .sec-sub { margin-bottom: 28px; }
.feat-detail-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feat-detail-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ash); line-height: 1.6; }
.feat-detail-list li i { font-size: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.feat-detail-visual { flex: 1; min-width: 280px; }
.feat-mock {
  background: var(--iron); border-radius: 16px; padding: 24px;
  border: 1px solid var(--steel); box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.feat-mock-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid var(--steel); margin-bottom: 16px;
}
.feat-mock-title { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: #fff; }
.feat-mock-badge { font-size: 10px; font-weight: 600; color: var(--green); background: var(--green-bg); padding: 3px 9px; border-radius: 20px; }
.feat-mock-row {
  display: flex; align-items: center; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--steel);
}
.feat-mock-row:last-child { border-bottom: none; }
.feat-mock-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-mock-row-label { flex: 1; font-size: 12px; color: #ccc; }
.feat-mock-row-sub { font-size: 10px; color: var(--smoke); }

/* ── ABOUT PAGE ── */
.about-mission { background: var(--char); }
.about-values-sec { background: var(--iron); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.value-card {
  background: var(--char); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--steel);
}
.value-icon {
  width: 44px; height: 44px; background: var(--red-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.value-icon i { font-size: 22px; color: var(--red); }
.value-title { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--ash); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 52px; }
.team-card {
  background: var(--iron); border-radius: var(--radius); padding: 28px 24px; text-align: center;
  border: 1px solid var(--steel); transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-3px); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700;
}
.team-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--smoke); margin-bottom: 12px; }
.team-bio  { font-size: 12px; color: var(--ash); line-height: 1.65; }
.about-story { background: var(--char); }
.story-inner { display: flex; gap: 64px; align-items: flex-start; flex-wrap: wrap; }
.story-copy { flex: 1; min-width: 280px; }
.story-copy p { font-size: 15px; color: var(--ash); line-height: 1.85; margin-bottom: 20px; }
.story-stats { flex: 0 0 260px; display: flex; flex-direction: column; gap: 16px; }
.story-stat {
  background: var(--iron); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--steel); border-left: 3px solid var(--red);
}
.story-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 4px; }
.story-stat-lbl { font-size: 13px; color: var(--smoke); }

/* ── BLOG PAGE ── */
.blog-sec { background: var(--char); }
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-filter-btn {
  padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
  background: var(--iron); color: var(--ash); border: 1px solid var(--steel);
  cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.blog-filter-btn:hover,
.blog-filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.blog-card {
  background: var(--iron); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--steel);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.blog-card-thumb {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 48px; position: relative; overflow: hidden;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
  color: var(--red); background: var(--red-bg);
}
.blog-date { font-size: 11px; color: var(--smoke); }
.blog-read-time { font-size: 11px; color: var(--smoke); }
.blog-card-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  color: #fff; line-height: 1.35; margin-bottom: 10px;
}
.blog-card-excerpt { font-size: 13px; color: var(--ash); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-author-av {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.blog-author-name { font-size: 12px; color: var(--smoke); }
.blog-read-link { font-size: 12px; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 4px; }

/* ── CONTACT PAGE ── */
.contact-sec { background: var(--char); }
.contact-inner { display: flex; gap: 64px; flex-wrap: wrap; }
.contact-form-wrap { flex: 1; min-width: 280px; }
.contact-info { flex: 0 0 280px; }
.contact-info-card {
  background: var(--iron); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--steel); margin-bottom: 16px;
}
.contact-info-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i { font-size: 18px; color: var(--red); flex-shrink: 0; margin-top: 1px; }
.contact-info-item-text { font-size: 13px; color: var(--ash); line-height: 1.6; }
.contact-info-item-label { font-size: 11px; color: var(--smoke); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; font-weight: 500; color: #ccc;
  margin-bottom: 7px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%; background: var(--iron); border: 1px solid var(--steel);
  border-radius: 8px; padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--smoke); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,77,28,.15);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { cursor: pointer; appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--smoke); margin-top: 6px; }
.form-alert {
  padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 20px;
}
.form-alert-success { background: var(--green-bg); color: var(--green); border: 1px solid rgba(34,195,122,.3); }
.form-alert-error { background: var(--red-bg); color: var(--red-lite); border: 1px solid rgba(255,77,28,.3); }

/* ── LEGAL PAGES ── */
.legal-sec { background: var(--char); }
.legal-inner { display: flex; gap: 56px; align-items: flex-start; flex-wrap: wrap; }
.legal-toc {
  flex: 0 0 220px; position: sticky; top: 84px;
  background: var(--iron); border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--steel);
}
.legal-toc-title { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.legal-toc a {
  display: block; font-size: 13px; color: var(--smoke); padding: 6px 0;
  border-bottom: 1px solid var(--steel); transition: color var(--transition);
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--red); }
.legal-content { flex: 1; min-width: 280px; }
.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 12px; margin-top: 40px; color: #fff;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 14px; color: var(--ash); line-height: 1.85; margin-bottom: 16px;
}
.legal-content ul {
  padding-left: 20px; margin-bottom: 16px;
}
.legal-content ul li { font-size: 14px; color: var(--ash); line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--red); }
.legal-content a:hover { text-decoration: underline; }
.legal-updated { font-size: 12px; color: var(--smoke); margin-bottom: 32px; }

/* ── PRICING COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 52px; }
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: left; font-size: 13px;
  border-bottom: 1px solid var(--steel);
}
.compare-table thead th {
  background: var(--char); font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 14px; color: #fff; border-bottom: 2px solid var(--iron);
}
.compare-table thead th:first-child { border-radius: 8px 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 8px 0 0; }
.compare-table thead th.featured-col { color: var(--red); }
.compare-table tbody tr { transition: background var(--transition); }
.compare-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.compare-table td:first-child { color: var(--ash); }
.compare-table td i.ti-check { color: var(--green); font-size: 16px; }
.compare-table td i.ti-x { color: var(--steel); font-size: 16px; }
.compare-table .cat-row td {
  background: var(--steel); font-weight: 600; color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em;
}

/* ── FAQ SECTION ── */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 16px; }
.faq-item {
  background: var(--iron); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--steel);
}
.faq-q { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.faq-a { font-size: 13px; color: var(--ash); line-height: 1.75; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transition: opacity .6s var(--ease), transform .6s var(--ease); transform: translateY(20px); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: .1s; }
.fade-delay-2 { transition-delay: .2s; }
.fade-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  section { padding: 72px 40px; }
  .nav { padding: 0 32px; }
  .hero { padding: 72px 40px 0; }
  .hero-h { font-size: 48px; }
  .page-hero { padding: 72px 40px; }
  .page-hero .sec-h { font-size: 40px; }
  .cta-band { padding: 80px 40px; }
  footer { padding: 60px 40px 32px; }
}

@media (max-width: 820px) {
  .nav-links, .nav-login { display: none; }
  .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }
  .hero { flex-direction: column; align-items: flex-start; padding: 56px 24px 0; gap: 36px; }
  .hero-h { font-size: 40px; letter-spacing: -1.5px; }
  .hero-right { width: 100%; }
  .stats-strip { flex-wrap: wrap; }
  .ss { min-width: 50%; border-right: none; border-bottom: 1px solid var(--iron); }
  section { padding: 64px 24px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-arrow { display: none; }
  .bays-inner { flex-direction: column; }
  .bay-grid-demo { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .cta-band { padding: 64px 24px; }
  .cta-band-h { font-size: 32px; }
  footer { padding: 48px 24px 28px; }
  .footer-top { flex-direction: column; }
  .footer-brand { max-width: 100%; }
  .feat-detail { flex-direction: column; gap: 40px; }
  .feat-detail.reverse { flex-direction: column; }
  .story-stats { flex: none; width: 100%; }
  .contact-info { flex: none; width: 100%; }
  .legal-toc { display: none; }
  .page-hero { padding: 64px 24px; }
  .page-hero .sec-h { font-size: 34px; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { gap: 24px; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero-h { font-size: 34px; }
  .sec-h { font-size: 28px; }
  .cta-band-h { font-size: 26px; }
  .blog-grid { grid-template-columns: 1fr; }
  .bay-grid-demo { grid-template-columns: repeat(2, 1fr); }
  .ss { min-width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { max-width: 100%; }
}
