/* =========================================================
       DESIGN TOKENS
    ========================================================= */

:root {
  /* Fonts */
  --font: "IBM Plex Sans", sans-serif;
  --display: "Outfit", sans-serif;

  /* Core */
  --ink: #1c2430;
  --ink-soft: #3d4a5c;
  --muted: #6b7789;
  --line: #d5dce6;
  --surface: #ffffff;
  --surface-2: #f4f6f9;
  --canvas: #e8edf3;
  --light-gray: #C6C6CD;
  --red: #BA1A1A;

  /* Brand */
  --accent: #c45c26;
  --accent-soft: #f3e4db;
  --accent-hover: #a84a1c;

  /* Sidebar / Dark */
  --sidebar: #1e2a38;
  --sidebar-2: #263545;
  --sidebar-end: #172231;

  /* Status */
  --ok: #2d6a4f;
  --ok-bg: #e6f2ec;

  --warn: #9a6700;
  --warn-bg: #fff4d6;

  --info: #1d4e89;
  --info-bg: #e4eef8;

  --danger: #9b2c2c;
  --border: 1px solid rgba(196, 92, 38, 0.2);

  /* Layout */
  /* --container: 1180px; */
  --container: 1880px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(28, 36, 48, 0.06);
  --shadow-md: 0 12px 35px rgba(28, 36, 48, 0.10);
  --shadow-lg: 0 25px 60px rgba(28, 36, 48, 0.14);

  /* Transitions */
  --transition: 180ms ease;
}

/* =========================================================
       RESET
    ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* =========================================================
       GLOBAL
    ========================================================= */

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section--soft {
  background: var(--surface-2);
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 20px;
  border: var(--border);
}

.eyebrow::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
}



.section-heading h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.h2-nowrap {
  white-space: nowrap;
  font-size: clamp(20px, 2.6vw, 38px);
}

.p-nowrap {
  white-space: nowrap;
  max-width: none;
  font-size: clamp(12px, 1.5vw, 14px);
}

.section-heading:has(.h2-nowrap),
.section-heading:has(.p-nowrap) {
  max-width: 960px;
}

@media (max-width: 900px) {
  .h2-nowrap {
    white-space: normal;
  }

  .p-nowrap {
    white-space: normal;
    max-width: 580px;
    font-size: 14px;
  }

  .section-heading:has(.h2-nowrap),
  .section-heading:has(.p-nowrap) {
    max-width: 650px;
  }
}

.section-heading p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

/* =========================================================
       BUTTONS
    ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(196, 92, 38, 0.25);
  outline-offset: 2px;
}

.btn--primary {
  color: #fff;
  background: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================================================
       HEADER
    ========================================================= */

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(213, 220, 230, 0.7);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand-text {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.brand-text-accent {
  color: var(--accent);
}

.footer-brand .brand-text {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  /* margin-left: auto; */
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mobile-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
}

/* =========================================================
       HERO
    ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
  background:
    radial-gradient(circle at 50% 25%,
      rgba(196, 92, 38, 0.08),
      transparent 28%),
    linear-gradient(180deg, #eef2f6 0%, #e8edf3 100%);
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-description {
  max-width: 560px;
  margin: 20px auto 25px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

/* =========================================================
       PRODUCT MOCKUP
    ========================================================= */

.hero-product {
  width: min(850px, 90%);
  margin: 0 auto;
  position: relative;
}

.hero-product::after {
  position: absolute;
  content: "";
  left: 8%;
  right: 8%;
  bottom: -22px;
  height: 50px;
  background: rgba(28, 36, 48, 0.16);
  filter: blur(24px);
  border-radius: 50%;
  z-index: 0;
}

.browser {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(28, 36, 48, 0.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.browser-bar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.browser-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8d0da;
}

.browser-body {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 340px;
}

.mock-sidebar {
  padding: 18px 12px;
  color: #c9d4e0;
  background: var(--sidebar);
}

.mock-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
}

.mock-menu {
  display: grid;
  gap: 6px;
}

.mock-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 5px;
  color: #8a9aab;
  font-size: 10px;
}

.mock-menu-item.active {
  color: #fff;
  background: var(--sidebar-2);
}

.mock-main {
  padding: 22px;
  background: #f7f9fb;
}

.mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.mock-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.mock-small {
  color: var(--muted);
  font-size: 9px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.mock-card {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.mock-card-label {
  color: var(--muted);
  font-size: 8px;
}

.mock-card-value {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.mock-content {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
}

.progress-bar {
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 20px;
  background: #edf0f4;
}

.progress-bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.mock-list {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.mock-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid #edf0f4;
  font-size: 9px;
}

.mock-badge {
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--ok);
  background: var(--ok-bg);
  font-size: 7px;
  font-weight: 600;
}

/* =========================================================
       VALUE STRIP
    ========================================================= */

.value-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.value-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  /* grid-template-columns: repeat(6, 1fr); */
  gap: 25px;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.value-item i {
  color: var(--accent);
  font-size: 17px;
}

.valueitemdot {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--light-gray);
}

/* =========================================================
       PROBLEM / SOLUTION
    ========================================================= */

.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.problem-card,
.solution-card {
  padding: 28px;
  border-radius: var(--radius);
}

.problem-card {
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.solution-card {
  color: #fff;
  background: var(--sidebar);
}

.card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}

.problem-card .card-label {
  color: var(--red);
}

.solution-card .card-label {
  color: white;
}

.checkedicon {
  color: var(--accent);
}

.check-list {
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 16px;
}

.solution-card .check-list li {
  color: #c9d4e0;
}

.check-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-size: 13px;
}

.solution-card .check-list li i {
  color: #e08a4a;
}

/* =========================================================
       CORE FEATURES
    ========================================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-card {
  min-height: 170px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card:hover {
  border-color: rgba(196, 92, 38, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 7px;
  color: var(--accent);
  background: var(--accent-soft);
}

.feature-icon i {
  font-size: 17px;
}

.feature-card h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* =========================================================
       WHY CHOOSE US
    ========================================================= */

.why-section {
  background:
    radial-gradient(circle at 50% 0,
      rgba(196, 92, 38, 0.06),
      transparent 32%),
    var(--surface-2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-card {
  padding: 28px 22px;
  text-align: center;
}

.why-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
}

.why-card h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

.why-card p {
  max-width: 260px;
  margin: auto;
  color: var(--muted);
  font-size: 12px;
}

/* =========================================================
       ROLES
    ========================================================= */

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.role-card {
  padding: 25px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: var(--surface);
}

.role-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto 13px;
  border-radius: 7px;
  color: var(--accent);
  background: var(--accent-soft);
}

.role-card h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.role-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

/* =========================================================
       WORKFLOW
    ========================================================= */

.workflow-wrap {
  position: relative;
  padding: 15px 0;
}

.workflow-line {
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--line);
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.workflow-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.workflow-number {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  background: var(--surface);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
}

.workflow-item h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
}

.workflow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

/* =========================================================
       FEATURE SHOWCASE
    ========================================================= */

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.showcase-copy .eyebrow {
  margin-bottom: 12px;
}

.showcase-copy h2 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.showcase-copy>p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.showcase-list {
  display: grid;
  gap: 9px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
}

.showcase-list i {
  margin-top: 2px;
  color: var(--accent);
}

/* =========================================================
       TASK UI
    ========================================================= */

.task-preview {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.preview-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 600;
}

.status--progress {
  color: var(--warn);
  background: var(--warn-bg);
}

.task-progress {
  margin-bottom: 22px;
}

.task-progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
}

.task-progress-value {
  color: var(--accent);
  font-weight: 600;
}

.task-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 20px;
  background: #edf0f4;
}

.task-progress-track span {
  display: block;
  width: 65%;
  height: 100%;
  background: var(--accent);
}

.task-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.task-meta-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
}

.task-meta-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
}

.task-meta-item strong {
  font-size: 11px;
  font-weight: 600;
}

/* =========================================================
       INVENTORY
    ========================================================= */

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.inventory-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.inventory-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.inventory-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.inventory-icon {
  color: var(--accent);
  font-size: 17px;
}

.inventory-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.inventory-stat {
  padding: 9px;
  border-radius: 5px;
  background: var(--surface-2);
}

.inventory-stat span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 8px;
}

.inventory-stat strong {
  font-size: 11px;
  font-weight: 600;
}

/* =========================================================
       FINANCIAL MANAGEMENT
    ========================================================= */

.finance-section {
  background: var(--surface-2);
}

.finance-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.finance-item {
  position: relative;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}

.finance-item:not(:last-child)::after {
  position: absolute;
  content: "\ea6c";
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--muted);
  font-family: "remixicon";
  font-size: 13px;
}

