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

:root {
  --orange: #f97316;
  --orange-d: #ea6c0a;
  --orange-l: #fff0e6;
  --navy: #0f1923;
  --navy-2: #162030;
  --navy-3: #1e2d40;
  --navy-4: #253347;
  --slate: #8fa3b8;
  --slate-l: #b8c9d9;
  --white: #f4f7fa;
  --green: #22c55e;
  --grid-color: rgba(255, 255, 255, 0.03);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Grid texture overlay ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(15, 25, 35, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--slate-l);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
  border: none;
}

.btn-ghost {
  background: transparent;
  color: var(--slate-l);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.btn-primary-lg {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 11px;
  font-weight: 500;
}

.btn-outline-lg {
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 11px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.btn-outline-lg:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

/* diagonal slash behind hero */
.hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 65%;
  height: 130%;
  background: var(--navy-2);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  border-left: 2px solid rgba(249, 115, 22, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  animation: fadeUp 0.9s var(--ease-out) both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--orange);
  display: block;
}

.hero p {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-l);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--slate);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* Phone mockup in hero */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 300px;
  animation: slideIn 0.9s var(--ease-out) 0.2s both;
}

.phone-frame {
  background: var(--navy-3);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-screen {
  background: #f1f3f5;
  border-radius: 26px;
  overflow: hidden;
}

.mock-header {
  background: #1a2332;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.mock-h-text {
  flex: 1;
}
.mock-h-label {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
}
.mock-h-title {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.mock-badge {
  background: var(--orange);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

.mock-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 10px;
}

.mock-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mock-card-name {
  font-size: 9px;
  font-weight: 600;
  color: #1a2332;
}
.mock-badge-green {
  background: #dcfce7;
  color: #15803d;
  font-size: 7px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 8px;
}
.mock-badge-blue {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 7px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 8px;
}

.mock-progress-wrap {
  margin: 5px 0 3px;
}
.mock-track {
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}
.mock-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--orange);
}
.mock-fill.full {
  background: #1a2332;
}

.mock-sub {
  display: flex;
  justify-content: space-between;
}
.mock-sub span {
  font-size: 7px;
  color: #94a3b8;
}

/* ── Section base ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 5%;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate-l);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Features ── */
.features {
  background: var(--navy);
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header .section-sub {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  overflow: hidden;
}

.feature-card {
  background: var(--navy-2);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--navy-3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.feature-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-l);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.4px;
}

/* ── How it works ── */
.how {
  background: var(--navy-2);
}

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.2s;
}

.step:last-child {
  border-bottom: none;
}
.step:hover .step-num {
  background: var(--orange);
  color: #fff;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-l);
  transition: all 0.2s;
  margin-top: 2px;
}

.step-content {
}
.step-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-l);
  line-height: 1.6;
}

.how-visual {
  position: relative;
}

.dashboard-mock {
  background: var(--navy-3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.dm-header {
  background: #1a2332;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dm-dot.r {
  background: #ef4444;
}
.dm-dot.y {
  background: #f59e0b;
}
.dm-dot.g {
  background: #22c55e;
}
.dm-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
}

.dm-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dm-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.dm-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px;
}
.dm-stat-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dm-stat-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.dm-stat-val.orange {
  color: var(--orange);
}
.dm-stat-val.green {
  color: var(--green);
}

.dm-row-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dm-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a2332;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.dm-name {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
}
.dm-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}
.dm-chips {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.dm-chip {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
}
.dm-chip.hrs {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}
.dm-chip.net {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

/* ── Proformas feature ── */
.proformas {
  background: var(--navy);
}

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

.proformas-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proforma-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--navy-2);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.proforma-item:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: var(--navy-3);
}

.proforma-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.proforma-text {
}
.proforma-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.proforma-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-l);
  line-height: 1.5;
}

/* mini quote card */
.quote-card-mock {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.qcm-header {
  background: #1a2332;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qcm-logo {
  display: flex;
  align-items: center;
  gap: 7px;
}
.qcm-logo-mark {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.qcm-logo-text {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.qcm-num {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 8px;
}

.qcm-body {
  padding: 14px;
}
.qcm-client {
  font-size: 11px;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 10px;
}

.qcm-table {
  width: 100%;
  font-size: 10px;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.qcm-table th {
  text-align: left;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
}
.qcm-table td {
  padding: 6px 0;
  color: #1a2332;
  border-bottom: 1px solid #f1f3f5;
}
.qcm-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.qcm-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #1a2332;
  border-radius: 8px;
}
.qcm-total-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.qcm-total-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.qcm-footer {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.qcm-btn {
  flex: 1;
  padding: 8px;
  border-radius: 7px;
  border: none;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}
.qcm-btn.wa {
  background: #25d366;
  color: #fff;
}
.qcm-btn.pdf {
  background: var(--orange);
  color: #fff;
}

/* ── Plans ── */
.plans {
  background: var(--navy);
}

.plans-header {
  text-align: center;
  margin-bottom: 56px;
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.plan-card {
  background: var(--navy-3);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 32px;
  transition: transform 0.2s var(--ease-out);
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.featured {
  background: var(--navy-4);
  border-color: rgba(249, 115, 22, 0.4);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.plan-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 6px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 24px;
}

.plan-price .currency {
  font-size: 16px;
  color: var(--slate-l);
  margin-top: 4px;
}
.plan-price .amount {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.plan-price .period {
  font-size: 13px;
  color: var(--slate);
  align-self: flex-end;
  margin-bottom: 4px;
}
.plan-price .free-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.plan-desc {
  font-size: 13px;
  color: var(--slate-l);
  line-height: 1.6;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-l);
}

.plan-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}

.plan-features li.disabled {
  opacity: 0.35;
}
.plan-features li.disabled::before {
  content: "×";
  color: var(--slate);
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.plan-cta.free-cta {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.plan-cta.free-cta:hover {
  background: rgba(255, 255, 255, 0.06);
}

.plan-cta.pro-cta {
  background: var(--orange);
  color: #fff;
}
.plan-cta.pro-cta:hover {
  background: var(--orange-d);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.pronto {
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  background: rgba(249, 115, 22, 0.1);
  padding: 1px 7px;
  border-radius: 8px;
  margin-right: 4px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: 100px 5%;
}

.cta-inner {
  background: var(--navy-2);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-text {
}
.cta-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-l);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.cta-note {
  font-size: 12px;
  color: var(--slate);
  text-align: right;
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  background: var(--navy-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 12px;
  color: var(--slate);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: var(--slate);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s;
}
.stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.16s;
}
.stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.24s;
}
.stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.32s;
}
.stagger.visible > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

/* ── Mobile nav ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--slate-l);
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-visual {
    width: 240px;
    right: 2%;
  }
  .hero h1 {
    font-size: clamp(44px, 6vw, 72px);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid .feature-card:last-child {
    grid-column: 1 / -1;
  }
  .how-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .proformas-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 4%;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 4% 60px;
    min-height: auto;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    font-size: clamp(48px, 11vw, 64px);
  }

  section {
    padding: 72px 4%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-grid .feature-card:last-child {
    grid-column: auto;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .cta-inner {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }
  .cta-actions {
    align-items: center;
  }
  .cta-note {
    text-align: center;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
}
