﻿/* ===== valueX — ENTERPRISE DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand */
  --brand: #005eb8;
  --brand-dark: #004a94;
  --brand-hover: #0067cc;
  --brand-50: #f0f7ff;
  --brand-100: #daeeff;
  --brand-200: #b0daff;
  /* Neutrals */
  --black: #0d0d0d;
  --ink: #1a1a1a;
  --ink-700: #333333;
  --ink-600: #4a4a4a;
  --ink-500: #666666;
  --ink-400: #888888;
  --ink-300: #bbbbbb;
  --ink-200: #dddddd;
  --ink-100: #eeeeee;
  --ink-50: #f5f5f5;
  --white: #ffffff;
  --canvas: #f7f8fa;
  /* Success / States */
  --green: #00875a;
  --green-50: #e3fcef;
  --amber: #c05621;
  --red: #c53030;
  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.14);
  --shadow-brand: 0 4px 18px rgba(0,94,184,.35);
  /* Borders */
  --r-sm: 4px; --r-base: 6px; --r-md: 10px; --r-lg: 14px;
  --r-xl: 20px; --r-2xl: 28px; --r-full: 9999px;
  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.65;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.2; color: var(--ink); }
a { color: var(--brand); text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; color: var(--ink-600); }
p:last-child { margin-bottom: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--ink-200);
  padding: .9375rem 0;
  transition: box-shadow .25s var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.navbar-brand {
  display: flex; align-items: center; gap: .625rem;
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 900;
  color: var(--ink); letter-spacing: -.025em;
}
.navbar-brand:hover { color: var(--brand); }
.logo-img { height: 34px; width: auto; }
.brand-text { color: var(--brand); }
.nav-link {
  padding: .45rem .875rem; font-weight: 500; font-size: .875rem;
  color: var(--ink-600); border-radius: var(--r-base);
  transition: color .15s, background .15s;
}
.nav-link:hover, .nav-link.active { color: var(--brand); background: var(--brand-50); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .5rem 1.25rem; background: var(--brand); color: white !important;
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  border-radius: var(--r-base); transition: all .2s var(--ease);
  box-shadow: var(--shadow-brand);
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,94,184,.4); }
.navbar-toggler { border: 1.5px solid var(--ink-200); border-radius: var(--r-base); padding: .4rem .6rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(0,94,184,.15); }
.dropdown-menu {
  border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); padding: .5rem; min-width: 210px;
  margin-top: .5rem;
}
.dropdown-item { padding: .625rem .875rem; border-radius: var(--r-base); font-size: .875rem; color: var(--ink-700); transition: all .15s; }
.dropdown-item:hover { background: var(--brand-50); color: var(--brand); }
.dropdown-divider { border-color: var(--ink-200); margin: .375rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .625rem 1.5rem; border: 1.5px solid transparent; border-radius: var(--r-base);
  font-family: var(--font-body); font-size: .9rem; font-weight: 600; line-height: 1.4;
  cursor: pointer; transition: all .2s var(--ease); white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.btn-primary { background: var(--brand); color: white; border-color: var(--brand); box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); color: white; box-shadow: 0 6px 20px rgba(0,94,184,.4); }
.btn-outline-primary { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline-primary:hover { background: var(--brand-50); transform: translateY(-1px); color: var(--brand); }
.btn-dark { background: var(--ink); color: white; border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-700); transform: translateY(-1px); color: white; }
.btn-white { background: white; color: var(--brand); border-color: white; box-shadow: var(--shadow-lg); }
.btn-white:hover { background: var(--brand-50); transform: translateY(-1px); color: var(--brand-dark); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); color: white; }
.btn-ghost { background: transparent; color: var(--ink-600); border-color: var(--ink-300); }
.btn-ghost:hover { background: var(--ink-50); color: var(--ink); border-color: var(--ink-400); }
.btn-sm { padding: .375rem 1rem; font-size: .8rem; }
.btn-lg { padding: .75rem 1.875rem; font-size: .95rem; border-radius: var(--r-md); }
.btn-xl { padding: .875rem 2.25rem; font-size: 1rem; border-radius: var(--r-md); font-weight: 700; }
.btn-secondary { background: var(--ink-50); color: var(--ink-700); border-color: var(--ink-200); }
.btn-secondary:hover { background: var(--ink-100); color: var(--ink); }

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  display: inline-block; font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.15;
  color: var(--ink); margin-bottom: 1rem;
}
.section-title .accent { color: var(--brand); }
.section-subtitle { font-size: 1.05rem; color: var(--ink-500); line-height: 1.8; }
.display-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.05;
}

