
:root {
  --navy: #07142B;
  --navy-mid: #0E2247;
  --blue: #1356D8;
  --blue-bright: #2B7FFF;
  --cyan: #00C8E8;
  --cyan-soft: #7EE8F8;
  --silver: #A8B8D0;
  --white: #FFFFFF;
  --off-white: #F5F8FF;
  --light-bg: #EEF4FF;
  --text-dark: #07142B;
  --text-mid: #3A5070;
  --text-soft: #6B86A6;
  --border: rgba(19,86,216,0.12);
  --border-soft: rgba(19,86,216,0.07);
  --glass: rgba(255,255,255,0.85);
  --glass-dark: rgba(7,20,43,0.7);
  --shadow-sm: 0 2px 12px rgba(7,20,43,0.08);
  --shadow-md: 0 8px 32px rgba(7,20,43,0.12);
  --shadow-lg: 0 20px 60px rgba(7,20,43,0.15);
  --shadow-blue: 0 8px 32px rgba(19,86,216,0.25);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5 {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light-bg); color: var(--blue);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--border); margin-bottom: 16px;
}
.tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(0.8)} }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(28px,4vw,42px); font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
}
.section-header p {
  font-size: 17px; color: var(--text-mid);
  max-width: 580px; margin: 0 auto; line-height: 1.7;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: Arial, Helvetica, sans-serif; font-size: 15px;
  font-weight: 600; cursor: pointer; border: none;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: white;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-bright); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(19,86,216,0.4);
}
.btn-secondary {
  background: white; color: var(--navy);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--light-bg); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(7,20,43,0.08);
  background: rgba(255,255,255,0.96);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center;
  font-family: Arial, Helvetica, sans-serif; font-weight: 800;
}
.nav-logo-img {
  width: auto;
  max-height: 44px;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--blue); background: var(--light-bg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 20px 24px; z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0;
  font-size: 15px; font-weight: 500; color: var(--text-dark);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .mob-btns { display: flex; gap: 10px; margin-top: 16px; }

/* ─── HERO ─────────────────────────────────── */
.hero {
  padding: 140px 0 96px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  top: 100px; left: -150px;
  animation: float2 10s ease-in-out infinite;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: #7B68EE;
  bottom: -100px; right: 200px;
  animation: float1 12s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%,100%{transform:translate(0,0)} 33%{transform:translate(20px,-30px)} 66%{transform:translate(-20px,15px)}
}
@keyframes float2 {
  0%,100%{transform:translate(0,0)} 50%{transform:translate(25px,20px)}
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 16px; margin-bottom: 24px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  animation: pulse 1.5s infinite;
}
.hero h1 {
  font-size: clamp(36px,5vw,60px);
  font-weight: 800; color: var(--navy);
  line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--text-mid);
  line-height: 1.75; max-width: 520px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-soft); font-weight: 500;
}
.hero-trust-item .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,200,232,0.15); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}

.hero-right { position: relative; z-index: 2; }
.hero-dashboard {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: dashFloat 6s ease-in-out infinite;
}
@keyframes dashFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.dash-header-left {
  display: flex; align-items: center; gap: 10px;
}
.dash-dots { display: flex; gap: 5px; }
.dash-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dash-dot:nth-child(1){background:#FF5F57}
.dash-dot:nth-child(2){background:#FEBC2E}
.dash-dot:nth-child(3){background:#28C840}
.dash-title {
  font-size: 12px; font-weight: 600; color: var(--text-soft);
  font-family: Arial, Helvetica, sans-serif; letter-spacing: 0.05em;
}
.dash-badge {
  background: rgba(0,200,232,0.12); color: var(--cyan);
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px; letter-spacing: 0.08em;
}
.dash-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
  margin-bottom: 16px;
}
.dash-stat {
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: 12px; text-align: center;
}
.dash-stat .num {
  font-family: Arial, Helvetica, sans-serif; font-size: 20px;
  font-weight: 800; color: var(--navy);
}
.dash-stat .lbl {
  font-size: 10px; color: var(--text-soft); font-weight: 500;
  margin-top: 2px;
}
.dash-row {
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: 12px 14px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.dash-row-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.dash-row-info { flex: 1; min-width: 0; }
.dash-row-name {
  font-size: 12px; font-weight: 600; color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-row-sub { font-size: 10px; color: var(--text-soft); }
.dash-row-tag {
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px; white-space: nowrap;
}
.tag-new { background: rgba(0,200,232,0.12); color: #00A8C8; }
.tag-active { background: rgba(40,200,80,0.12); color: #1A9A40; }
.tag-review { background: rgba(254,188,46,0.12); color: #C07A00; }
.tag-won { background: rgba(19,86,216,0.12); color: var(--blue); }

.hero-float-cards { position: absolute; }
.float-card {
  position: absolute; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: var(--shadow-md);
  font-size: 12px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  animation: cardFloat 4s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.fc-1 { top: -30px; right: -20px; animation-delay: 0s; }
.fc-2 { bottom: 60px; right: -40px; animation-delay: 1s; }
.fc-3 { bottom: -20px; left: 20px; animation-delay: 2s; }
@keyframes cardFloat {
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-8px) rotate(1deg)}
}

/* ─── STATS ─────────────────────────────────── */
.stats-section {
  padding: 64px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.stats-section::after {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--blue); opacity: 0.08; filter: blur(80px);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; position: relative; z-index: 1;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
}
.stat-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 32px; text-align: center;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.08); }
.stat-num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(32px,4vw,48px); font-weight: 800;
  color: white; line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--cyan); }
.stat-label {
  font-size: 14px; color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-icon {
  font-size: 28px; margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(0,200,232,0.4));
}

/* ─── FEATURES ─────────────────────────────────── */
.features-section { background: var(--off-white); }
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.feature-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--light-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--blue); border-color: var(--blue);
  transform: scale(1.1);
}
.feature-card h3 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
}

