

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

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

:root {
  --navy:       #001F5B;
  --blue:       #0048B5;
  --mid-blue:   #1560D4;
  --light-blue: #EBF1FD;
  --sky:        #6EA8FF;
  --white:      #FFFFFF;
  --off:        #F4F7FD;
  --text:       #0D1B3E;
  --muted:      #607090;
  --border:     #D3DEFA;
  --success:    #1A7A4A;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --shadow-sm: 0 2px 12px rgba(0,31,91,0.07);
  --shadow-md: 0 8px 32px rgba(0,31,91,0.12);
  --shadow-lg: 0 20px 60px rgba(0,31,91,0.16);

  --radius: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-blue);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mid-blue);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: white;
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,72,181,0.3);
}

.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover {
  background: var(--light-blue);
  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(--light-blue);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 85px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo img {
  height: 46px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
}

.navbar-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--navy);
  padding: 16px 24px;
  border-radius: 6px;
  transition: all 0.2s;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  background: var(--light-blue);
  color: var(--blue);
}

.navbar-menu .btn-nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
  margin-left: 8px;
}

.navbar-menu .btn-nav-cta:hover,
.navbar-menu .btn-nav-cta.active {
  background: var(--navy) !important;
  color: white !important;
}

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

.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, #0038A0 60%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -180px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 62px);
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0 0;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

.footer {
  background: var(--text);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand-logo {
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: 180px;
  margin-bottom: 22px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: white; }

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: white; }
.footer-links a::before {
  content: '→';
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
  .container { padding: 0 20px; }

  .hamburger { display: flex; }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 85px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .navbar-menu.open { display: flex; }
  .navbar-menu a { width: 100%; padding: 14px 18px; }
  .navbar-menu .btn-nav-cta { width: 100%; margin: 8px 0 0; text-align: center; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-up {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
  animation-fill-mode: both;
}

.anim-up.d1 { animation-delay: 0.05s; }
.anim-up.d2 { animation-delay: 0.15s; }
.anim-up.d3 { animation-delay: 0.25s; }
.anim-up.d4 { animation-delay: 0.35s; }
.anim-up.d5 { animation-delay: 0.45s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.navbar-menu a.active {
  color: var(--blue);
  background: var(--light-blue);
  position: relative;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center .section-lead {
  margin: 0 auto;
}

.f-card:hover .f-card-head {
  filter: brightness(1.06);
}

.pill {
  transition: background 0.2s, transform 0.2s;
}

.info-table tr:hover td {
  background: var(--off);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(110,168,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.btn {
  position: relative;
  overflow: hidden;
}

.p-num {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content {
  padding: 80px 0 100px;
  background: var(--off);
}

.legal-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 60px;
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}

.legal-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.legal-card h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-card p, .legal-card li {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-card a {
  color: var(--blue);
}

.legal-card strong {
  color: var(--text);
  font-weight: 600;
}

.legal-intro {
  background: var(--light-blue);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .legal-card { padding: 28px; }
}

.footer-brand-logo {
  display: none; 
}

.footer-logo-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-logo-arrow {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: white;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
