/* plato. — Shared site styles
   Smart Software for Tourism
   ───────────────────────────────────────── */

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

:root {
  --navy:   #0A2540;
  --sand:   #FDF6EC;
  --coral:  #FF7A59;
  --teal:   #1C7293;
  --ink:    #0F172A;
  --slate:  #64748B;
  --line:   #E5E7EB;
  --surface:#F8FAFC;
  --white:  #FFFFFF;
  --coral-h:#f06a49;
  --font:   'Poppins', -apple-system, sans-serif;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --max:    1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,37,64,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.2s var(--ease);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  font-size: 22px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--sand); text-decoration: none; flex-shrink: 0;
  margin-right: 40px;
}
.nav-logo span { color: var(--coral); }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(253,246,236,0.65);
  text-decoration: none; padding: 6px 12px; border-radius: 7px;
  transition: all 0.15s; display: inline-flex; align-items: center; gap: 5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--sand); background: rgba(255,255,255,0.08); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 8px; width: 300px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.18s var(--ease); list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item {
  display: flex !important; align-items: flex-start; gap: 12px;
  padding: 12px !important; border-radius: 8px; text-align: left;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.06) !important; }
.nav-dropdown-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,122,89,0.14); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.nav-dropdown-text { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-title { font-size: 13px; font-weight: 600; color: var(--sand); }
.nav-dropdown-desc { font-size: 11px; color: rgba(253,246,236,0.45); font-weight: 400; line-height: 1.4; }
.nav-lang-menu {
  left: auto; right: 0; width: 88px; padding: 6px;
}
.nav-lang-item {
  display: block !important; padding: 8px 10px !important;
  font-size: 13px; font-weight: 500; color: rgba(253,246,236,0.65); text-decoration: none;
}
.nav-lang-item:hover { color: var(--sand); }
.nav-lang-item.active { color: var(--coral); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-ghost {
  font: 500 13px var(--font); color: rgba(253,246,236,0.65);
  background: none; border: none; cursor: pointer; padding: 6px 12px;
  border-radius: 7px; transition: all 0.15s; text-decoration: none;
}
.btn-nav-ghost:hover { color: var(--sand); background: rgba(255,255,255,0.08); }
.btn-nav-cta {
  font: 500 13px var(--font); color: var(--white);
  background: var(--coral); border: none; cursor: pointer;
  padding: 8px 18px; border-radius: 9px; transition: all 0.15s;
  text-decoration: none; display: inline-block;
}
.btn-nav-cta:hover { background: var(--coral-h); color: var(--white); }

/* ── HERO (homepage) ────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  background: var(--coral); opacity: 0.12; pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-orb-2 { width: 400px; height: 400px; bottom: -180px; left: -120px; opacity: 0.07; }
.hero-orb-3 { width: 160px; height: 160px; top: 120px; left: 10%; opacity: 0.15; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,122,89,0.12); border: 1px solid rgba(255,122,89,0.25);
  color: var(--coral); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 9999px; margin-bottom: 28px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--sand); max-width: 820px;
  margin-bottom: 24px; position: relative;
}
.hero h1 .coral { color: var(--coral); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: rgba(253,246,236,0.6);
  max-width: 560px; line-height: 1.65; margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font: 600 15px var(--font); color: white; background: var(--coral);
  border: none; cursor: pointer; padding: 14px 28px; border-radius: 10px;
  transition: all 0.15s var(--ease); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--coral-h); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,122,89,0.35); color: white; }
.btn-ghost {
  font: 500 15px var(--font); color: rgba(253,246,236,0.75);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; padding: 14px 28px; border-radius: 10px;
  transition: all 0.15s; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--sand); }
.hero-meta {
  margin-top: 56px; display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: center;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hero-stat strong { font-size: 28px; font-weight: 700; color: var(--sand); letter-spacing: -0.02em; line-height: 1; }
.hero-stat span { font-size: 12px; color: rgba(253,246,236,0.45); font-weight: 500; }
.hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ── SUBPAGE HERO ───────────────────────────── */
.subhero {
  background: var(--navy); padding: 140px 32px 80px;
  position: relative; overflow: hidden;
}
.subhero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.subhero-orb-1 { width: 520px; height: 520px; top: -180px; right: -120px; background: var(--coral); opacity: 0.1; }
.subhero-orb-2 { width: 300px; height: 300px; bottom: -160px; left: -80px; background: var(--teal); opacity: 0.1; }
.subhero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.subhero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.subhero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,122,89,0.12); border: 1px solid rgba(255,122,89,0.25);
  color: var(--coral); font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 9999px; margin-bottom: 22px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.subhero h1 {
  font-size: clamp(34px, 4.5vw, 54px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.12; color: var(--sand);
  margin-bottom: 20px;
}
.subhero h1 span { color: var(--coral); }
.subhero-sub {
  font-size: 18px; color: rgba(253,246,236,0.6); line-height: 1.65;
  margin-bottom: 32px; max-width: 460px;
}
.subhero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
  font-size: 12px; color: rgba(253,246,236,0.4);
}
.breadcrumb a { color: rgba(253,246,236,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--sand); }

/* ── LOGOS ──────────────────────────────────── */
.logos { padding: 56px 32px; background: var(--sand); text-align: center; }
.logos-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--slate); margin-bottom: 32px;
}
.logos-grid {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px 36px;
}
.logo-item {
  font-size: 14px; font-weight: 600; color: rgba(10,37,64,0.35);
  letter-spacing: -0.01em; white-space: nowrap;
  padding: 8px 18px; border-radius: 8px;
  border: 1px solid rgba(10,37,64,0.08);
  background: rgba(255,255,255,0.6); transition: all 0.15s;
}
.logo-item:hover { color: var(--navy); border-color: rgba(10,37,64,0.18); }