/* ===== HERO ===== */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: #0a0f1e; overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 80% at 15% 105%, rgba(0,94,184,.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% -5%, rgba(0,94,184,.25) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
}
.hero-section .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.7); padding: .375rem 1rem; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: #34d399; border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 900; line-height: 1.04; letter-spacing: -.04em; color: white; margin-bottom: 1.5rem; }
.hero-headline .grad { background: linear-gradient(110deg, #60a5fa 0%, #93c5fd 50%, #bfdbfe 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,.52); line-height: 1.8; margin-bottom: 2.25rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.h-stat { }
.h-stat-num { font-family: var(--font-display); font-size: 2.125rem; font-weight: 900; color: white; line-height: 1; display: block; letter-spacing: -.035em; }
.h-stat-lbl { font-size: .68rem; color: rgba(255,255,255,.35); font-weight: 700; text-transform: uppercase; letter-spacing: .09em; display: block; margin-top: .3rem; }

/* Hero mockup */
.hero-visual { position: relative; padding-top: 1rem; }
.mockup-wrap { position: relative; max-width: 520px; margin: 0 auto; }
.mockup-win {
  background: rgba(15,23,42,.96); border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}
.mockup-bar { display: flex; align-items: center; gap: .5rem; padding: .875rem 1rem; background: rgba(0,0,0,.35); border-bottom: 1px solid rgba(255,255,255,.06); }
.m-dots { display: flex; gap: 5px; }
.m-dot { width: 10px; height: 10px; border-radius: 50%; }
.m-dot.r{background:#ff5f56} .m-dot.y{background:#ffbd2e} .m-dot.g{background:#27c93f}
.m-url { flex:1; text-align:center; font-size:.68rem; color:rgba(255,255,255,.22); background:rgba(255,255,255,.04); padding:.25rem .875rem; border-radius:var(--r-full); }
.mockup-body { padding:1.25rem; }
.mock-row { display:flex; align-items:center; justify-content:space-between; margin-bottom:1rem; }
.mock-title { font-size:.85rem; font-weight:700; color:white; font-family:var(--font-display); }
.mock-live { font-size:.6rem; font-weight:700; padding:.2rem .6rem; border-radius:var(--r-full); background:rgba(0,135,90,.15); border:1px solid rgba(0,135,90,.3); color:#34d399; }
.mock-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:.625rem; margin-bottom:1rem; }
.mock-stat { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:8px; padding:.75rem; text-align:center; }
.mock-stat-val { font-size:1.1rem; font-weight:800; color:white; font-family:var(--font-display); display:block; }
.mock-stat-lbl { font-size:.58rem; color:rgba(255,255,255,.32); text-transform:uppercase; letter-spacing:.04em; }
.mock-list { display:flex; flex-direction:column; gap:.5rem; }
.mock-item { display:flex; align-items:center; gap:.75rem; padding:.75rem; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); border-radius:8px; }
.mock-icon { width:32px; height:32px; border-radius:6px; background:linear-gradient(135deg,rgba(0,94,184,.5),rgba(0,103,204,.25)); display:flex; align-items:center; justify-content:center; font-size:.8rem; color:#93c5fd; flex-shrink:0; }
.mock-info { flex:1; min-width:0; }
.mock-name { font-size:.75rem; font-weight:600; color:rgba(255,255,255,.85); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mock-meta { font-size:.6rem; color:rgba(255,255,255,.28); }
.mock-tag { font-size:.58rem; font-weight:700; padding:.15rem .5rem; border-radius:var(--r-full); }
.tag-done { background:rgba(0,135,90,.15); color:#34d399; border:1px solid rgba(0,135,90,.3); }
.tag-wip { background:rgba(192,86,33,.15); color:#fbbf24; border:1px solid rgba(192,86,33,.3); }
.float-card {
  position:absolute; background:white; border-radius:12px;
  padding:.875rem 1.125rem; box-shadow:0 16px 40px rgba(0,0,0,.22);
  display:flex; align-items:center; gap:.75rem; z-index:5;
  animation:float-bob 5s ease-in-out infinite;
}
.float-card.fc-left { bottom:-16px; left:-28px; }
.float-card.fc-right { top:16px; right:-24px; animation-direction:reverse; }
@keyframes float-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.fc-icon { width:36px; height:36px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.fc-icon.green { background:var(--green-50); color:var(--green); }
.fc-icon.blue { background:var(--brand-50); color:var(--brand); }
.fc-val { font-family:var(--font-display); font-size:1rem; font-weight:800; color:var(--ink); line-height:1; }
.fc-lbl { font-size:.67rem; color:var(--ink-500); margin-top:.15rem; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--white); border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); padding: 2.75rem 0; }
.trust-item { text-align: center; }
.trust-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 900; color: var(--brand); letter-spacing: -.035em; display: block; line-height: 1; }
.trust-lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-400); margin-top: .375rem; display: block; }

/* ===== SOLUTION CARDS ===== */
.solution-section { padding: 6rem 0; background: var(--white); }
.sol-card {
  background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl);
  padding: 2.25rem; height: 100%; position: relative; overflow: hidden;
  transition: all .3s var(--ease); cursor: default;
}
.sol-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-hover));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.sol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--brand-200); }
.sol-card:hover::after { transform: scaleX(1); }
.sol-icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; color: var(--brand); margin-bottom: 1.375rem;
  transition: all .3s var(--ease);
}
.sol-card:hover .sol-icon { background: var(--brand); color: white; border-color: var(--brand); box-shadow: 0 6px 18px rgba(0,94,184,.3); }
.sol-card h5 { font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: .5rem; }
.sol-card p { font-size: .875rem; color: var(--ink-500); line-height: 1.7; margin: 0; }
.sol-link { display: inline-flex; align-items: center; gap: .375rem; margin-top: 1.25rem; font-size: .8rem; font-weight: 700; color: var(--brand); transition: gap .2s; }
.sol-link:hover { gap: .625rem; color: var(--brand-dark); }

