* { box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: #fff; color: #0F1F3D; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }

/* Nav */
.nav-link { position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: #F5C518; transition: width .3s ease; }
.nav-link:hover::after { width: 100%; }

/* Hero gradient background */
.hero-bg {
  background: linear-gradient(135deg, #0F1F3D 0%, #1A2F50 60%, #0F1F3D 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Noise texture overlay */
.noise::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* Gold pill badge */
.badge { display: inline-block; background: rgba(245,197,24,0.15); border: 1px solid rgba(245,197,24,0.35); color: #F5C518; border-radius: 999px; padding: 4px 14px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* Buttons */
.btn-primary {
  background: #F5C518; color: #0F1F3D; font-family: 'Syne', sans-serif; font-weight: 700;
  border-radius: 6px; padding: 12px 28px; transition: all .2s ease; display: inline-block;
  letter-spacing: 0.02em; border: 2px solid #F5C518;
}
.btn-primary:hover { background: #FFDA4D; border-color: #FFDA4D; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,197,24,0.3); }

.btn-outline-white {
  background: transparent; color: #fff; font-family: 'Syne', sans-serif; font-weight: 700;
  border-radius: 6px; padding: 12px 28px; transition: all .2s ease; display: inline-block;
  letter-spacing: 0.02em; border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.btn-outline-navy {
  background: transparent; color: #0F1F3D; font-family: 'Syne', sans-serif; font-weight: 700;
  border-radius: 6px; padding: 12px 28px; transition: all .2s ease; display: inline-block;
  letter-spacing: 0.02em; border: 2px solid #0F1F3D;
}
.btn-outline-navy:hover { background: #0F1F3D; color: #fff; }

/* Problem cards */
.problem-card {
  background: #fff; border: 1px solid #E5E9F0; border-radius: 12px; padding: 28px 24px;
  transition: all .25s ease; position: relative; overflow: hidden;
}
.problem-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: #F5C518; border-radius: 0 0 3px 0; transition: height .3s ease; }
.problem-card:hover { box-shadow: 0 12px 40px rgba(15,31,61,0.1); transform: translateY(-4px); }
.problem-card:hover::before { height: 100%; }

/* Workflow steps */
.step-node {
  width: 64px; height: 64px; border-radius: 14px;
  background: #fff; border: 2px solid #E5E9F0;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease; position: relative; z-index: 1;
}
.step-node:hover { border-color: #F5C518; background: #FFF9E0; box-shadow: 0 8px 24px rgba(245,197,24,0.2); }
.step-connector { flex: 1; height: 2px; background: linear-gradient(90deg, #E5E9F0, #F5C518, #E5E9F0); position: relative; top: 0; }

/* Feature cards */
.feature-card {
  background: #fff; border: 1.5px solid #E5E9F0; border-radius: 14px; padding: 30px 26px;
  transition: all .25s ease;
}
.feature-card:hover { border-color: #F5C518; box-shadow: 0 16px 48px rgba(15,31,61,0.08); transform: translateY(-3px); }

.feature-icon-wrap {
  width: 48px; height: 48px; border-radius: 10px;
  background: #FFF9E0; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* Benefit pills */
.benefit-pill {
  background: #fff; border: 1.5px solid #E5E9F0; border-radius: 10px; padding: 20px 24px;
  font-weight: 600; font-family: 'Syne', sans-serif; font-size: 0.95rem;
  transition: all .2s; display: flex; align-items: center; gap: 12px;
}
.benefit-pill:hover { border-color: #F5C518; background: #FFFDF0; }
.benefit-pill.gold { background: #F5C518; border-color: #F5C518; color: #0F1F3D; }

/* Checklist */
.check-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: #F5C518; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* Section divider */
.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #F5C518; margin-bottom: 12px; }

/* Dark CTA section */
.cta-section {
  background: linear-gradient(135deg, #0F1F3D 0%, #162847 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  z-index: 1;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  z-index: 1;
}

/* Noise texture for CTA section */
.cta-section .noise-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* Marquee strip */
.marquee-strip { background: #F5C518; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; animation: marquee 50s linear infinite; }
.marquee-inner span { display: inline-block; padding: 0 32px; font-family: 'Syne', sans-serif; font-weight: 700; color: #0F1F3D; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Navbar scroll effect */
.navbar { transition: background .3s, box-shadow .3s; }
.navbar.scrolled { background: rgba(15,31,61,0.97) !important; box-shadow: 0 4px 24px rgba(0,0,0,0.2); }

/* Fade-in animation */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.15s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.45s; opacity: 0; }

/* Logo hex placeholder */
.logo-hex { width: 36px; height: 36px; }

/* Mobile menu */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }

/* Form inputs */
.form-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid #E5E9F0; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; color: #0F1F3D;
  transition: all .2s ease;
}
.form-input:focus {
  outline: none; border-color: #F5C518; box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-input::placeholder { color: #0F1F3D/40; }

/* Contact card */
.contact-card {
  background: #fff; border: 1.5px solid #E5E9F0; border-radius: 14px; padding: 30px 26px;
  transition: all .25s ease;
}
.contact-card:hover { border-color: #F5C518; box-shadow: 0 16px 48px rgba(15,31,61,0.08); transform: translateY(-3px); }
