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

:root {
  --bg: #0b1a2e;
  --card-bg: #122040;
  --accent: #2E7DD1;
  --accent-hover: #1a6abf;
  --text: #F4F8FF;
  --muted: #7a9abf;
  --font-display: 'Bebas Neue', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 125, 209, 0.2);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(244, 248, 255, 0.3);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-white {
  background: #fff;
  color: var(--accent);
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
}
.btn-white:hover { background: #e8f1fb; transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(11, 26, 46, 0.98);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(46, 125, 209, 0.2);
  z-index: 999;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-label);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(46, 125, 209, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* PAGE HERO */
.page-hero {
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-stripe-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(46, 125, 209, 0.04) 60px,
    rgba(46, 125, 209, 0.04) 64px
  );
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb span { color: var(--text); }

.hero-label {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.accent-word { color: var(--accent); }

.page-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-ctas .btn { font-size: 1rem; padding: 0.8rem 2rem; }

/* CONTENT SECTIONS */
.content-section { padding: 5rem 2rem; }
.content-section.alt { background: var(--card-bg); }

.section-tag {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-tag.center {
  justify-content: center;
}

.section-tag.center::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.section-title.center {
  text-align: center;
  margin-bottom: 3rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-grid p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.benefit-list {
  background: var(--card-bg);
  border: 1px solid rgba(46, 125, 209, 0.15);
  border-radius: 10px;
  padding: 2rem;
}

.benefit-list h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.benefit-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.benefit-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid rgba(46, 125, 209, 0.15);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.2s;
}

.benefit-card:hover {
  border-color: rgba(46, 125, 209, 0.4);
  transform: translateY(-2px);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1a4d8a 0%, var(--accent) 60%, #1a6abf 100%);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.04) 40px,
    rgba(255,255,255,0.04) 44px
  );
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* FOOTER */
footer {
  background: #060f1d;
  border-top: 1px solid rgba(46, 125, 209, 0.1);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
}