/* ── SECTION COMMON ─────────────────────────── */
.section { padding: 96px 32px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--coral); margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15; color: var(--ink);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--slate); line-height: 1.65;
  max-width: 540px; margin-bottom: 48px;
}
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }
.center .coral-line { margin-left: auto; margin-right: auto; }
.coral-line {
  width: 40px; height: 3px; border-radius: 2px;
  background: var(--coral); margin-bottom: 20px;
}

/* ── VALUE PROPS / FEATURE CARDS ────────────── */
.props-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.prop-card {
  background: var(--surface); border-radius: 14px;
  border: 1px solid var(--line); padding: 32px;
  transition: all 0.2s var(--ease);
}
.prop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10,37,64,.1);
  border-color: rgba(10,37,64,0.12);
}
.prop-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,122,89,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--coral);
}
.prop-icon.teal { background: rgba(28,114,147,0.1); color: var(--teal); }
.prop-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.prop-desc { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* ── PRODUCTS ───────────────────────────────── */
.products { background: var(--navy); }
.products .section-h2 { color: var(--sand); }
.products .section-sub { color: rgba(253,246,236,0.55); max-width: 500px; }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.product-card {
  background: rgba(255,255,255,0.04); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all 0.2s var(--ease); text-decoration: none;
}
.product-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,122,89,0.25);
  transform: translateY(-2px);
}
.product-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--coral); margin-bottom: 14px;
}
.product-name {
  font-size: 22px; font-weight: 700; color: var(--sand);
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.product-name span { color: var(--coral); }
.product-desc {
  font-size: 14px; color: rgba(253,246,236,0.55); line-height: 1.65;
  margin-bottom: 24px; flex: 1;
}
.product-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.product-feature {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: rgba(253,246,236,0.7); font-weight: 500;
}
.product-feature-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0; margin-top: 6px;
}
.btn-product {
  font: 500 13px var(--font); color: var(--coral);
  background: rgba(255,122,89,0.1); border: 1px solid rgba(255,122,89,0.2);
  cursor: pointer; padding: 10px 16px; border-radius: 8px;
  transition: all 0.15s; display: inline-flex; align-items: center; gap: 6px;
  width: fit-content; text-decoration: none;
}
.btn-product:hover { background: rgba(255,122,89,0.18); color: var(--coral); }