/* ===== PLATFORM SECTION ===== */
.platform-section { padding: 6rem 0; background: var(--canvas); }
.platform-dark-card {
  background: #0a0f1e; border-radius: var(--r-2xl); overflow: hidden;
  padding: 3rem; position: relative; min-height: 380px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  box-shadow: var(--shadow-xl);
}
.platform-dark-card::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 90% 80% at 20% 110%, rgba(0,94,184,.5) 0%, transparent 60%),
              radial-gradient(ellipse 70% 70% at 80% 10%, rgba(0,94,184,.2) 0%, transparent 60%);
}
.platform-dark-card > * { position: relative; z-index: 1; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .625rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: var(--ink-700); }
.check-list li i { color: var(--green); font-size: .9rem; margin-top: .2rem; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 6rem 0; background: var(--white); }
.testi-card {
  background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl);
  padding: 2.25rem; height: 100%; position: relative;
  transition: all .3s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.testi-quote { position: absolute; top: 1.5rem; right: 1.75rem; font-size: 4rem; color: var(--brand-100); font-family: Georgia, serif; line-height: 1; }
.testi-stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.testi-stars i { color: #f59e0b; font-size: .8rem; }
.testi-body p { font-size: .925rem; color: var(--ink-700); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .875rem; }
.author-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-hover)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: .875rem; flex-shrink: 0; font-family: var(--font-display); }
.author-name { font-weight: 700; font-size: .875rem; color: var(--ink); }
.author-role { font-size: .72rem; color: var(--ink-400); margin-top: .1rem; }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; padding: 7rem 0; background: #0a0f1e; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 30% 110%, rgba(0,94,184,.5) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 75% -10%, rgba(0,94,184,.25) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.875rem, 3.5vw, 2.875rem); font-weight: 900; color: white; letter-spacing: -.035em; line-height: 1.1; margin-bottom: .875rem; }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,.48); line-height: 1.8; }

