* {
  box-sizing: border-box;
}

:root {
  --navy: #08284f;
  --gold: #c9972f;
  --gold-dark: #a87b23;
  --bg: #f7f7f5;
  --text: #15212f;
  --muted: #5c6673;
  --white: #ffffff;
  --border: rgba(8, 40, 79, 0.12);
  --shadow: 0 14px 40px rgba(8, 40, 79, 0.12);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: var(--navy);
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  width: 290px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.site-nav a {
  color: var(--navy);
}

.nav-cta,
.btn-primary {
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
  padding: 64px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-tag {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 10px;
}

.hero h1,
.section h2 {
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--white);
}

.hero-highlights,
.check-list,
.pin-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.hero-highlights li,
.check-list li,
.pin-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.hero-highlights li::before,
.check-list li::before,
.pin-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.hero-card,
.info-card,
.card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.hero-logo {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 20px;
}

.hero-card-box h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-card-box ul {
  margin: 0;
  padding-left: 18px;
}

.section {
  padding: 72px 0;
}

.alt {
  background: var(--bg);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.info-card {
  padding: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.card {
  padding: 24px;
}

.card h3 {
  margin-top: 0;
  color: var(--navy);
}

.seo-box {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.contact-card {
  padding: 24px;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 26px 0;
}

.site-footer a {
  color: var(--white);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366;
  color: white !important;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-wrap,
  .cards {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 220px;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 16px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 42px 0;
  }

  .section {
    padding: 54px 0;
  }

  .brand-logo {
    width: 180px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }
}
