/* Shared styles for local landing pages */

:root {
  --navy: #1B2E4A;
  --navy-light: #253d60;
  --navy-dark: #121f33;
  --teal: #2A7F8B;
  --teal-light: #3a9aaa;
  --teal-dark: #1e5f68;
  --gold: #B8963E;
  --gold-light: #d4af5a;
  --gold-dark: #8a7030;
  --warm-white: #FEFEFE;
  --warm-gray: #F5F4F2;
  --warm-gray2: #EAE9E6;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--warm-white);
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}

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

a:hover {
  color: var(--teal-dark);
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Skip-to-content link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 100;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
}

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

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.2;
}

.logo span {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-left: 28px;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--teal);
}

.header-nav .btn-small {
  display: inline-block;
  background-color: var(--teal);
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
  margin-left: 24px;
}

.header-nav .btn-small:hover {
  background-color: var(--teal-dark);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px 0 90px;
}

.hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.25rem);
  max-width: 800px;
  margin-bottom: 24px;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-badges span {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--teal);
  color: white;
}

.btn-primary:hover {
  background-color: var(--teal-dark);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background-color: var(--gold-light);
  color: var(--navy);
}

/* Sections */
section {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 760px;
  margin-bottom: 40px;
}

.bg-light {
  background-color: var(--warm-gray);
}

.bg-white {
  background-color: var(--warm-white);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background-color: var(--warm-white);
  border: 1px solid var(--warm-gray2);
  border-radius: 4px;
  padding: 28px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(42, 127, 139, 0.25);
  border-radius: 4px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 18px;
}

/* Why list */
.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background-color: var(--warm-white);
  border: 1px solid var(--warm-gray2);
  border-radius: 4px;
}

.why-item .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--warm-gray2);
  padding: 22px 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* Contact */
.contact-box {
  background-color: var(--navy);
  color: white;
  border-radius: 4px;
  padding: 48px;
}

.contact-box h2 {
  color: white;
  margin-bottom: 12px;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 600px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item .icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}

.contact-item div {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item strong {
  display: block;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-item a {
  color: white;
}

.contact-item a:hover {
  color: var(--gold-light);
}

/* Footer */
.site-footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0 32px;
  font-size: 0.9rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 20px;
}

.site-footer a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hero {
    padding: 60px 0 70px;
  }

  section {
    padding: 56px 0;
  }

  .contact-box {
    padding: 32px 24px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