/* ── FEATURES ALTERNATING ───────────────────── */
.features { background: var(--surface); }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-visual { order: -1; }
.feature-eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal); margin-bottom: 14px;
}
.feature-h3 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.2; color: var(--ink); margin-bottom: 16px;
}
.feature-desc { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink); font-weight: 500;
}
.feature-check {
  width: 18px; height: 18px; border-radius: 5px;
  background: rgba(28,114,147,0.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.btn-teal {
  font: 500 14px var(--font); color: var(--teal);
  background: rgba(28,114,147,0.08); border: 1px solid rgba(28,114,147,0.15);
  cursor: pointer; padding: 10px 20px; border-radius: 9px;
  transition: all 0.15s; display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; width: fit-content;
}
.btn-teal:hover { background: rgba(28,114,147,0.14); color: var(--teal); }
.feature-visual {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,37,64,.14);
  border: 1px solid var(--line);
}

/* Feature mock UIs */
.fmock {
  background: white; padding: 24px;
  min-height: 320px; display: flex; flex-direction: column; gap: 14px;
}
.fmock-header {
  font-size: 13px; font-weight: 600; color: var(--ink);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.fmock-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.fmock-day { text-align: center; }
.fmock-day-label { font-size: 10px; font-weight: 600; color: var(--slate); text-transform: uppercase; margin-bottom: 4px; }
.fmock-shift {
  height: 48px; border-radius: 6px; display: flex;
  align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; color: white; padding: 2px;
}
.fmock-shift.am { background: var(--teal); }
.fmock-shift.pm { background: var(--coral); }
.fmock-shift.off { background: var(--line); color: var(--slate); }
.fmock-shift.leave { background: rgba(245,158,11,0.15); color: #D97706; }
.fmock-shift.night { background: var(--navy); }
.fmock-hr-card {
  background: var(--surface); border-radius: 10px; border: 1px solid var(--line);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.fmock-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
}
.fmock-detail { flex: 1; }
.fmock-detail-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.fmock-detail-sub { font-size: 11px; color: var(--slate); margin-top: 2px; }
.fmock-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; padding: 0 4px; }
.fmock-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.fmock-bar-col { width: 100%; border-radius: 5px 5px 0 0; transition: all 0.3s; }
.fmock-bar-lbl { font-size: 10px; color: var(--slate); font-weight: 500; }
.fmock-kpi-row { display: flex; gap: 12px; }
.fmock-kpi {
  flex: 1; background: var(--navy); border-radius: 10px; padding: 16px;
  position: relative; overflow: hidden;
}
.fmock-kpi-orb { position: absolute; width: 50px; height: 50px; border-radius: 50%; background: var(--coral); opacity: 0.15; top: -15px; right: -15px; }
.fmock-kpi-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(253,246,236,0.45); }
.fmock-kpi-val { font-size: 24px; font-weight: 700; color: var(--sand); letter-spacing: -0.02em; margin-top: 4px; line-height: 1; }
.fmock-kpi-sub { font-size: 10px; color: rgba(253,246,236,0.45); margin-top: 3px; }

/* App mockup (homepage hero) */
.hero-app {
  margin-top: 72px; width: 100%; max-width: 900px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-app-bar {
  background: rgba(255,255,255,0.05); height: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 7px; padding: 0 16px;
}
.hero-app-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-app-body { display: grid; grid-template-columns: 200px 1fr; min-height: 360px; }
.hero-app-sidebar {
  background: rgba(10,37,64,0.8); padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-app-nav {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 7px; font-size: 12px;
  color: rgba(253,246,236,0.5); font-weight: 500;
}
.hero-app-nav.active { background: rgba(255,122,89,0.15); color: var(--sand); }
.hero-app-content { padding: 20px 24px; background: var(--surface); }
.mock-row { display: flex; gap: 12px; margin-bottom: 12px; }
.mock-card {
  flex: 1; background: white; border-radius: 10px;
  border: 1px solid var(--line); padding: 16px;
  box-shadow: 0 1px 3px rgba(10,37,64,.06);
}
.mock-card-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate); }
.mock-card-val { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; }
.mock-bar { height: 6px; border-radius: 3px; background: var(--line); margin-top: 6px; overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 3px; background: var(--coral); }
.mock-table { background: white; border-radius: 10px; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 1px 3px rgba(10,37,64,.06); }
.mock-tr { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--surface); }
.mock-tr:last-child { border-bottom: none; }
.mock-avatar { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: white; }
.mock-name { font-size: 12px; font-weight: 500; flex: 1; }
.mock-badge { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 5px; }

