@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --blue: #0b81ff;
  --blue-dark: #0066cc;
  --blue-light: #e8f2ff;
  --blue-mid: #dae7ff;
  --gold: #ffb902;
  --gold-dark: #e6a600;
  --navy: #07223d;
  --navy-deep: #020f1e;
  --text: #1a2535;
  --body: #4e5a6b;
  --muted: #8898aa;
  --border: #e3eaf3;
  --bg: #ffffff;
  --bg-light: #f0f6ff;
  --bg-section: #f8fafd;
  --shadow-sm: 0 2px 8px rgba(11,129,255,.08);
  --shadow-md: 0 8px 32px rgba(11,129,255,.12);
  --shadow-lg: 0 20px 60px rgba(11,129,255,.15);
  --shadow-hover: 0 28px 72px rgba(11,129,255,.2);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--body); line-height: 1.8; }
a { color: inherit; text-decoration: none; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #0047b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announcement-bar a { color: var(--gold); font-weight: 700; text-decoration: underline; }
.announcement-bar .pill {
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 19px; font-weight: 800;
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); letter-spacing: -0.03em;
}
.nav-logo .logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue) 0%, #0052cc 100%);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(11,129,255,.35);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--body);
  padding: 6px 14px; border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all .2s !important;
  box-shadow: 0 3px 12px rgba(255,185,2,.3);
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  box-shadow: 0 6px 20px rgba(255,185,2,.4) !important;
  transform: translateY(-1px) !important;
}
.nav-mobile { display: none; background: none; border: none; cursor: pointer; color: var(--navy); font-size: 22px; }

/* ── SECTIONS ── */
section { padding: 96px 6%; }
.container { max-width: 1160px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--blue); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 17px; max-width: 560px; color: var(--body); line-height: 1.8; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header.centered .section-eyebrow::before { display: none; }

/* ── HERO ── */
.hero {
  padding: 0;
  background: linear-gradient(160deg, #e8f2ff 0%, #f0f6ff 35%, #fafcff 65%, #fff 100%);
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(11,129,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,129,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px);
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: rgba(11,129,255,.07);
  top: -200px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: rgba(255,185,2,.06);
  bottom: -100px; left: -50px;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 120px 6% 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.hero-left { }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,129,255,.08);
  border: 1px solid rgba(11,129,255,.18);
  border-radius: 100px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
  box-shadow: 0 0 6px rgba(255,185,2,.5);
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-trust-text { font-size: 13px; color: var(--muted); font-weight: 500; }
.hero-trust-text strong { color: var(--navy); }
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; background: var(--blue-light);
}
.hero-avatars span:first-child { margin-left: 0; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
}
.hero-card-main {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(11,129,255,.15), 0 0 0 1px rgba(11,129,255,.08);
  position: relative; z-index: 2;
}
.hero-card-main .card-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted); margin-bottom: 16px;
}
.automation-flow { display: flex; flex-direction: column; gap: 0; }
.flow-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.flow-item:last-child { border-bottom: none; }
.flow-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.flow-icon.blue { background: var(--blue-light); }
.flow-icon.gold { background: #fff8e6; }
.flow-icon.green { background: #e6f9f0; }
.flow-icon.purple { background: #f0edff; }
.flow-text { flex: 1; }
.flow-text strong { font-size: 13px; font-weight: 600; color: var(--navy); display: block; }
.flow-text span { font-size: 11px; color: var(--muted); }
.flow-status {
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; flex-shrink: 0;
}
.flow-status.done { background: #e6f9f0; color: #1a9e63; }
.flow-status.live { background: #fff8e6; color: #b37f00; }
.flow-status.active { background: var(--blue-light); color: var(--blue); }

.hero-card-mini {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  z-index: 3;
}
.hero-card-mini.top-right {
  top: -24px; right: -24px;
  display: flex; align-items: center; gap: 10px;
}
.hero-card-mini.bottom-left {
  bottom: -24px; left: -24px;
  display: flex; align-items: center; gap: 10px;
}
.mini-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}
.mini-icon.gold { background: #fff8e6; }
.mini-icon.green { background: #e6f9f0; }
.mini-label strong { font-size: 13px; font-weight: 700; color: var(--navy); display: block; }
.mini-label span { font-size: 11px; color: var(--muted); }

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  background: var(--border); margin-top: 64px;
  box-shadow: var(--shadow-sm);
}
.stat-item {
  background: #fff; padding: 28px 20px; text-align: center;
  transition: background .2s;
}
.stat-item:hover { background: var(--bg-light); }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem; font-weight: 900;
  color: var(--blue); letter-spacing: -0.04em; line-height: 1;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-size: 14px; font-weight: 700; cursor: pointer; border: none;
  transition: all .2s; font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 20px rgba(255,185,2,.3);
}
.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(255,185,2,.45);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 20px rgba(11,129,255,.3);
}
.btn-blue:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 32px rgba(11,129,255,.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--blue); color: var(--blue);
  background: var(--blue-light);
}
.btn-outline-white {
  background: transparent; color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── CARDS ── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 32px;
  transition: all .25s;
  position: relative; overflow: hidden;
}
.card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #0052cc);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11,129,255,.15);
}
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--blue-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: transform .2s;
}
.card:hover .card-icon { transform: scale(1.1); }
.card h3 { margin-bottom: 10px; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  transition: all .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; line-height: 1.8; color: var(--body); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-light); display: flex;
  align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.author-role { font-size: 12px; color: var(--muted); }

