:root {
  --bg: #0b1220;
  --bg-2: #0f1a2e;
  --navy: #1f3350;
  --navy-dark: #182a44;
  --ink: #f5f1e8;
  --muted: #9aa7bd;
  --accent: #ef7a2a;
  --accent-2: #f2b24a;
  --line: rgba(245, 241, 232, 0.12);
  --card: #131f38;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter Tight", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html, body { max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: #f2ede1;
  color: #1a2744;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* HEADER */
header.main {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}
.logo-text .top { font-size: 20px; display: block; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
.nav-phone .phone-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 18px;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(239, 122, 42, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 122, 42, 0.5);
  background: #ff8736;
}
.btn-ghost {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 100px 24px 120px;
  color: #fff;
  position: relative;
  border-bottom: 4px solid var(--accent);
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-hero .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.page-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CONTENT */
.content-block {
  background: #f2ede1;
  padding: 90px 24px 100px;
  position: relative;
}
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.content-wrap h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  color: #1a2744;
  line-height: 1.15;
  margin-bottom: 18px;
  margin-top: 40px;
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 14px;
}
.content-wrap > p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4560;
  margin-bottom: 22px;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 30px 0;
}
.feature-item {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 22px 26px;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.feature-item h3 {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1a2744;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.feature-item p {
  font-size: 14px;
  line-height: 1.65;
  color: #3a4560;
}
.check-list {
  list-style: none;
  margin: 20px 0 30px;
}
.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 15px;
  color: #3a4560;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
}
.cta-card {
  margin-top: 40px;
  background: var(--navy);
  color: #fff;
  padding: 40px 36px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.18);
}
.cta-card h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-size: 15px;
}
.cta-card p a { color: var(--accent); font-weight: 700; }

/* FOOTER */
footer {
  background: var(--navy);
  padding: 70px 24px 30px;
  color: #fff;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-top .big {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-top .call {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand-line {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--accent);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom a { margin: 0 8px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav { padding: 14px 16px; gap: 10px; }
  .nav-links { display: none; }
  .nav-right .btn { padding: 12px 16px; font-size: 12px; letter-spacing: 0.06em; flex-shrink: 0; }
  .logo { min-width: 0; }
  .logo-text { line-height: 1.15; }
  .logo-text .top { font-size: 14px; }
  .logo-text .brand-2 { display: block; font-size: 11px; }
  .feature-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .page-hero { padding: 60px 18px 80px; }
  .page-hero h1 { font-size: clamp(28px, 6vw, 44px); }
  .page-hero p { font-size: 16px; }
  .content-block { padding: 50px 18px 60px; }
  .content-wrap h2 { font-size: clamp(20px, 4.6vw, 26px); }
  .feature-item { padding: 18px 22px; }
  .cta-card { padding: 30px 22px; }
  footer { padding: 50px 18px 24px; }
}
@media (max-width: 640px) {
  .nav { padding: 12px 14px; gap: 8px; }
  .logo-text .top { font-size: 12px; }
  .logo-text .brand-2 { font-size: 10px; }
  .nav-right .btn { padding: 10px 12px; font-size: 10px; letter-spacing: 0.04em; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 48px 14px 64px; }
  .page-hero-ctas { flex-direction: column; align-items: stretch; }
  .page-hero-ctas .btn { width: 100%; text-align: center; padding: 14px 22px; }
  .content-block { padding: 44px 14px 54px; }
  .check-list li { font-size: 14px; }
  .cta-card { padding: 26px 18px; }
  .cta-card h3 { font-size: 18px; }
}
