@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --blue: #1A3A6B;
  --blue-dark: #0f2447;
  --yellow: #F5C100;
  --yellow-dark: #d4a800;
  --white: #ffffff;
  --light-bg: #F0F4FA;
  --text-dark: #1A1A2E;
  --text-gray: #555;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text-dark); overflow-x: hidden; }

/* HEADER */
header {
  background: var(--blue-dark);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border-radius: 6px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--yellow); letter-spacing: 2px; }
.logo-text .sub { font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

nav { display: flex; align-items: center; gap: 6px; }
nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 6px 12px; border-radius: 4px; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--yellow); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--white); border-radius: 2px; }

/* PAGE */
.page { padding-top: 72px; min-height: 100vh; }

/* COMMON */
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; display: block; }
.section-label.dark { color: var(--blue); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 64px); line-height: 1; letter-spacing: 1px; margin-bottom: 20px; }
.section-title.light { color: var(--white); }
.section-title.dark { color: var(--blue-dark); }
.section-desc { font-size: 17px; color: var(--text-gray); line-height: 1.7; max-width: 600px; }

/* BUTTONS */
.btn-primary { background: var(--yellow); color: var(--blue-dark); padding: 16px 36px; border-radius: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 20px rgba(245,193,0,0.4); display: inline-block; }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); padding: 16px 36px; border-radius: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--blue-dark); color: var(--white); padding: 18px 44px; border-radius: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-dark:hover { background: var(--blue); transform: translateY(-2px); }

/* BADGES */
.badges { background: var(--yellow); padding: 20px 24px; }
.badges-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; }
.badge-item { display: flex; align-items: center; gap: 10px; padding: 8px 28px; border-right: 2px solid rgba(26,58,107,0.2); color: var(--blue-dark); }
.badge-item:last-child { border-right: none; }
.badge-item .badge-icon { font-size: 20px; }
.badge-item strong { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); padding: 80px 24px 60px; text-align: center; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 8vw, 80px); color: var(--white); letter-spacing: 2px; line-height: 1; }
.page-hero h1 span { color: var(--yellow); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); margin-top: 16px; }

/* CTA BANNER */
.cta-banner { background: var(--yellow); padding: 70px 24px; text-align: center; }
.cta-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 58px); color: var(--blue-dark); letter-spacing: 1px; margin-bottom: 12px; line-height: 1; }
.cta-banner p { font-size: 18px; color: rgba(26,58,107,0.8); margin-bottom: 36px; font-weight: 500; }

/* FOOTER */
footer { background: var(--blue-dark); padding: 60px 24px 30px; }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 70px; width: auto; object-fit: contain; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact-line { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 8px; }
.footer-contact-line a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-line a:hover { color: var(--yellow); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--blue-dark); flex-direction: column; padding: 24px; gap: 4px; border-top: 2px solid var(--yellow); }
  nav.open { display: flex; }
  nav a { font-size: 16px; padding: 12px 16px; width: 100%; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .badges-inner { flex-direction: column; align-items: center; }
  .badge-item { border-right: none; border-bottom: 1px solid rgba(26,58,107,0.15); width: 100%; justify-content: center; }
  .badge-item:last-child { border-bottom: none; }
}