/* ===== PAGE HEADER ===== */
.page-header, .hero-section-small {
  position: relative; background: #0a0f1e; overflow: hidden;
  padding: 8rem 0 5.5rem;
}
.page-header::before, .hero-section-small::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 110%, rgba(0,94,184,.45) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 25% -10%, rgba(0,94,184,.22) 0%, transparent 60%);
}
.page-header .container, .hero-section-small .container { position: relative; z-index: 2; }
.page-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.65); padding: .35rem .875rem; border-radius: var(--r-full);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.page-headline { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.125rem); font-weight: 900; color: white; letter-spacing: -.035em; line-height: 1.1; margin-bottom: 1rem; }
.page-headline .accent { color: #60a5fa; }
.page-desc { font-size: 1.05rem; color: rgba(255,255,255,.48); line-height: 1.85; max-width: 540px; margin: 0 auto; }

/* ===== CARDS ===== */
.card { background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xs); transition: all .3s var(--ease); }
.card:hover { box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.card-body { padding: 2rem; }

/* ===== FORMS ===== */
.form-control, .form-select {
  display: block; width: 100%; padding: .75rem 1rem; font-size: .95rem;
  font-family: var(--font-body); color: var(--ink); background: white;
  border: 1.5px solid var(--ink-200); border-radius: var(--r-base);
  transition: all .2s var(--ease); -webkit-appearance: none; outline: none;
}
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,94,184,.1); }
.form-control::placeholder { color: var(--ink-400); }
.form-label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink-600); margin-bottom: .4rem; letter-spacing: .01em; }

