/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2744;
  --navy-dark: #111a30;
  --gold:      #c9a227;
  --gold-light:#e8c04a;
  --cream:     #f9f6ef;
  --white:     #ffffff;
  --text:      #2c2c2c;
  --text-light:#5a5a5a;
  --border:    #e0d8c8;
  --font-sans: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-serif:'Georgia', 'Times New Roman', serif;
  --max-width: 1160px;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* ===== LAYOUT UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--cream); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 68px; max-width: var(--max-width); margin: 0 auto;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
}
.nav__logo-text { color: var(--white); }
.nav__logo-text strong { display: block; font-size: 1.1rem; letter-spacing: .04em; color: var(--gold); }
.nav__logo-text span  { font-size: .72rem; color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; }

.nav__links { display: flex; gap: 28px; list-style: none; }
.nav__links a {
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500;
  transition: color .2s; padding: 4px 0; border-bottom: 2px solid transparent;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); border-color: var(--gold); }

.nav__cta {
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: .85rem;
  padding: 9px 20px; border-radius: var(--radius); transition: background .2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold-light); }

/* Hamburger */
.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #243460 100%);
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.15); border: 1px solid rgba(201,162,39,.3);
  color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--white);
  line-height: 1.18; margin-bottom: 20px;
}
.hero__title em { color: var(--gold); font-style: normal; }
.hero__sub {
  color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .92rem; padding: 13px 26px;
  border-radius: var(--radius); cursor: pointer; transition: all .2s; border: 2px solid transparent;
}
.btn--gold  { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,162,39,.35); }
.btn--outline { border-color: rgba(255,255,255,.4); color: var(--white); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero__trust {
  display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap;
}
.hero__trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .82rem; }
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero__visual { position: relative; }
.hero__card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero__card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 20px; text-align: center; backdrop-filter: blur(6px);
}
.hero__card-icon { font-size: 2rem; margin-bottom: 8px; }
.hero__card strong { display: block; color: var(--gold); font-size: 1.5rem; font-weight: 800; }
.hero__card span   { color: rgba(255,255,255,.65); font-size: .78rem; }
.hero__card--wide  { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; text-align: left; }
.hero__card--wide p { color: rgba(255,255,255,.7); font-size: .83rem; line-height: 1.5; margin-top: 4px; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--navy); padding: 28px 0; }
.trust-strip__inner {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-item__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,162,39,.15); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
}
.trust-item span { color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; text-align: center; max-width: 90px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header__label {
  display: inline-block; color: var(--gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); font-weight: 800; margin-bottom: 12px; }
.section-header p  { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.02rem; }

/* ===== WHY US ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 30px 26px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.why-card__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(26,39,68,.07); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.why-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p  { color: var(--text-light); font-size: .9rem; line-height: 1.6; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--navy); border-radius: 12px; padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform .2s; border: 1px solid rgba(201,162,39,.15);
}
.service-card:hover { transform: translateY(-3px); border-color: rgba(201,162,39,.4); }
.service-card__icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 10px;
  background: rgba(201,162,39,.15); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
}
.service-card h3 { font-size: .97rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.service-card p  { color: rgba(255,255,255,.65); font-size: .87rem; line-height: 1.55; }

/* ===== US SUPPORT ===== */
.us-support {
  background: linear-gradient(135deg, var(--navy) 0%, #243460 100%);
  border-radius: 16px; padding: 56px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.us-support h2 { color: var(--white); font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.us-support h2 span { color: var(--gold); }
.us-support > div > p { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.us-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.us-list li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: .93rem;
}
.us-list li::before {
  content: '✓'; width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  background: rgba(201,162,39,.2); border: 1px solid rgba(201,162,39,.4);
  color: var(--gold); font-size: .75rem; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.us-support__flag {
  text-align: center;
}
.flag-circle {
  width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,.08);
  border: 3px solid rgba(201,162,39,.3); display: flex; align-items: center;
  justify-content: center; font-size: 4rem; margin: 0 auto 20px;
}
.us-support__flag h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.us-support__flag p  { color: rgba(255,255,255,.6); font-size: .87rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.contact-card {
  background: var(--navy); color: var(--white);
  border-radius: 12px; padding: 36px 32px;
}
.contact-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 24px;
  border-bottom: 1px solid rgba(201,162,39,.2); padding-bottom: 12px;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info__row { display: flex; align-items: flex-start; gap: 12px; }
.contact-info__icon { font-size: 1rem; margin-top: 2px; min-width: 20px; }
.contact-info__text strong { display: block; font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact-info__text a,
.contact-info__text span { color: rgba(255,255,255,.9); font-size: .93rem; }
.contact-info__text a:hover { color: var(--gold); }

.cta-box {
  background: var(--gold); border-radius: 12px; padding: 36px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.cta-box h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); line-height: 1.3; }
.cta-box p  { color: rgba(26,39,68,.75); font-size: .93rem; }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,.55);
  padding: 28px 0; text-align: center; font-size: .82rem;
}
.footer a { color: var(--gold); }
.footer__tagline {
  color: var(--gold); font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner       { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual      { display: none; }
  .us-support        { grid-template-columns: 1fr; padding: 40px 28px; }
  .us-support__flag  { display: none; }
  .contact-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy-dark); padding: 12px 0;
  }
  .nav__links.open a { padding: 12px 24px; border-bottom: none; display: block; }
  .trust-strip__inner { gap: 28px; }
  .hero__trust { flex-direction: column; gap: 12px; }
}
