/* ═══════════════════════════════════════════════════════
   SVS DigiCorp — Global Design System
   Colors: Crimson, Magenta, Rose, Gold, Warm White
   Typography: Syne (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Brand Palette — Crimson / Magenta */
  --crimson: #C0281A;
  --magenta: #7B1A5A;
  --brand-mid: #A8213A;
  --rose: #E87090;
  --rose-light: #FDF0F3;
  --gold: #D4920A;
  --gold-light: #FFF8E6;
  --gold-hover: #b87c08;
  --grad: linear-gradient(135deg, #7B1A5A, #A8213A, #C0281A);
  --grad-h: linear-gradient(90deg, #f20b8a, #cf1c2b);
  --grad-em: linear-gradient(180deg, #ed0d2b, #ca206a);
  --grad-cta: linear-gradient(90deg, #8f1870, #cf1c2b);

  /* Legacy aliases — keep these so old references still resolve */
  --blue: #C0281A;
  /* remapped to crimson */
  --navy: #7B1A5A;
  /* remapped to magenta */
  --navy-light: #A8213A;
  /* remapped to brand-mid */

  /* Neutral Palette */
  --ink: #1A1212;
  --ink-2: #3D2A2A;
  --surface: #FBF8F8;
  --card: #FFFFFF;
  --muted: #7A6A6A;
  --border: #EDE5E5;
  --dark: #130A0A;

  /* Semantics */
  --green: #1A7A50;
  --red: #DC3545;
  --orange: #e8610a;

  /* Utility */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(120, 20, 60, .06);
  --shadow-md: 0 4px 20px rgba(120, 20, 60, .10);
  --shadow-lg: 0 8px 40px rgba(120, 20, 60, .15);
  --transition: all .3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 36px;
}

.section-header {
  margin-bottom: 8px;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

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

.section--navy {
  background: var(--dark);
  color: #fff;
}

.section--navy h2,
.section--navy h3,
.section--navy p {
  color: #fff;
}

.section--navy .section-label {
  color: var(--rose);
}

.section--navy .section-label::before {
  background: var(--rose);
}

.section--white {
  background: var(--card);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(120, 20, 60, .06);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 20px rgba(120, 20, 60, .1);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.navbar.scrolled .navbar-logo {
  color: var(--ink);
}

.navbar-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.navbar-logo span {
  color: var(--crimson);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-links a {
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-links a:hover {
  color: var(--crimson);
  background: var(--rose-light);
}

.navbar-links a.active {
  color: var(--crimson);

}

.navbar.scrolled .navbar-links a {
  /* color: var(--ink-2); */
}

.navbar.scrolled .navbar-links a:hover {
  color: var(--crimson);
  background: var(--rose-light);
}

.navbar.scrolled .navbar-links a.active {
  color: var(--crimson);
  
}

.navbar-cta {
  background: var(--grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(192, 40, 26, .25);
}

.navbar-cta:hover {
  background: var(--grad-cta);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 40, 26, .35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--ink);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: #fff;
}

.mobile-menu .navbar-cta {
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  padding: 14px 28px;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 8px;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192, 40, 26, .3);
}

.btn--primary:hover {
  background: var(--grad-h);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #F0B429);
  color: #fff;
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--border);
  border: 2px solid var(--crimson);
}

.btn--outline:hover {
  background: var(--rose-light);
  color: var(--crimson);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.btn--sm {
  font-size: .82rem;
  padding: 9px 20px;
}

.btn--lg {
  font-size: 1rem;
  padding: 16px 36px;
}

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card--lift:hover {
  border-left: 3px solid var(--crimson);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: var(--rose-light);
  color: var(--crimson);
}

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.card-text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--crimson);
  transition: var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* ═══════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════ */
.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ═══════════════════════════════════════
   BADGES / PILLS / TAGS
   ═══════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.badge--blue {
  background: var(--rose-light);
  color: var(--crimson);
}

.badge--gold {
  background: var(--gold-light);
  color: #8a5a00;
}

.badge--green {
  background: #d1fae5;
  color: #065f46;
}

.badge--navy {
  background: var(--dark);
  color: #fff;
}

.badge--red {
  background: #fee2e2;
  color: #991b1b;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: var(--transition);
}

.pill:hover {
  background: rgba(255, 255, 255, .18);
}

/* ═══════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════ */
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-card--featured {
  background: var(--grad);
  border-color: var(--magenta);
  color: #fff;
}

.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-name,
.pricing-card--featured .pricing-desc {
  color: #fff;
}

.pricing-card--featured .pricing-features li {
  color: rgba(255, 255, 255, .8);
}

.pricing-best {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #F0B429);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pricing-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--crimson);
  margin-bottom: 4px;
}

.pricing-period {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  padding: 6px 0;
  color: var(--muted);
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .85rem;
}

/* ═══════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 50px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

.process-step:last-child .step-connector {
  display: none;
}

.step-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  font-size: .85rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   TABLES
   ═══════════════════════════════════════ */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.table th {
  background: var(--dark);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  text-align: left;
  padding: 14px 18px;
  letter-spacing: .03em;
}

.table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.table tr:nth-child(even) td {
  background: #fafaf8;
}

.table tr:last-child td {
  border-bottom: none;
}

.table .highlight-row td {
  background: #fffbea;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   ACCORDION / FAQ
   ═══════════════════════════════════════ */
.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--card);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  background: #fafaf8;
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.accordion-content {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TABS
   ═══════════════════════════════════════ */
.tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  padding: 10px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--crimson);
}

.tab-btn.active {
  color: var(--crimson);
  border-bottom-color: var(--crimson);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ═══════════════════════════════════════
   MODAL
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--card);
  border-radius: var(--radius);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  animation: modalSlideIn .3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f4f3ef;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--border);
  color: var(--ink);
}

.modal h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.modal p {
  font-size: .88rem;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--ink);
  background: var(--card);
  transition: var(--transition);
  outline: none;
}

.form-select option {
  color: var(--ink);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(192, 40, 26, .1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

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

.form-success {
  background: #d1fae5;
  color: #065f46;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  text-align: center;
  display: none;
}

.form-success.show {
  display: block;
}

/* ═══════════════════════════════════════
   HERO SECTIONS
   ═══════════════════════════════════════ */
.hero {
  background: var(--surface);
  color: var(--ink);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 112, 144, .08) 0%, rgba(192, 40, 26, .04) 50%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 26, 90, .06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: var(--ink);
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-proof-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-proof-item span {
  font-size: .78rem;
  color: var(--muted);
}

.hero-visual {
  width: 100%;
  max-width: 420px;
  height: 340px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-h);
}

.hero-visual-content {
  text-align: center;
  padding: 40px;
}

.hero-visual-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.hero-visual-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

/* Page Hero (for inner pages) */
.page-hero {
  background: var(--surface);
  color: var(--ink);
  padding: 120px 0 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-h);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 112, 144, .07) 0%, transparent 65%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--crimson);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--magenta);
}