/* ===== ALERTS / BADGES ===== */
.alert { padding: 1rem 1.25rem; border-radius: var(--r-lg); border: 1px solid transparent; margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: var(--green-50); border-color: #6ee7b7; color: #065f46; }
.alert-danger { background: #fff5f5; border-color: #feb2b2; color: #9b2c2c; }
.alert-info { background: var(--brand-50); border-color: var(--brand-200); color: var(--brand-dark); }
.flash-messages { position: fixed; top: 80px; right: 1.5rem; z-index: 9999; width: 340px; display: flex; flex-direction: column; gap: .5rem; }

/* ===== AUTH — SPLIT LAYOUT ===== */
.auth-page { min-height: 100vh; display: flex; }
.auth-panel-left {
  width: 440px; flex-shrink: 0; background: #0a0f1e; position: relative;
  display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 3rem; overflow: hidden;
}
.auth-panel-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 15% 110%, rgba(0,94,184,.6) 0%, transparent 60%),
              radial-gradient(ellipse 70% 60% at 90% 5%, rgba(0,94,184,.25) 0%, transparent 55%);
}
.auth-panel-left > * { position: relative; z-index: 1; }
.auth-panel-right { flex: 1; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--canvas); }
.auth-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 3rem; text-decoration: none; }
.auth-brand img { height: 34px; }
.auth-brand span { font-family: var(--font-display); font-size: 1.375rem; font-weight: 900; color: white; letter-spacing: -.025em; }
.auth-headline { font-family: var(--font-display); font-size: 1.875rem; font-weight: 900; color: white; letter-spacing: -.035em; line-height: 1.15; margin-bottom: 1rem; }
.auth-headline .acc { color: #60a5fa; }
.auth-desc { font-size: .9rem; color: rgba(255,255,255,.42); line-height: 1.75; margin-bottom: 2.5rem; }
.auth-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.auth-perks li { display: flex; align-items: center; gap: .625rem; font-size: .875rem; color: rgba(255,255,255,.58); font-weight: 500; }
.auth-perks li i { color: #34d399; font-size: .8rem; flex-shrink: 0; }
.auth-form-wrap { width: 100%; max-width: 420px; background: white; border-radius: var(--r-2xl); padding: 2.75rem; box-shadow: var(--shadow-xl); }
.auth-form-title { font-family: var(--font-display); font-size: 1.625rem; font-weight: 800; color: var(--ink); letter-spacing: -.025em; margin-bottom: .375rem; }
.auth-form-sub { font-size: .875rem; color: var(--ink-500); margin-bottom: 2rem; }
.auth-form-sub a { color: var(--brand); font-weight: 600; }
.auth-field { margin-bottom: 1.125rem; }
.auth-label { display: block; font-size: .78rem; font-weight: 700; color: var(--ink-600); margin-bottom: .4rem; letter-spacing: .01em; }
.auth-input {
  display: block; width: 100%; padding: .75rem 1rem; font-size: .95rem;
  font-family: var(--font-body); color: var(--ink); background: var(--canvas);
  border: 1.5px solid var(--ink-200); border-radius: var(--r-base);
  transition: all .2s var(--ease); outline: none;
}
.auth-input:focus { background: white; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,94,184,.1); }
.auth-input::placeholder { color: var(--ink-400); }
.auth-pwd-wrap { position: relative; }
.auth-pwd-wrap .auth-input { padding-right: 3rem; }
.auth-eye { position: absolute; right: .875rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--ink-400); cursor: pointer; padding: 0; font-size: .9rem; transition: color .15s; }
.auth-eye:hover { color: var(--ink-700); }
.auth-opts { display: flex; align-items: center; justify-content: space-between; margin-top: -.25rem; margin-bottom: 1.25rem; }
.auth-check-label { display: flex; align-items: center; gap: .375rem; font-size: .8rem; color: var(--ink-500); cursor: pointer; }
.auth-check-label input { accent-color: var(--brand); }
.auth-forgot { font-size: .8rem; color: var(--brand); font-weight: 600; }
.auth-forgot:hover { color: var(--brand-dark); }
.auth-submit {
  display: block; width: 100%; padding: .875rem; margin-top: 1.5rem;
  background: var(--brand); color: white; border: none; border-radius: var(--r-base);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .2s var(--ease); box-shadow: var(--shadow-brand);
  letter-spacing: -.01em;
}
.auth-submit:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,94,184,.4); }
.auth-footer-text { font-size: .8rem; color: var(--ink-400); margin-top: 1.25rem; text-align: center; }
.auth-footer-text a { color: var(--brand); font-weight: 600; }

/* ===== ABOUT PAGE ===== */
.highlight-box { background: var(--brand-50); border-left: 3px solid var(--brand); border-radius: 0 var(--r-base) var(--r-base) 0; padding: 1.375rem 1.5rem; margin: 1.5rem 0; }
.highlight-box h5 { color: var(--brand); margin-bottom: .375rem; font-size: .95rem; font-weight: 700; }
.highlight-box p { margin: 0; color: var(--ink-700); font-size: .875rem; }
.vision-card { background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl); padding: 2.25rem; text-align: center; height: 100%; transition: all .3s var(--ease); }
.vision-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--brand-200); }
.vision-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; background: var(--brand); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; box-shadow: 0 8px 20px rgba(0,94,184,.3); }
.vision-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: .625rem; }
.vision-card p { font-size: .875rem; color: var(--ink-500); line-height: 1.7; margin: 0; }
.journey-section { background: var(--canvas); padding: 6rem 0; }
.journey-item { text-align: center; padding: 2.25rem; background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl); height: 100%; transition: all .3s var(--ease); }
.journey-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.journey-icon { width: 60px; height: 60px; margin: 0 auto 1rem; background: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.375rem; box-shadow: 0 8px 24px rgba(0,94,184,.25); }
.journey-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--brand); line-height: 1; margin-bottom: .25rem; letter-spacing: -.035em; }
.journey-item h6 { font-weight: 700; margin-bottom: .5rem; font-size: .95rem; }
.journey-item p { font-size: .85rem; color: var(--ink-500); margin: 0; }
.stat-card { background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.stat-card-header { background: var(--brand); padding: 1.25rem 1.5rem; }
.stat-card-header h4 { color: white; margin: 0; font-size: 1rem; font-weight: 700; }
.stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--ink-100); }
.stat-item { background: white; padding: 1.75rem; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.25rem; font-weight: 900; color: var(--brand); display: block; line-height: 1; margin-bottom: .25rem; letter-spacing: -.035em; }
.stat-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-400); }