/* ─── HOW IT WORKS ─────────────────────────────────── */
.hiw-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.hiw-grid::before {
  content: ''; position: absolute;
  top: 36px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.hiw-step {
  text-align: center; padding: 0 16px; position: relative; z-index: 1;
}
.hiw-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: white; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: Arial, Helvetica, sans-serif; font-size: 24px;
  font-weight: 800; color: var(--blue);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.hiw-step:hover .hiw-num {
  background: var(--blue); color: white;
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.1);
}
.hiw-step h3 {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.hiw-step p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ─── SERVICES ─────────────────────────────────── */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.service-card {
  background: white; border-radius: var(--radius-md);
  padding: 28px 24px; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm); transition: all 0.3s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon-wrap {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--light-bg); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ─── SOLUTIONS ─────────────────────────────────── */
.solutions-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.solution-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.solution-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0; transition: opacity 0.3s;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.solution-card:hover::after { opacity: 1; }
.sol-icon { font-size: 36px; margin-bottom: 16px; }
.solution-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.solution-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.sol-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.sol-tag {
  background: var(--light-bg); color: var(--blue);
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; border: 1px solid var(--border);
}

/* ─── WHY CHOOSE US ─────────────────────────────────── */
.trust-section { background: #f8fbff; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.trust-card {
  background: white; border-radius: var(--radius-xl);
  padding: 32px; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.trust-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(0,200,232,0.12); color: var(--cyan);
  font-size: 26px;
}
.trust-card h3 {
  font-size: 20px; color: var(--navy); margin-bottom: 14px;
}
.trust-card p {
  font-size: 15px; color: var(--text-mid); line-height: 1.8;
}
.trust-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 40px;
}
.trust-stat {
  background: white; padding: 30px 24px; border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm);
  text-align: center;
}
.trust-value {
  font-family: Arial, Helvetica, sans-serif; font-size: 42px;
  font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.trust-stat p {
  font-size: 14px; color: var(--text-mid); line-height: 1.65;
}

/* ─── INDUSTRIES ─────────────────────────────────── */
.industries-section { background: var(--navy); position: relative; overflow: hidden; }
.industries-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--blue); opacity: 0.06; filter: blur(80px);
}
.industry-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px; position: relative; z-index: 1;
}
.industry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 20px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: all 0.3s;
}
.industry-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,200,232,0.3);
  transform: translateX(4px);
}
.ind-icon { font-size: 24px; flex-shrink: 0; }
.ind-name {
  font-size: 14px; font-weight: 600; color: white;
  line-height: 1.3;
}

/* ─── PLANS ─────────────────────────────────── */
.plans-section { background: var(--off-white); }
.plans-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; align-items: start;
}
.plan-card {
  background: white; border-radius: var(--radius-xl);
  padding: 36px 28px; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.featured {
  background: var(--navy); border-color: transparent;
  box-shadow: var(--shadow-lg);
  position: relative; transform: scale(1.03);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  display: inline-block; background: var(--cyan);
  color: var(--navy); font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.plan-name {
  font-family: Arial, Helvetica, sans-serif; font-size: 22px;
  font-weight: 800; color: var(--navy); margin-bottom: 6px;
}
.plan-card.featured .plan-name { color: white; }
.plan-desc { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; line-height: 1.5; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.6); }
.plan-price {
  font-family: Arial, Helvetica, sans-serif; font-size: 32px;
  font-weight: 800; color: var(--navy); margin-bottom: 24px;
}
.plan-card.featured .plan-price { color: var(--cyan); }
.plan-price span { font-size: 16px; color: var(--text-soft); font-weight: 400; font-family: 'DM Sans', sans-serif; }
.plan-card.featured .plan-price span { color: rgba(255,255,255,0.5); }
.plan-features { margin-bottom: 28px; }
.plan-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 13px; color: var(--text-mid);
  border-bottom: 1px solid var(--border-soft);
}
.plan-card.featured .plan-feature { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
.plan-feature:last-child { border-bottom: none; }
.plan-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,200,232,0.15); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 10px;
}
.plan-card.featured .plan-check { background: rgba(0,200,232,0.2); }
.plan-cta { width: 100%; text-align: center; justify-content: center; }
.btn-plan {
  background: var(--light-bg); color: var(--blue);
  border: 1.5px solid var(--border); width: 100%;
  justify-content: center;
}
.btn-plan:hover { background: var(--blue); color: white; border-color: var(--blue); }
.btn-plan-featured {
  background: var(--blue); color: white;
  box-shadow: var(--shadow-blue); width: 100%;
  justify-content: center;
}
.btn-plan-featured:hover { background: var(--blue-bright); }