/* .finance-item.active {
  border-color: var(--accent);
  background: var(--sidebar);
  color: #fff;
} */

.finance-item i {
  color: var(--accent);
  font-size: 18px;
}

.finance-item.active i {
  color: #e08a4a;
}

.finance-item span {
  font-size: 10px;
  font-weight: 500;
}

/* =========================================================
       REPORTS
    ========================================================= */
/* Comprehensive Reporting — exact compact reference treatment */
.reporting-section {
  padding: 58px 0 55px;
  background: #f7f9fb;
}

.reporting-heading {
  max-width: 520px;
  margin-bottom: 28px;
  text-align: center;
}

.reporting-heading h2 {
  margin: 0 0 7px;
  color: #1c2430;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.reporting-heading p {
  max-width: 480px;
  margin: 0 auto;
  color: #6b7789;
  font-size: 12px;
  line-height: 1.45;
}

.reporting-section .reports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 9px;
}

.reporting-section .report-card {
  min-width: 0;
  height: 54px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #edf0f3;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

.reporting-section .report-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.reporting-section .report-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: #c45c26;
  background: #f8ebe4;
}

.reporting-section .report-icon i {
  font-size: 10px;
  line-height: 1;
}

.reporting-section .report-card h3 {
  margin: 0;
  color: #3d4a5c;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.reporting-section .report-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #c45c26;
  background: #f8ebe4;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.reporting-section .report-status i {
  font-size: 6px;
}

.reporting-section .report-progress-wrap {
  flex: 0 0 62px;
  position: relative;
  padding-top: 5px;
}

.reporting-section .report-progress-value {
  position: absolute;
  top: -10px;
  right: 0;
  color: #c45c26;
  font-size: 10px;
  font-weight: 600;
}

.reporting-section .report-progress {
  width: 62px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9edf1;
}

.reporting-section .report-progress span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: #c45c26;
}

@media (max-width:767px) {
  .reporting-section {
    padding: 44px 0 42px;
  }

  .reporting-heading {
    margin-bottom: 22px;
  }

  .reporting-heading h2 {
    font-size: 21px;
  }

  .reporting-section .reports-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:520px) {
  .reporting-section .reports-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
       CTA
    ========================================================= */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0,
      rgba(224, 138, 74, 0.10),
      transparent 35%),
    linear-gradient(180deg,
      var(--sidebar) 0%,
      var(--sidebar-end) 100%);
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.final-cta p {
  max-width: 560px;
  margin: 0 auto 25px;
  color: #aebbc9;
  font-size: 14px;
}

.final-cta .btn--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}

.final-cta .btn--secondary:hover {
  border-color: #fff;
}

/* =========================================================
       FOOTER
    ========================================================= */

.footer {
  padding: 50px 0 25px;
  color: #8a9aab;
  background: var(--sidebar-end);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 40px;
}

.footer-brand {
  color: #fff;
}