.breadcrumb span {
  color: var(--muted);
}

.page-hero h1 {
  color: var(--ink);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
}

.page-hero .trust-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rose-light);
  border: 1px solid rgba(192, 40, 26, .15);
  color: var(--crimson);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin: 4px 2px;
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-bar {
  background: var(--grad);
  padding: 36px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   TRUST BADGES ROW
   ═══════════════════════════════════════ */
.trust-bar {
  background: var(--ink);
  padding: 14px 0;
  text-align: center;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
}

.trust-bar-inner span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-bar-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

/* ═══════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ═══════════════════════════════════════ */
.testimonials {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform .5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-role {
  font-size: .8rem;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.testimonial-dot.active {
  background: var(--crimson);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════
   OFFICE CARDS
   ═══════════════════════════════════════ */
.office-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.office-card:hover {
  box-shadow: var(--shadow-md);
}

.office-city {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-address {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.office-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.office-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--crimson);
  font-weight: 500;
}

.office-phone:hover {
  color: var(--magenta);
}

.office-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   DOWNLOAD CARDS
   ═══════════════════════════════════════ */
.download-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.download-card:hover {
  box-shadow: var(--shadow-sm);
}

.download-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.download-info {
  flex: 1;
}

.download-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.download-desc {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.download-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.os-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  background: var(--rose-light);
  color: var(--crimson);
}

.os-badge.win {
  background: #dbeafe;
  color: #1e40af;
}

.os-badge.mac {
  background: #f3e8ff;
  color: #6b21a8;
}

.os-badge.linux {
  background: #fef3c7;
  color: #92400e;
}

/* ═══════════════════════════════════════
   SEARCH & FILTER
   ═══════════════════════════════════════ */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 250px;
  padding: 12px 18px 12px 44px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .9rem;
  background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") 16px center no-repeat;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(192, 40, 26, .1);
}

.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
}

.filter-tab:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.filter-tab.active {
  background: var(--grad);
  color: #fff;
  border-color: var(--magenta);
}

/* ═══════════════════════════════════════
   CALLOUT / NOTICE
   ═══════════════════════════════════════ */
.callout {
  border-left: 3px solid var(--crimson);
  background: var(--rose-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 24px;
  font-size: .9rem;
  margin: 20px 0;
}

.callout--gold {
  border-color: var(--gold);
  background: #fffbea;
  color: #92400e;
}

.callout--gold strong {
  color: #92400e;
}

.callout--red {
  border-color: var(--red);
  background: #fff0f0;
}

.callout strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  margin-bottom: 4px;
  color: var(--ink);
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .6);
  }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--crimson);
  color: #fff;
}

