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

:root {
  --primary: #0a2a44;
  --primary-light: #123b5e;
  --accent: #c8962e;
  --accent-hover: #b07d1f;
  --bg: #ffffff;
  --bg-light: #f3f5f8;
  --bg-dark: #0a1f32;
  --text-dark: #1a1a2e;
  --text-light: #5a6a7a;
  --text-white: #f0f4f8;
  --border: #d6dee6;
  --shadow: 0 2px 12px rgba(10, 42, 68, 0.08);
  --radius: 8px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  line-height: 1.4;
}
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}
.btn-outline:hover {
  background: var(--text-white);
  color: var(--primary);
}
.hero .btn-outline { border-color: rgba(255,255,255,.6); color: var(--text-white); }
.hero .btn-outline:hover { background: #fff; color: var(--primary); }

/* === Navbar === */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
}
.logo:hover { color: var(--accent); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,.78);
  font-weight: 500;
  font-size: .92rem;
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}
.nav-cta { padding: 8px 20px; font-size: .85rem; }

/* === Sections === */
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary);
}
.section-cta { text-align: center; margin-top: 40px; }

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #0d4b4b 100%);
  padding: 120px 0 100px;
  text-align: center;
  color: #fff;
}
.hero-content { max-width: 720px; }
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Value Props === */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.prop-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(10,42,68,.12); }
.prop-icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }
.prop-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary); }
.prop-card p { color: var(--text-light); font-size: .92rem; line-height: 1.65; }

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.services-full { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(10,42,68,.12); }
.service-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); }
.service-card p { color: var(--text-light); font-size: .9rem; line-height: 1.65; }

/* === About Strip === */
.about-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b5a 100%);
  color: #fff;
  padding: 80px 0;
}
.about-strip-inner { max-width: 680px; }
.about-strip h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-strip p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-strip .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.about-strip .btn-outline:hover { background: #fff; color: var(--primary); }

/* === Credentials Strip === */
.credentials { padding: 32px 0; background: var(--bg-dark); }
.credentials-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.credential-item {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.cred-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 8px;
  letter-spacing: .3px;
}

/* === CTA Band === */
.cta-band {
  background: var(--bg);
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.cta-band-inner { max-width: 600px; }
.cta-band h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.cta-band p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.cta-band a:not(.btn) { color: var(--accent); }

/* === Page Hero (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 72px 0 60px;
  color: #fff;
  text-align: center;
}
.page-hero-content { max-width: 680px; }
.page-hero h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; }

/* === Content layouts === */
.content-row { max-width: 780px; }
.content-text h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 18px;
  margin-top: 10px;
}
.content-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* === Legal Content === */
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content p, .legal-content li {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 24px; list-style: disc; }
.legal-content li { margin-bottom: 6px; }

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 1.4rem; color: var(--primary); margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon { font-size: 1.4rem; line-height: 1.4; }
.contact-item strong { display: block; font-size: .9rem; color: var(--text-dark); }
.contact-item div { color: var(--text-light); font-size: .9rem; line-height: 1.6; }
.contact-form-wrap h2 { font-size: 1.4rem; color: var(--primary); margin-bottom: 14px; }
.contact-form-wrap p { color: var(--text-light); font-size: .92rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,150,46,.12);
}

/* === Footer === */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.78);
  font-size: .88rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px;
}
.footer-col h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-brand p { line-height: 1.65; color: rgba(255,255,255,.65); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-inner { flex-wrap: wrap; height: auto; padding: 12px 0; }
  .hamburger { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 8px;
  }
  .navbar.open .nav-links { display: flex; }
  .nav-links a { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .navbar.open .nav-cta { display: inline-block; margin-top: 10px; margin-bottom: 4px; width: 100%; text-align: center; }

  .hero { padding: 80px 0 64px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }

  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; margin-bottom: 32px; }

  .props-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full { grid-template-columns: 1fr; }

  .credentials-strip { gap: 20px; flex-direction: column; align-items: center; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .page-hero { padding: 52px 0 44px; }
  .page-hero h1 { font-size: 1.8rem; }
}