/* ===== DASHBOARD ===== */
.dashboard-page { background: var(--canvas); min-height: 100vh; }
.dashboard-sidebar {
  width: 258px; min-height: 100vh; position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
  background: #0a0f1e; display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: 2px 0 20px rgba(0,0,0,.2);
  transition: transform .3s var(--ease);
}
.sidebar-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 99;
}
.sidebar-overlay.active { display: block; }
.sidebar-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.sidebar-nav { list-style: none; padding: .75rem; margin: 0; }
.sidebar-nav li { margin-bottom: .2rem; }
.sidebar-nav-link { display: flex; align-items: center; gap: .75rem; padding: .7rem 1rem; color: rgba(255,255,255,.48); text-decoration: none; border-radius: var(--r-base); font-size: .875rem; font-weight: 500; transition: all .2s var(--ease); }
.sidebar-nav-link:hover { color: white; background: rgba(255,255,255,.07); }
.sidebar-nav-link.active { color: white; background: rgba(0,94,184,.25); border-left: 3px solid #60a5fa; padding-left: calc(1rem - 3px); }
.sidebar-nav-icon { width: 18px; text-align: center; font-size: .9rem; }
.sidebar-footer { margin-top: auto; padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,255,255,.06); }
.dashboard-content { margin-left: 258px; padding: 2rem; min-height: 100vh; }
.d-stat-card { background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl); padding: 1.5rem; transition: all .3s var(--ease); }
.d-stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }

/* ===== FOOTER ===== */
.footer { background: #0a0f1e; color: rgba(255,255,255,.35); padding: 5rem 0 2.25rem; }
.footer-logo-area { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo-area img { height: 32px; }
.footer-logo-area span { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; color: white; letter-spacing: -.025em; }
.footer-desc { color: rgba(255,255,255,.28); font-size: .875rem; line-height: 1.75; max-width: 280px; margin-bottom: 1.75rem; }
.footer-heading { font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.32); font-size: .875rem; transition: color .15s; }
.footer-links a:hover { color: #93c5fd; }
.social-links { display: flex; gap: .5rem; margin-top: .875rem; }
.social-link { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.38); border-radius: var(--r-base); font-size: .875rem; text-decoration: none; transition: all .2s var(--ease); }
.social-link:hover { background: var(--brand); border-color: var(--brand); color: white; transform: translateY(-2px); }
.footer-divider { border-color: rgba(255,255,255,.07); margin: 2.5rem 0 1.75rem; }
.footer-copy { color: rgba(255,255,255,.22); font-size: .8rem; margin: 0; }

/* ===== LOGO — self-contained, no filter needed ===== */

/* ===== MISC HELPERS ===== */
.pt-navbar { padding-top: 94px; }
.img-badge { position: absolute; top: 1.25rem; right: 1.25rem; background: rgba(0,94,184,.9); color: white; font-size: .75rem; font-weight: 700; padding: .45rem .95rem; border-radius: var(--r-full); backdrop-filter: blur(8px); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.12); }
.feature-card { background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl); padding: 2rem; height: 100%; transition: all .3s var(--ease); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--brand-200); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--brand-50); border: 1px solid var(--brand-100); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--brand); margin-bottom: 1.25rem; transition: all .3s var(--ease); }
.feature-card:hover .feature-icon { background: var(--brand); color: white; border-color: var(--brand); box-shadow: 0 6px 18px rgba(0,94,184,.3); }
.feature-card h4,.feature-card h5,.feature-card h6 { font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.feature-card p { font-size: .875rem; color: var(--ink-500); line-height: 1.7; margin: 0; }
.feat-card { background: white; border: 1px solid var(--ink-100); border-radius: var(--r-xl); padding: 2rmem; height: 100%; transition: all .3s var(--ease); }
.feat-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--brand-50); border: 1px solid var(--brand-100); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--brand); margin-bottom: 1.25rem; transition: all .3s var(--ease); }

