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

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

:root {
  --navy: #1a237e;
  --navy-dark: #0d1557;
  --navy-mid: #283593;
  --orange: #e64000;
  --orange-light: #ff6a33;
  --white: #ffffff;
  --off-white: #fafaf8;
  --bg-light: #f5f6fa;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(17, 24, 39, 0.07);
  --shadow-hover: 0 16px 48px rgba(17, 24, 39, 0.14);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.01em;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background-color: var(--orange-light);
  border-color: var(--orange-light);
  box-shadow: 0 8px 24px rgba(230, 64, 0, 0.35);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-light { background-color: var(--off-white); }
.section-navy { background-color: var(--navy-dark); color: var(--white); }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-navy .section-header h2 { color: var(--white); }

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

.section-navy .section-header p { color: rgba(255,255,255,0.65); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 96px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(230,64,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-banner-inner { position: relative; z-index: 1; }

.page-banner h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.page-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 auto 18px;
  line-height: 1.7;
}

.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  background-color: var(--navy-dark);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track .marquee-word {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.marquee-track .marquee-star {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--orange);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SVG ICON CLASSES ===== */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background-color var(--transition), transform var(--transition);
}

.icon-box .icon-md,
.icon-box .icon-lg {
  color: var(--orange);
  transition: color var(--transition);
}

/* ===== FEATURE ITEM ===== */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feature-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(230,64,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { color: #ff9060; }

.feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

/* ===== CARD BASE ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== GRID UTILITIES ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .section-header { margin-bottom: 40px; }
  .container { padding: 0 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .page-banner { padding: 72px 0 52px; }
}