/* ── AI SECTION ─────────────────────────────── */
.ai-section { background: var(--navy); padding: 96px 32px; position: relative; overflow: hidden; }
.ai-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.ai-orb-1 { width: 500px; height: 500px; right: -100px; top: -150px; background: var(--coral); opacity: 0.08; }
.ai-orb-2 { width: 300px; height: 300px; left: -80px; bottom: -100px; background: var(--teal); opacity: 0.1; }
.ai-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.ai-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(28,114,147,0.15); border: 1px solid rgba(28,114,147,0.3);
  color: #5BA8C4; font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 9999px; margin-bottom: 20px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.ai-h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.2; color: var(--sand); margin-bottom: 18px;
}
.ai-h2 span { color: var(--coral); }
.ai-desc { font-size: 16px; color: rgba(253,246,236,0.55); line-height: 1.7; margin-bottom: 32px; }
.ai-features { display: flex; flex-direction: column; gap: 16px; }
.ai-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
}
.ai-feat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(28,114,147,0.2); color: #5BA8C4;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-feat-title { font-size: 14px; font-weight: 600; color: var(--sand); margin-bottom: 4px; }
.ai-feat-desc { font-size: 13px; color: rgba(253,246,236,0.5); line-height: 1.55; }
.ai-visual { position: relative; }
.ai-chat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 14px;
}
.ai-chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.ai-chat-msg.right { flex-direction: row-reverse; }
.ai-chat-bubble {
  border-radius: 12px 12px 12px 4px; padding: 12px 16px;
  font-size: 13px; line-height: 1.55; max-width: 280px;
}
.ai-chat-msg.right .ai-chat-bubble { border-radius: 12px 12px 4px 12px; background: var(--coral); color: white; }
.ai-chat-msg:not(.right) .ai-chat-bubble {
  background: rgba(255,255,255,0.08); color: rgba(253,246,236,0.85);
  border: 1px solid rgba(255,255,255,0.08);
}
.ai-chat-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white;
}
.ai-graph-row { display: flex; gap: 10px; margin-top: 4px; }
.ai-mini-kpi {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 12px 14px;
}
.ai-mini-kpi-label { font-size: 10px; color: rgba(253,246,236,0.4); font-weight: 500; }
.ai-mini-kpi-val { font-size: 20px; font-weight: 700; color: var(--sand); letter-spacing: -0.02em; }
.ai-mini-kpi-trend { font-size: 10px; color: #4ADE80; font-weight: 600; margin-top: 2px; }

/* ── STATS BAND ─────────────────────────────── */
.stats-band { background: var(--sand); padding: 72px 32px; }
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-block { text-align: center; padding: 16px; }
.stat-num {
  font-size: 48px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--navy); line-height: 1;
}
.stat-num span { color: var(--coral); }
.stat-label { font-size: 14px; color: var(--slate); font-weight: 500; margin-top: 10px; }