/* ── FEATURE ROWS ── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-visual {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: 24px; padding: 56px 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; min-height: 280px;
  box-shadow: var(--shadow-md);
  transition: transform .3s;
}
.feature-visual:hover { transform: scale(1.02); }
.feature-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.feature-check .check { color: var(--blue); font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.feature-check p { font-size: 14px; margin: 0; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--blue); color: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800;
  box-shadow: 0 6px 20px rgba(11,129,255,.3);
}
.step-content h3 { margin-bottom: 4px; font-size: 1rem; }

/* ── PRICING ── */
.pricing-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 22px; padding: 40px; transition: all .25s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pricing-card.featured {
  border-color: var(--blue); background: var(--bg-light);
  position: relative;
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800; padding: 4px 18px;
  border-radius: 100px; white-space: nowrap;
  font-family: 'Poppins', sans-serif; letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(255,185,2,.4);
}
.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem; font-weight: 900;
  color: var(--navy); margin: 16px 0 4px; letter-spacing: -0.04em; line-height: 1;
}
.pricing-price span { font-size: .95rem; font-weight: 400; color: var(--muted); }
.pricing-features { list-style: none; margin: 24px 0; }
.pricing-features li {
  padding: 9px 0; font-size: 14px; color: var(--body);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #f0f4f8;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── CTA DARK ── */
.cta-dark {
  background: var(--navy-deep);
  padding: 100px 6%; text-align: center; position: relative; overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(11,129,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(255,185,2,.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-dark .container { position: relative; z-index: 1; }
.cta-dark h2 { color: #fff; }
.cta-dark p { color: rgba(255,255,255,.65); }

/* ── INDUSTRY STRIP ── */
.industry-strip { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.industry-tag {
  background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 9px 20px;
  font-size: 13px; font-weight: 500; color: var(--body);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: all .2s;
}
.industry-tag:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,129,255,.1);
  background: var(--blue-light);
}

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep); color: rgba(255,255,255,.8);
  padding: 72px 6% 36px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 260px; line-height: 1.8; color: rgba(255,255,255,.45); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.85); margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: 28px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.3);
}

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-section); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; color: var(--text); width: 100%;
  transition: all .2s; font-family: 'Inter', sans-serif;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
  background: #fff; box-shadow: 0 0 0 3px rgba(11,129,255,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .grid-3, .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  section { padding: 72px 5%; }
  .grid-3, .grid-2, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}