.footer-description {
  max-width: 270px;
  margin: 13px 0 0;
  color: #7a8b9c;
  font-size: 11px;
  line-height: 1.6;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 19px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social:hover {
  background: var(--accent);
  color: #fff;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #c9d4e0;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
}

.footer-column ul {
  display: grid;
  gap: 9px;
}

.footer-column a {
  color: #7a8b9c;
  font-size: 11px;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #69798a;
  font-size: 10px;
}

/* =========================================================
       RESPONSIVE — TABLET
    ========================================================= */

@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .nav-links {
    gap: 17px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .hero {
    padding-top: 70px;
  }

  .browser-body {
    grid-template-columns: 125px 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 35px;
  }

  .workflow-line {
    display: none;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .finance-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .finance-item:nth-child(3)::after,
  .finance-item:nth-child(6)::after {
    display: none;
  }

  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 25px;
  }
}

/* =========================================================
       RESPONSIVE — MOBILE
    ========================================================= */

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  /* Header */

  .nav {
    min-height: 58px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  /* Hero */

  .hero {
    padding: 60px 0 45px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    margin-inline: auto;
    margin-bottom: 35px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-product {
    width: 100%;
  }

  .browser-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-main {
    padding: 15px;
  }

  .mock-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mock-content {
    grid-template-columns: 1fr;
  }

  /* Value strip */

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .value-item {
    font-size: 11px;
  }

  /* Problem */

  .split-cards {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .solution-card {
    padding: 22px;
  }

  /* Features */

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  /* Why */

  .why-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .why-card {
    padding: 20px;
  }

  /* Roles */

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .role-card {
    padding: 20px 12px;
  }

  /* Workflow */

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 15px;
  }

  .workflow-item p {
    font-size: 10px;
  }

  /* Showcase */

  .showcase {
    gap: 28px;
  }

  .showcase-copy h2 {
    font-size: 28px;
  }

  .task-preview {
    padding: 15px;
  }

  .task-meta {
    grid-template-columns: 1fr;
  }

  /* Inventory */

  .inventory-grid {
    grid-template-columns: 1fr;
  }

  /* Finance */

  .finance-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .finance-item {
    min-height: 85px;
  }

  .finance-item:not(:last-child)::after {
    display: none;
  }

  /* Reports */

  .reports-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */

  .final-cta {
    padding: 65px 0;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  /* Footer */

  .footer {
    padding-top: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* =========================================================
       SMALL MOBILE
    ========================================================= */

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-product {
    width: 100%;
  }

  .browser {
    border-radius: 7px;
  }

  .browser-bar {
    height: 24px;
  }

  .mock-title {
    font-size: 15px;
  }

  .mock-card-value {
    font-size: 15px;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .finance-flow {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
       REDUCED MOTION
    ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.mobile-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;

  align-items: center;
  justify-content: center;
}

.mobile-toggle i {
  font-size: 15px;
  line-height: 1;
}

/* Mobile menu */

.mobile-nav {
  display: none;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;

    position: fixed;
    top: 48px;
    left: 0;
    right: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);

    box-shadow: 0 12px 25px rgba(28, 36, 48, 0.08);

    /* Closed state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  /* Open state */

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav-inner {
    display: flex;
    flex-direction: column;

    padding: 10px 14px 14px;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;

    min-height: 48px;

    padding: 0 8px;

    color: var(--ink-soft);
    text-decoration: none;

    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid #edf0f3;

    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  .mobile-nav-link:hover {
    color: var(--accent);
    background: var(--accent-soft);
  }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-height: 34px;

    margin-top: 12px;

    border-radius: 5px;

    background: var(--accent);
    color: #fff;

    text-decoration: none;

    font-family: var(--font);
    font-size: 10px;
    font-weight: 500;

    transition: background 0.2s ease;
  }

  .mobile-nav-cta:hover {
    background: var(--accent-hover);
  }

  .mobile-nav-cta i {
    font-size: 12px;
  }

  /* Prevent page scroll when menu is open */

  body.menu-open {
    overflow: hidden;
  }
}
/* =======================================================
   PRIVACY POLICY MODAL
======================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 35, 0.55);
  backdrop-filter: blur(2px);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(15, 23, 35, 0.28);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.modal-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.modal-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink-soft);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.modal-close:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.modal-body {
  padding: 20px 24px 28px;
  overflow-y: auto;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.modal-updated {
  margin: 0 0 14px;
  font-size: 12px;
  color: var(--muted);
}

.modal-body h3 {
  margin: 22px 0 8px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.modal-body h3:first-of-type {
  margin-top: 0;
}

.modal-body p {
  margin: 0 0 12px;
}

.modal-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.modal-body li {
  margin-bottom: 6px;
}

.modal-body a {
  color: var(--accent);
}

body.modal-open {
  overflow: hidden;
}

/* =======================================================
   COOKIE CONSENT BANNER
======================================================== */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  max-width: 780px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 35, 0.22);
  padding: 20px 22px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 320px;
}

.cookie-banner-text h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.cookie-banner-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  padding: 10px 18px;
  font-size: 13px;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* =======================================================
   CONTACT SECTION
======================================================== */

.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-intro .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.contact-intro h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.contact-intro > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 420px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.contact-points i {
  color: var(--accent);
  font-size: 17px;
  flex-shrink: 0;
}

.contact-form {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 92, 38, 0.12);
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
}

.contact-form-note {
  margin: 12px 0 0;
  min-height: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ok);
  text-align: center;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-intro > p {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }
}

/* =======================================================
   FAQS
======================================================== */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 18px 22px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.faq-item p a {
  color: var(--accent);
}

/* =======================================================
   DEMO VIDEO
======================================================== */

.video-section {
  background: var(--surface);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  cursor: pointer;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-wrapper:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent-hover);
}