/* ── HOW IT WORKS / STEPS ───────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.step-card { position: relative; padding-top: 8px; }
.step-num {
  font-size: 13px; font-weight: 700; color: var(--coral);
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,122,89,0.1); border: 1px solid rgba(255,122,89,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials { background: var(--sand); padding: 96px 32px; }
.testimonials-inner { max-width: var(--max); margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testimonial-card {
  background: white; border-radius: 16px; border: 1px solid var(--line);
  padding: 32px 28px; box-shadow: 0 1px 3px rgba(10,37,64,.06);
  display: flex; flex-direction: column; transition: all 0.2s var(--ease);
}
.testimonial-card.single { max-width: 720px; margin: 0 auto; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,37,64,.1); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--coral); font-size: 14px; }
.testimonial-quote { font-size: 15px; color: var(--ink); line-height: 1.7; margin-bottom: 24px; flex: 1; font-style: italic; }
.testimonial-card.single .testimonial-quote { font-size: 19px; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 12px; color: var(--slate); margin-top: 1px; }

/* ── PRICING ─────────────────────────────────── */
.pricing { background: var(--white); padding: 96px 32px; }
.pricing-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; text-align: left; }
.pricing-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
.pricing-grid--4 { grid-template-columns: repeat(4, 1fr); }
.price-card {
  background: var(--surface); border-radius: 16px;
  border: 1px solid var(--line); padding: 32px 28px;
  display: flex; flex-direction: column; transition: all 0.2s var(--ease);
}
.price-card.featured { background: var(--navy); border-color: transparent; box-shadow: 0 12px 40px rgba(10,37,64,.2); }
.price-card:not(.featured):hover { border-color: var(--coral); box-shadow: 0 8px 24px rgba(10,37,64,.1); transform: translateY(-2px); }
.price-tier { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.price-tier.featured { color: var(--coral); }
.price-tier:not(.featured) { color: var(--slate); }
.price-name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.price-card.featured .price-name { color: var(--sand); }
.price-card:not(.featured) .price-name { color: var(--ink); }
.price-desc { font-size: 13px; line-height: 1.65; margin-bottom: 24px; }
.price-card.featured .price-desc { color: rgba(253,246,236,0.55); }
.price-card:not(.featured) .price-desc { color: var(--slate); }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price-num { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; }
.price-card.featured .price-num { color: var(--sand); }
.price-card:not(.featured) .price-num { color: var(--ink); }
.price-per { font-size: 13px; }
.price-card.featured .price-per { color: rgba(253,246,236,0.45); }
.price-card:not(.featured) .price-per { color: var(--slate); }
.price-divider { height: 1px; margin-bottom: 20px; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.1); }
.price-card:not(.featured) .price-divider { background: var(--line); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.price-feature { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; font-weight: 500; }
.price-card.featured .price-feature { color: rgba(253,246,236,0.75); }
.price-card:not(.featured) .price-feature { color: var(--ink); }
.check-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.btn-price-primary {
  font: 600 14px var(--font); color: white; background: var(--coral);
  border: none; cursor: pointer; padding: 12px; border-radius: 9px;
  transition: all 0.15s; text-align: center; width: 100%; text-decoration: none; display: block;
}
.btn-price-primary:hover { background: var(--coral-h); color: white; }
.btn-price-ghost {
  font: 500 14px var(--font); color: var(--ink);
  background: white; border: 1.5px solid var(--line);
  cursor: pointer; padding: 12px; border-radius: 9px;
  transition: all 0.15s; text-align: center; width: 100%; text-decoration: none; display: block;
}
.btn-price-ghost:hover { border-color: var(--navy); color: var(--navy); }

/* ── COMPARISON TABLE ───────────────────────── */
.compare { background: var(--surface); padding: 96px 32px; }
.compare-inner { max-width: var(--max); margin: 0 auto; }
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 48px;
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 1px 3px rgba(10,37,64,.06);
}
.compare-table th, .compare-table td {
  padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  background: var(--navy); color: var(--sand);
  font-size: 13px; font-weight: 600;
}
.compare-table thead th:first-child { font-size: 14px; }
.compare-table thead th.featured-col { background: #0d2d4d; position: relative; }
.compare-table tbody td:first-child { font-size: 13px; font-weight: 500; color: var(--ink); }
.compare-table tbody td { font-size: 13px; color: var(--slate); text-align: center; }
.compare-table tbody td:first-child { text-align: left; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--surface); }
.compare-section-row td {
  background: var(--surface); font-size: 11px !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate) !important; text-align: left !important;
}
.compare-check { color: var(--teal); display: inline-flex; }
.compare-dash { color: var(--line); }

/* ── FAQ ─────────────────────────────────────── */
.faq { background: var(--white); padding: 96px 32px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden; transition: all 0.2s var(--ease);
}
.faq-item.open { border-color: rgba(255,122,89,0.3); background: white; box-shadow: 0 4px 16px rgba(10,37,64,.06); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--ink);
  user-select: none;
}
.faq-icon { flex-shrink: 0; color: var(--coral); transition: transform 0.2s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 0 24px; font-size: 14px; color: var(--slate); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 24px 22px; }