.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  padding: 5px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .35);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ═══════════════════════════════════════
   PARTNER CTA BAND
   ═══════════════════════════════════════ */
.partner-cta-band {
  background: var(--dark);
  padding: 60px 0;
}

.partner-cta-split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.partner-cta-left {
  flex: 1.2;
}

.partner-cta-left h2 {
  color: #fff;
  margin-bottom: 16px;
}

.partner-cta-left p {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.partner-cta-right {
  flex: .8;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.partner-logo-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
}

.partner-logo-card .name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}

/* ═══════════════════════════════════════
   USE CASE PILLS
   ═══════════════════════════════════════ */
.usecase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ═══════════════════════════════════════
   DSC TYPE CARDS
   ═══════════════════════════════════════ */
.dsc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.dsc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.dsc-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
  background: var(--grad);
  color: #fff;
}

.dsc-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.dsc-usecases {
  margin-bottom: 20px;
}

.dsc-usecases li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  padding: 4px 0;
}

.dsc-usecases li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .8rem;
}

/* ═══════════════════════════════════════
   TEAM CARDS
   ═══════════════════════════════════════ */
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: .82rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   TIMELINE / MILESTONES
   ═══════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid var(--surface);
}

.timeline-year {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--crimson);
  margin-bottom: 4px;
}

.timeline-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: .85rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   DSC CARDS
   ═══════════════════════════════════════ */
.dsc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.dsc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.dsc-badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--grad);
  color: #fff;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.dsc-usecases {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.dsc-usecases li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--muted);
  padding: 5px 0;
}

.dsc-usecases li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .82rem;
}

/* ═══════════════════════════════════════
   DOWNLOAD CARDS
   ═══════════════════════════════════════ */
.download-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.download-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--crimson);
}

.download-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.download-info {
  flex: 1;
  min-width: 0;
}

.download-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.download-desc {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.download-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   OS BADGES
   ═══════════════════════════════════════ */
.os-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.os-badge.win {
  background: #dbeafe;
  color: #1e40af;
}

.os-badge.mac {
  background: #f3e8ff;
  color: #7c3aed;
}

.os-badge.linux {
  background: #fef3c7;
  color: #92400e;
}

/* ═══════════════════════════════════════
   CALLOUTS
   ═══════════════════════════════════════ */
.callout {
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: .9rem;
  line-height: 1.6;
  border-left: 4px solid;
}

.callout--gold {
  background: #fffbea;
  border-color: var(--gold);
  color: #7c5e00;
}

.callout--blue {
  background: var(--rose-light);
  border-color: var(--crimson);
  color: var(--crimson);
}

/* ═══════════════════════════════════════
   SEARCH BAR
   ═══════════════════════════════════════ */
.search-bar {
  margin-bottom: 24px;
}

.search-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--ink);
  background: var(--card);
  transition: var(--transition);
  outline: none;
}

.search-input:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(192, 40, 26, .08);
}

/* ═══════════════════════════════════════
   FILTER TABS
   ═══════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  background: #f4f3ef;
  border-radius: 100px;
  transition: var(--transition);
}

.filter-tab:hover {
  color: var(--ink);
  background: #e8e7e3;
}

.filter-tab.active {
  background: var(--grad);
  color: #fff;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-cta-split {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .navbar-links,
  .navbar .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero p {
    margin: 0 auto 28px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .page-hero .hero-btns {
    justify-content: flex-start;
  }

  .partner-cta-left {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .stats-grid {
    gap: 16px;
  }

  .tabs {
    gap: 0;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: .75rem;
  }
}

/* ═══════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 580px;
  max-height: 750px;
  overflow: hidden;
  background: var(--surface);
  margin-top: 68px;
  /* navbar height */
}

