:root {
  --navy: #060b18;
  --navy-2: #0a1730;
  --navy-3: #0f1f42;
  --blue: #0b5ed7;
  --blue-light: #4f9cff;
  --gold: #c9a227;
  --gold-light: #e6c862;
  --off-white: #f7f8fb;
  --ink: #12182b;
  --muted: #5c6478;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(6, 11, 24, 0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Poppins', 'Inter', sans-serif; margin: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.text-gradient {
  background: linear-gradient(100deg, var(--blue-light), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--blue), #0847a8);
  color: #fff;
  box-shadow: 0 10px 30px rgba(11, 94, 215, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(11, 94, 215, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(18, 24, 43, 0.15);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(6, 11, 24, 0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.site-footer .brand-logo { height: 30px; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-cta { font-size: 0.88rem; padding: 10px 22px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 50% 0%, var(--navy-3) 0%, var(--navy) 60%);
  color: #fff;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(11,94,215,0.35) 0%, rgba(201,162,39,0.08) 45%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.eyebrow.center { display: block; text-align: center; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 22px;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
.hero-actions .btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 36px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--gold-light); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* Sections */
.section { padding: 110px 0; }
.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  max-width: 720px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.section-sub.center { text-align: center; }

/* Grids & Cards */
.grid { display: grid; gap: 28px; margin-top: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(6,11,24,0.16); }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { color: var(--muted); line-height: 1.6; font-size: 0.95rem; margin: 0; }
.card-icon { font-size: 1.8rem; margin-bottom: 16px; }

.card-outline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}
.card-outline:hover { border-color: var(--gold-light); background: rgba(255,255,255,0.06); }
.card-outline h3 { color: #fff; }
.card-outline p { color: rgba(255,255,255,0.65); }

/* Problem split */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.lead { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin: 18px 0 24px; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 14px; color: rgba(255,255,255,0.85); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-light); font-weight: 700; }
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.pc-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.pc-x { color: #ff6b6b; font-weight: 700; }
.pc-check { color: #57e39a; font-weight: 700; }
.pc-good { color: #fff; }
.pc-divider { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); margin: 16px 0; }

/* Workflow */
.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.workflow-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  position: relative;
}
.wf-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue);
  margin-bottom: 14px;
}
.workflow-step h3 { font-size: 1rem; margin-bottom: 8px; }
.workflow-step p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Pricing */
.pricing-grid { align-items: stretch; }
.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--blue); margin: 0 0 24px; }
.price-list { margin-bottom: 20px; flex: 1; }
.price-list li { padding: 8px 0 8px 26px; position: relative; color: var(--ink); font-size: 0.93rem; border-bottom: 1px dashed rgba(18,24,43,0.08); }
.price-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.price-addon { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }
.price-featured {
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 30px 70px rgba(11,94,215,0.35);
}
.price-featured:hover { transform: scale(1.04) translateY(-6px); }
.price-featured h3, .price-featured .price { color: #fff; }
.price-featured .price-list li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.12); }
.price-featured .price-list li::before { color: var(--gold-light); }
.price-featured .price-addon { color: rgba(255,255,255,0.6); }
.price-badge {
  position: absolute;
  top: -14px; right: 28px;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Process timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 7px; left: 6%; right: 6%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.process-item { position: relative; padding-top: 30px; }
.process-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-light);
  position: absolute;
  top: 0; left: 0;
  box-shadow: 0 0 0 6px rgba(201,162,39,0.15);
}
.process-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-item p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; margin: 0; }


/* Blog */
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--gold-light); }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 14px;
  font-weight: 700;
}
.blog-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.blog-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* Final CTA / contact */
.final-cta {
  background: radial-gradient(120% 120% at 50% 100%, var(--navy-3) 0%, var(--navy) 65%);
  color: #fff;
}
.final-cta-inner { text-align: center; }
.contact-form {
  max-width: 640px;
  margin: 20px auto 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px;
  text-align: left;
}
.hp-field { position: absolute; left: -9999px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; margin-bottom: 8px; color: rgba(255,255,255,0.7); }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue-light);
}
.form-status { text-align: center; margin-top: 14px; font-size: 0.9rem; color: var(--gold-light); min-height: 1.2em; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 50px 0 30px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-tag { max-width: 420px; font-size: 0.9rem; line-height: 1.6; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,11,24,0.97);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .hero-stats { gap: 34px; }
  .form-row { grid-template-columns: 1fr; }
}