/* ── CONTACT ────────────────────────────────── */
.contact-section { background: var(--surface); padding: 96px 32px; }
.contact-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: white; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; display: flex; align-items: flex-start; gap: 16px;
}
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: rgba(255,122,89,0.1); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon.teal { background: rgba(28,114,147,0.1); color: var(--teal); }
.contact-card-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); margin-bottom: 4px; }
.contact-card-value { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-card-sub { font-size: 13px; color: var(--slate); margin-top: 2px; line-height: 1.5; }
.contact-form {
  background: white; border: 1px solid var(--line); border-radius: 16px;
  padding: 36px; box-shadow: 0 4px 24px rgba(10,37,64,.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-input, .form-select, .form-textarea {
  font: 14px var(--font); color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: 9px; padding: 11px 14px; outline: none;
  transition: border-color 0.15s, background 0.15s; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: #94A3B8; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: white; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-hint { font-size: 12px; color: var(--slate); margin-top: 14px; text-align: center; }
.btn-form {
  font: 600 15px var(--font); color: white; background: var(--coral);
  border: none; cursor: pointer; padding: 14px; border-radius: 10px;
  transition: all 0.15s; width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-form:hover { background: var(--coral-h); }
/* Honeypot — kept in the layout flow but visually and accessibly hidden so only bots fill it in */
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-message { font-size: 13px; font-weight: 600; border-radius: 9px; padding: 12px 14px; margin-bottom: 18px; text-align: center; }
.form-message.success { background: rgba(28,114,147,0.1); color: var(--teal); }
.form-message.error { background: rgba(255,122,89,0.1); color: var(--coral); }
.form-error { font-size: 12px; color: var(--coral); }
.form-consent { flex-direction: row; align-items: flex-start; gap: 9px; }
.form-consent input { margin-top: 3px; accent-color: var(--coral); }
.form-consent label { font-size: 13px; color: var(--slate); line-height: 1.5; }

/* ── INTEGRATIONS ───────────────────────────── */
.integrations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;
}
.integration-card {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; transition: all 0.2s var(--ease);
}
.integration-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,37,64,.08); border-color: rgba(10,37,64,0.12); }
.integration-logo {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: white;
}
.integration-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.integration-cat { font-size: 11px; color: var(--slate); }

/* ── CTA BAND ────────────────────────────────── */
.cta-band { background: var(--coral); padding: 80px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.1); top: -160px; right: -100px;
}
.cta-band::after {
  content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,0.07); bottom: -120px; left: -60px;
}
.cta-band-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.025em; color: white; margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 36px; }
.cta-band-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-white {
  font: 600 15px var(--font); color: var(--coral); background: white;
  border: none; cursor: pointer; padding: 14px 28px; border-radius: 10px;
  transition: all 0.15s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-white:hover { background: var(--sand); color: var(--coral); }
.btn-white-ghost {
  font: 500 15px var(--font); color: white;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer; padding: 14px 28px; border-radius: 10px;
  transition: all 0.15s; text-decoration: none; display: inline-block;
}
.btn-white-ghost:hover { background: rgba(255,255,255,0.2); color: white; }

/* ── TEAM ────────────────────────────────────── */
.team { background: var(--surface); padding: 96px 32px; }
.team-inner { max-width: var(--max); margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.team-card {
  background: white; border-radius: 16px; border: 1px solid var(--line);
  overflow: hidden; box-shadow: 0 1px 3px rgba(10,37,64,.06); transition: all 0.2s var(--ease);
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10,37,64,.12); }
.team-photo { height: 200px; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-info { padding: 20px 22px; }
.team-name { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.team-role { font-size: 13px; color: var(--coral); font-weight: 500; margin-top: 3px; }
.team-bio { font-size: 13px; color: var(--slate); line-height: 1.65; margin-top: 10px; }
.team-links { display: flex; gap: 10px; margin-top: 14px; }
.team-link {
  font-size: 12px; font-weight: 500; color: var(--teal);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 6px; border: 1px solid rgba(28,114,147,0.15); transition: all 0.15s;
}
.team-link:hover { background: rgba(28,114,147,0.08); }

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--ink); padding: 64px 32px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }
.footer-logo { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--sand); text-decoration: none; }
.footer-logo span { color: var(--coral); }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 10px 14px; font: 13px var(--font); color: white;
  outline: none; transition: border-color 0.15s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: rgba(255,122,89,0.4); }
.newsletter-btn {
  font: 500 13px var(--font); color: white; background: var(--coral);
  border: none; cursor: pointer; padding: 10px 16px; border-radius: 8px; white-space: nowrap; transition: all 0.15s;
}
.newsletter-btn:hover { background: var(--coral-h); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-col li a:hover { color: var(--sand); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s; color: rgba(255,255,255,0.5); text-decoration: none;
}
.social-btn:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── SCROLL ANIMATION ───────────────────────── */
/* Entrance is a transform-only slide — opacity stays 1 at all times, so content
   is NEVER hidden (safe for print, PDF export, reduced-motion, and any
   frozen-timeline capture). The slide is pure enhancement on top of a visible
   resting state. */
.reveal.in { animation: revealUp 0.55s var(--ease) both; }
@keyframes revealUp {
  from { transform: translateY(16px); }
  to   { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.in { animation: none; }
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .subhero-grid, .ai-inner, .feature-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-visual { order: 0; }
  .props-grid, .products-grid, .testimonials-grid, .pricing-grid, .pricing-grid--2, .pricing-grid--4, .team-grid, .steps-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 12px; }
}

/* Block Grid: consecutive feature-row sections keep the prototype's ~100px rhythm
   (one section per block instead of multiple rows in one section) */
.section.features + .section.features { padding-top: 4px; }