/* ===== ANIMATIONS ===== */
.fade-in-up { animation: slide-up .7s var(--ease-out) forwards; }
.fade-in-up:nth-child(1){animation-delay:.05s} .fade-in-up:nth-child(2){animation-delay:.12s}
.fade-in-up:nth-child(3){animation-delay:.2s} .fade-in-up:nth-child(4){animation-delay:.28s}
.fade-in-up:nth-child(5){animation-delay:.35s}
@keyframes slide-up { from{transform:translateY(20px);opacity:.6} to{transform:translateY(0);opacity:1} }
.reveal { transform: translateY(20px); transition: transform .6s var(--ease-out), opacity .6s var(--ease-out); }
.reveal.visible { transform: translateY(0); opacity: 1; }
.animate-in { animation: slide-up .5s var(--ease-out) forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) { .auth-panel-left { width: 380px; } }
@media (max-width: 768px) {
  .auth-page { flex-direction: column; }
  .auth-panel-left { width: 100%; min-height: auto; padding: 2.5rem 1.5rem; }
  .auth-panel-right { padding: 2rem 1rem; }
  .auth-form-wrap { padding: 2rem 1.5rem; }
  .auth-perks { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.75rem; }
  .h-stat-num { font-size: 1.625rem; }
  .float-card { display: none; }
  .dashboard-content { margin-left: 0; padding: 1rem; }
  .dashboard-sidebar { transform: translateX(-100%); }
  .dashboard-sidebar.open { transform: translateX(0); }
}
@media (max-width: 991.98px) {
  .dashboard-content { margin-left: 0; }
  .dashboard-sidebar { transform: translateX(-100%); }
  .dashboard-sidebar.open { transform: translateX(0); }
}
@media (max-width: 576px) {
  .hero-section { padding-top: 70px; }
  .page-header, .hero-section-small { padding: 5rem 0 3rem; }
  .solution-section, .platform-section, .testimonials-section, .cta-section { padding: 4rem 0; }
}
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; } }

/* ===== GALLERY SECTION ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 4px;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  display: flex; justify-content: space-between; align-items: flex-end;
}
.gallery-caption-title { color: white; font-weight: 700; font-size: .875rem; font-family: var(--font-display); }
.gallery-caption-rate { color: rgba(255,255,255,.65); font-size: .72rem; background: rgba(0,94,184,.75); padding: .2rem .625rem; border-radius: 999px; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 240px; grid-row: auto; }
  .gallery-item { height: 180px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; height: 220px; }
  .gallery-item { height: 190px; }
}

/* ===== CITY VIDEO SHOWCASE ===== */
.city-showcase { position: relative; overflow: hidden; height: 440px; }
.city-showcase-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.city-showcase-video.playing { opacity: 1; }
.city-showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,15,30,.88) 0%, rgba(0,60,140,.45) 100%);
  display: flex; align-items: center;
}
@media (max-width: 768px) { .city-showcase { height: 520px; } }

/* ===== HERO VIDEO BG ===== */
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.hero-video-wrap video.playing { opacity: 0.18; }
.hero-bg { z-index: 1 !important; }
.hero-grid { z-index: 2 !important; }
.hero-section > .container { z-index: 3 !important; }

/* ===== ABOUT IMAGE QUOTE ===== */
.img-quote-section { position: relative; overflow: hidden; height: 400px; }
.img-quote-section img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-quote-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,.78), rgba(0,61,153,.55));
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.img-quote-text {
  font-family: var(--font-display); font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 800; color: white; letter-spacing: -.025em; line-height: 1.3;
  text-align: center; max-width: 680px;
}
.img-quote-text cite { display: block; font-size: .9rem; color: rgba(255,255,255,.5); font-weight: 500; margin-top: .875rem; font-style: normal; letter-spacing: .01em; }

/* ===== FEATURES IMAGE BANNER ===== */
.feat-banner { position: relative; overflow: hidden; height: 360px; }
.feat-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,94,184,.8) 0%, rgba(10,15,30,.9) 100%);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
