:root {
  --bg-hero: #243447;
  --bg-dark: #1e2d3d;
  --bg-darker: #192736;
  --bg-darkest: #142230;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --bg-card-dark: #2a3f52;
  --bg-card-dark-hover: #304858;
  --border-dark: #344a5e;
  --border-light: #e2e6ec;
  --text-white: #ffffff;
  --text-light: #c8d3de;
  --text-muted-light: #8a9bb0;
  --text-dark: #2c3e50;
  --text-body: #5a6a7a;
  --orange: #e8734a;
  --orange-hover: #d4633c;
  --orange-light: rgba(232,115,74,0.12);
  --green: #34c759;
  --font: 'Montserrat', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg-white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; font-size: 15px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 3rem; height: 80px; display: flex; align-items: center; justify-content: space-between; background: transparent; transition: background 0.35s, box-shadow 0.35s; border-bottom: 1px solid transparent; }
nav.scrolled { background: var(--bg-white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); border-bottom-color: var(--border-light); }
.logo { display: flex; align-items: center; text-decoration: none; position: relative; }
.logo img { height: 46px; width: auto; transition: opacity 0.3s; }
.logo .logo-dark { position: absolute; top: 0; left: 0; opacity: 0; }
nav.scrolled .logo .logo-light { opacity: 0; }
nav.scrolled .logo .logo-dark { opacity: 1; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links li a { color: var(--text-light); text-decoration: none; font-size: 0.88rem; font-weight: 500; padding: 0.5rem 1rem; border-radius: 6px; transition: color 0.3s; }
.nav-links li a:hover, .nav-links li a.active { color: var(--orange); }
nav.scrolled .nav-links li a { color: var(--text-body); }
nav.scrolled .nav-links li a:hover, nav.scrolled .nav-links li a.active { color: var(--orange); }
.nav-links .nav-cta a { background: var(--orange); color: var(--text-white) !important; padding: 0.55rem 1.3rem; font-weight: 600; border-radius: 20px; margin-left: 0.5rem; transition: background 0.2s; }
.nav-links .nav-cta a:hover { background: var(--orange-hover); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; }
nav.scrolled .mobile-toggle { color: var(--text-dark); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.75rem 1.6rem; border-radius: 25px; font-family: var(--font); font-size: 0.88rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: transform 0.15s, box-shadow 0.2s, background 0.2s; }
.btn-orange { background: var(--orange); color: var(--text-white); }
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 25px rgba(232,115,74,0.35); }
.btn-outline-white { background: transparent; color: var(--text-white); border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border: 2px solid var(--border-light); }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* PAGE HEADER */
.page-header { background: linear-gradient(135deg, #1b3248 0%, #24445e 40%, #2a5068 100%); padding: 7rem 3rem 4rem; text-align: center; }
.page-header h1 { font-size: 2.2rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.75rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--text-muted-light); }
.breadcrumb .current { color: var(--text-white); font-weight: 600; }

/* SECTIONS */
.section { padding: 5rem 3rem; max-width: 1180px; margin: 0 auto; }
.section-center { text-align: center; }
.section-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem; }
.section-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.section-heading.white { color: var(--text-white); }
.section-heading::after { content: ''; display: block; width: 50px; height: 3px; background: var(--orange); margin-top: 0.75rem; border-radius: 2px; }
.section-center .section-heading::after { margin-left: auto; margin-right: auto; }
.section-sub { color: var(--text-body); max-width: 580px; font-size: 0.95rem; margin-top: 1rem; margin-bottom: 2.5rem; line-height: 1.7; }
.section-sub.white { color: var(--text-light); }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* LEGAL PAGE CONTENT */
.legal-content { max-width: 860px; margin: 0 auto; padding: 3.5rem 3rem 5rem; }
.legal-content h2 { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin: 2.5rem 0 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.legal-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 1.5rem 0 0.5rem; }
.legal-content p { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; margin-bottom: 0.85rem; }
.legal-content ul, .legal-content ol { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content li { font-size: 0.88rem; color: var(--text-body); line-height: 1.75; margin-bottom: 0.4rem; }
.legal-content .legal-meta { font-size: 0.8rem; color: var(--text-muted-light); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border-light); }
.legal-content a { color: var(--orange); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* FOOTER */
footer { background: var(--bg-darkest); padding: 3rem 3rem 2rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.footer-info { max-width: 380px; }
.footer-info .logo { margin-bottom: 0.75rem; }
.footer-info p { font-size: 0.78rem; color: var(--text-muted-light); line-height: 1.7; }
.footer-cols { display: flex; gap: 3.5rem; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-white); margin-bottom: 0.8rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: var(--text-muted-light); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { max-width: 1180px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border-dark); font-size: 0.7rem; color: var(--text-muted-light); line-height: 1.8; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; height: 68px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-darkest); padding: 1rem 1.5rem; border-bottom: 1px solid var(--border-dark); gap: 0.25rem; z-index: 99; }
  nav.scrolled .nav-links.open { background: var(--bg-white); border-bottom-color: var(--border-light); }
  .nav-links.open .nav-cta a { margin-left: 0; margin-top: 0.5rem; display: inline-block; }
  .mobile-toggle { display: block; }
  .page-header { padding: 6rem 1.5rem 3rem; }
  .page-header h1 { font-size: 1.7rem; }
  .section { padding: 3.5rem 1.5rem; }
  .legal-content { padding: 2.5rem 1.5rem 4rem; }
  .footer-cols { gap: 2rem; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .footer-inner { flex-direction: column; }
  .footer-cols { flex-direction: column; gap: 1.5rem; }
}