/* Each slide */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Blurred background image */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(0px);
  transform: scale(1.02);
  opacity: 0.08;
}

/* Content layout */
.slide-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  flex: 1.1;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .6s ease .2s, transform .6s ease .2s;

  /* ── Glassmorphism ── */
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateX(0);
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-light);
  border: 1px solid rgba(192, 40, 26, .15);
  color: var(--crimson);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}

.slide-content h1 em {
  font-style: normal;
  background: var(--grad-em);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 0.5px #fdfdfd;
}

.slide-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}

.slide-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.slide-badge {
  background: var(--rose-light);
  border: 1px solid rgba(192, 40, 26, .12);
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

.slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right visual panel */
.slide-visual {
  flex: .9;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .6s ease .35s, transform .6s ease .35s;
}

.slide.active .slide-visual {
  opacity: 1;
  transform: translateX(0);
}

.slide-visual img {
  width: 100%;
  max-width: 500px;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* Spacer for slide 1 — preserves the same left-content width as other slides */
.slide-visual-spacer {
  flex: .9;
}

/* Slide 1 — SVG hero positioned absolutely on the far right */
.slide-visual--svg {
  position: absolute;
  right: 0;
  top: 58%;
  transform: translateY(-50%) translateX(0);
  flex: none;
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .6s ease .35s, transform .6s ease .35s;
  pointer-events: none;
}

.slide.active .slide-visual--svg {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.slide-visual--svg img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
  box-shadow: 0 4px 16px rgba(192, 40, 26, .3);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 28px;
  height: 6px;
  border-radius: 100px;
  background: rgba(120, 20, 60, .2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--crimson);
  width: 44px;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(120, 20, 60, .1);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: var(--grad-h);
  width: 0%;
  transition: width linear;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: auto;
    min-height: 100svh;
    max-height: none;
    margin-top: 64px;
  }

  .slide {
    position: relative;
    display: none;
    padding: 48px 0 80px;
  }

  .slide.active {
    display: flex;
  }

  .slide-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0;
    text-align: center;
  }

  .slide-content {
    order: 2;
  }

  .slide-visual {
    order: 1;
  }

  .slide-visual img {
    height: 220px;
    max-width: 100%;
  }

  .slide-btns {
    justify-content: center;
  }

  .slide-badges {
    justify-content: center;
  }

  .slider-arrow {
    top: auto;
    bottom: 48px;
    transform: none;
  }

  .slide-visual--svg {
    display: none;
  }

  .slider-prev {
    left: calc(50% - 60px);
  }

  .slider-next {
    right: calc(50% - 60px);
  }
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE GLASSMORPHISM
   Scoped to .home-page so other pages are unaffected
   ═══════════════════════════════════════════════════════ */

/* ─── 1. Global page background ─── */
.home-page {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(123, 26, 90, 0.85) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(192, 40, 26, 0.60) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(30, 10, 60, 0.90) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 90%, rgba(100, 20, 60, 0.70) 0%, transparent 50%),
    linear-gradient(150deg, #1a0530 0%, #2d0a1f 35%, #0f0820 65%, #1a0520 100%);
  background-attachment: fixed;
}

/* ─── 2. Sections — transparent so background shows through ─── */
.home-page .section,
.home-page .section--grey,
.home-page .section--white,
.home-page .section--navy,
.home-page .hero-slider {
  background: transparent;
}

/* ─── 3. Section text colors ─── */
.home-page h2,
.home-page .section h2,
.home-page .section h3,
.home-page .section p,
.home-page .section--white h2,
.home-page .section--white h3,
.home-page .section--grey h2,
.home-page .section--grey h3 {
  color: #fff;
}

.home-page .section p,
.home-page .section--white p,
.home-page .section--grey p {
  color: rgba(255, 255, 255, 0.70);
}

.home-page .section-label,
.home-page .section--white .section-label,
.home-page .section--grey .section-label {
  color: var(--rose);
}

.home-page .section-label::before,
.home-page .section--white .section-label::before,
.home-page .section--grey .section-label::before {
  background: var(--rose);
}

/* ─── 4. Decorative blobs behind each section ─── */
.home-page .section,
.home-page .section--grey,
.home-page .section--white {
  position: relative;
  isolation: isolate;
}

.home-page .section::before,
.home-page .section--grey::before,
.home-page .section--white::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(123, 26, 90, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 30%, rgba(192, 40, 26, 0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.home-page .section>.container,
.home-page .section--grey>.container,
.home-page .section--white>.container {
  position: relative;
  z-index: 1;
}

/* ─── 5. Navbar glass ─── */
.home-page .navbar {
  background: rgba(20, 5, 35, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.30);
}

.home-page .navbar.scrolled {
  background: rgba(20, 5, 35, 0.75);
}

.home-page .navbar-links a,
.home-page .navbar-logo {
  color: rgba(255, 255, 255, 0.88);
}

.home-page .navbar-links a:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.home-page .hamburger span {
  background: #fff;
}

/* ─── 6. Stats bar ─── */
.home-page .stats-bar {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

/* ─── 7. Service cards ─── */
.home-page .card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-page .card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

.home-page .card--lift:hover {
  border-left: 3px solid rgba(232, 112, 144, 0.70);
}

.home-page .card-title {
  color: #fff;
}

.home-page .card-text {
  color: rgba(255, 255, 255, 0.62);
}

.home-page .card-icon {
  background: rgba(232, 112, 144, 0.18);
  color: var(--rose);
}

.home-page .card-link {
  color: var(--rose);
}

/* ─── 8. Process steps ─── */
.home-page .process-step {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.20);
}

.home-page .step-title {
  color: #fff;
}

.home-page .step-desc {
  color: rgba(255, 255, 255, 0.58);
}

.home-page .step-connector {
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.20) 0, rgba(255, 255, 255, 0.20) 8px,
      transparent 8px, transparent 16px);
}

/* ─── 9. Use-cases (dark section) ─── */
.home-page .section--navy {
  background: rgba(10, 3, 20, 0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-page .pill {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-page .pill:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ─── 10. Pricing cards ─── */
.home-page .pricing-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-page .pricing-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.home-page .pricing-card--featured {
  background: rgba(168, 33, 58, 0.42);
  border-color: rgba(232, 112, 144, 0.45);
  box-shadow: 0 12px 40px rgba(192, 40, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-page .pricing-card--featured:hover {
  background: rgba(168, 33, 58, 0.58);
}

.home-page .pricing-name,
.home-page .pricing-price {
  color: #fff;
}

.home-page .pricing-desc,
.home-page .pricing-period {
  color: rgba(255, 255, 255, 0.58);
}

.home-page .pricing-features li {
  color: rgba(255, 255, 255, 0.68);
}

/* ─── 11. Partner CTA band ─── */
.home-page .partner-cta-band {
  background: rgba(8, 2, 18, 0.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.home-page .partner-logo-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
}

.home-page .partner-logo-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
}

/* ─── 12. Office location cards ─── */
.home-page .office-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.home-page .office-card:hover {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.30);
}

.home-page .office-city {
  color: #fff;
}

.home-page .office-address {
  color: rgba(255, 255, 255, 0.62);
}

.home-page .office-phone {
  color: rgba(255, 255, 255, 0.75);
}

.home-page .office-phone:hover {
  color: var(--rose);
}

/* ─── 13. Testimonials ─── */
.home-page .testimonial-inner {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-page .testimonial-quote {
  color: rgba(255, 255, 255, 0.88);
}

.home-page .testimonial-author {
  color: #fff;
}

.home-page .testimonial-role {
  color: rgba(255, 255, 255, 0.55);
}

/* ─── 14. Trust bar ─── */
.home-page .trust-bar {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-page .trust-bar-inner span,
.home-page .trust-bar-inner {
  color: rgba(255, 255, 255, 0.80);
}

/* ─── 15. Hero slide content upgrade ─── */
.home-page .slide-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-page .slide-content h1 {
  color: #fff;
}

.home-page .slide-content p {
  color: rgba(255, 255, 255, 0.76);
}

.home-page .slide-tag {
  background: rgba(232, 112, 144, 0.18);
  border-color: rgba(232, 112, 144, 0.35);
  color: #f2b8cc;
}

.home-page .slide-badge {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}

/* ─── 16. Slider controls ─── */
.home-page .slider-dot {
  background: rgba(255, 255, 255, 0.25);
}

.home-page .slider-arrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-page .slider-arrow:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

/* ─── 17. Footer glass ─── */
.home-page .footer {
  background: rgba(10, 2, 20, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* ─── 18. Mobile menu glass ─── */
.home-page .mobile-menu {
  background: rgba(15, 4, 28, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ─── 19. Responsive ─── */
@media (max-width: 768px) {
  .home-page .process-step {
    width: 100%;
    max-width: 320px;
  }
}

/* ─── Inner-page components ─── */

/* Page Hero (banner on inner pages) */
.home-page .page-hero {
  background: rgba(20, 5, 40, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.home-page .page-hero::after {
  background: radial-gradient(ellipse at 80% 50%, rgba(192, 40, 26, 0.18) 0%, transparent 60%);
}

.home-page .page-hero h1 {
  color: #fff;
}

.home-page .page-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .breadcrumb,
.home-page .breadcrumb span {
  color: rgba(255, 255, 255, 0.50);
}

.home-page .breadcrumb a {
  color: var(--rose);
}

/* Trust chips */
.home-page .trust-chip {
  background: rgba(232, 112, 144, 0.15);
  border-color: rgba(232, 112, 144, 0.30);
  color: #f2b8cc;
}

/* DSC type cards */
.home-page .dsc-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.home-page .dsc-card:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.30);
  transform: translateY(-4px);
}

.home-page .dsc-card h3 {
  color: #fff;
}

.home-page .dsc-usecases li {
  color: rgba(255, 255, 255, 0.65);
}

/* Pricing / data table */
.home-page .table th {
  background: rgba(10, 3, 20, 0.70);
  color: rgba(255, 255, 255, 0.90);
}

.home-page .table td {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.80);
}

.home-page .table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.08);
}

.home-page .table .highlight-row td {
  background: rgba(212, 146, 10, 0.15);
}

/* Download cards */
.home-page .download-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
}

.home-page .download-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.25);
}

.home-page .download-name {
  color: #fff;
}

.home-page .download-desc {
  color: rgba(255, 255, 255, 0.60);
}

/* Accordion / FAQ */
.home-page .accordion-item {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.home-page .accordion-header {
  background: transparent;
  color: rgba(255, 255, 255, 0.90);
}

.home-page .accordion-header:hover {
  background: rgba(255, 255, 255, 0.06);
}

.home-page .accordion-icon {
  color: rgba(255, 255, 255, 0.50);
}

.home-page .accordion-content {
  color: rgba(255, 255, 255, 0.62);
}

/* Timeline */
.home-page .timeline::before {
  background: rgba(255, 255, 255, 0.18);
}

.home-page .timeline-item::before {
  background: var(--rose);
  border-color: transparent;
}

.home-page .timeline-year {
  color: var(--rose);
}

.home-page .timeline-title {
  color: #fff;
}

.home-page .timeline-desc {
  color: rgba(255, 255, 255, 0.58);
}

/* Form inputs */
.home-page .form-input,
.home-page .form-select,
.home-page .form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.home-page .form-input::placeholder,
.home-page .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.home-page .form-input:focus,
.home-page .form-select:focus,
.home-page .form-textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 112, 144, 0.18);
}

.home-page .form-label {
  color: rgba(255, 255, 255, 0.80);
}

/* Modal */
.home-page .modal {
  background: rgba(18, 5, 32, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.50);
}

.home-page .modal h3 {
  color: #fff;
}

.home-page .modal p {
  color: rgba(255, 255, 255, 0.65);
}

.home-page .modal-close {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.70);
}

.home-page .modal-close:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
}

/* Callouts */
.home-page .callout {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--rose);
  color: rgba(255, 255, 255, 0.80);
}

.home-page .callout--gold {
  background: rgba(212, 146, 10, 0.12);
  border-color: var(--gold);
  color: #f59e0b;
}

.home-page .callout--gold strong {
  color: #f59e0b;
}

/* USB token comparison table & service cards for usb/services pages */
.home-page .card[style*="background:var(--rose-light)"],
.home-page .card[style*="background:#f0fdf4"] {
  background: rgba(255, 255, 255, 0.10) !important;
}