/* ---------- Design tokens ---------- */
:root {
  --navy: #0b1f3f;
  --navy-deep: #081733;
  --red: #e01e26;
  --red-dark: #b8181e;
  --cyan: #2ec7dd;
  --cyan-dark: #1fa9be;
  --ink: #1a2540;
  --muted: #5a6577;
  --line: #e3e7ee;
  --bg-soft: #f2f4f7;
  --white: #ffffff;
  --head: "Oswald", "Arial Narrow", sans-serif;
  --body: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent-bar {
  display: block;
  width: 64px;
  height: 6px;
  background: var(--red);
  transform: skewX(-18deg);
  margin: 20px 0;
}
.accent-bar.center { margin: 20px auto 40px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

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

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--white);
  font-family: var(--head);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  transform: skewX(-12deg);
  transition: background 0.15s ease;
  white-space: nowrap;
}
.phone-btn > * { transform: skewX(12deg); }
.phone-btn:hover { background: var(--cyan-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(8, 23, 51, 0.92) 0%, rgba(11, 31, 63, 0.78) 60%, rgba(11, 31, 63, 0.55) 100%),
    url("assets/logo.webp") center/cover no-repeat,
    var(--navy);
  color: var(--white);
  overflow: hidden;
}
/* Solid navy backdrop layered above the faint logo texture */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(46, 199, 221, 0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 96px 24px 104px;
  max-width: 760px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  margin-right: auto;
}

.hero-eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 14px;
  color: var(--cyan);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0.5px;
}

.hero-sub {
  max-width: 560px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Pages section ---------- */
.pages-section {
  background: var(--bg-soft);
  padding: 80px 0 96px;
}

.section-title {
  text-align: center;
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--navy);
  padding-top: 6px;
}

.page-list {
  list-style: none;
  display: grid;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.page-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--cyan);
  padding: 26px 30px;
  box-shadow: 0 10px 30px rgba(11, 31, 63, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-left-color 0.15s ease;
}
.page-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 31, 63, 0.12);
  border-left-color: var(--red);
}

.page-number {
  font-family: var(--head);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--red);
  min-width: 56px;
}

.page-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}

.page-content h3 {
  font-family: var(--head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--navy);
}

.badge {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
}

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

.footer-logo {
  height: 40px;
  width: auto;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}

.footer-copy {
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero-inner { margin-left: auto; padding: 72px 24px 80px; }
}

@media (max-width: 560px) {
  .header-inner { min-height: 72px; gap: 12px; }
  .logo img { height: 38px; }
  .phone-btn { font-size: 15px; padding: 11px 18px; }
  .page-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .page-number { font-size: 32px; }
  .page-content { flex-direction: column; align-items: flex-start; }
}