/* ─── TESTIMONIALS ─────────────────────────────────── */
.testimonials-section { overflow: hidden; }
.testimonials-track {
  display: flex; gap: 20px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testimonials-wrapper { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); }
.testi-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm); width: 320px; flex-shrink: 0;
}
.testi-stars { color: #F59E0B; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 20px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Arial, Helvetica, sans-serif; font-size: 16px;
  font-weight: 800; color: white;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-soft); }

/* ─── FAQ ─────────────────────────────────── */
.faq-section { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  overflow: hidden; transition: all 0.3s;
}
.faq-item:hover, .faq-item.open {
  border-color: var(--border); box-shadow: var(--shadow-sm);
}
.faq-item.open {
  border-color: var(--blue); box-shadow: 0 18px 45px rgba(19,86,216,0.12);
}
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 15px; color: var(--navy);
  user-select: none;
}
.faq-question .icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-bg); display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; color: var(--blue); flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-question .icon {
  background: var(--blue); color: white; transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 1000px; padding: 20px 24px 24px;
}

/* ─── FINAL CTA ─────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(19,86,216,0.3) 0%, transparent 70%);
}
.cta-final h2 {
  font-size: clamp(30px,4vw,52px); font-weight: 800;
  color: white; margin-bottom: 16px; position: relative;
}
.cta-final h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), #7EE8F8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-final p {
  font-size: 17px; color: rgba(255,255,255,0.65);
  margin-bottom: 40px; position: relative;
}
.cta-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
.btn-cta-primary {
  background: var(--cyan); color: var(--navy);
  font-weight: 700; box-shadow: 0 8px 32px rgba(0,200,232,0.4);
}
.btn-cta-primary:hover {
  background: var(--cyan-soft); transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(0,200,232,0.5);
}
.btn-cta-ghost {
  background: rgba(255,255,255,0.1); color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.18); }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: #040E1F; padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: Arial, Helvetica, sans-serif; font-weight: 800;
  font-size: 20px; color: white; margin-bottom: 16px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,0.6);
  transition: all 0.2s; cursor: pointer;
}
.social-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }
.footer-col h4 {
  font-family: Arial, Helvetica, sans-serif; font-size: 14px;
  font-weight: 700; color: white; margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── PROCESS / ABOUT MINI ─────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-content .section-header { text-align: left; margin-bottom: 24px; }
.about-content .section-header p { margin: 0; }
.about-points { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.about-point {
  display: flex; align-items: flex-start; gap: 14px;
}
.about-point-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--light-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.about-point-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-point-text p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.about-visual {
  position: relative;
}
.about-card-stack { position: relative; height: 380px; }
.about-card-main {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  background: white; border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: 24px;
  width: 320px;
}
.about-card-mini {
  position: absolute; bottom: 20px; right: -20px;
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border); padding: 16px;
  box-shadow: var(--shadow-md); width: 200px;
  animation: cardFloat 5s ease-in-out infinite;
  animation-delay: 0.5s;
}
.about-card-mini2 {
  position: absolute; bottom: 120px; left: -10px;
  background: var(--navy); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1); padding: 16px;
  box-shadow: var(--shadow-md); width: 180px;
  animation: cardFloat 5s ease-in-out infinite;
  animation-delay: 1.5s;
}
.mini-label { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 6px; }
.mini-value { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; }
.mini-sub { font-size: 11px; margin-top: 2px; }
.ai-score-bar {
  background: var(--light-bg); border-radius: 100px;
  height: 8px; margin: 8px 0; overflow: hidden;
}
.ai-score-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: fillBar 2s ease-out 0.5s both;
}
@keyframes fillBar { from{width:0%} }

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MEDIA QUERIES ─────────────────────────────────── */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2,1fr); }
  .industry-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-secondary { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .hiw-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .hiw-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .solutions-grid { grid-template-columns: repeat(2,1fr); }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
