/* ----- RESET & GLOBAL ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #f1f5f9;
  color: #0b1c2f;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ----- THEME TOKENS ----- */
:root {
  --navy: #0b1c2f;
  --navy-light: #1a2f44;
  --steel: #2c3e50;
  --gold: #c9a227;
  --gold-light: #e6c34a;
  --off-white: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 16px 30px rgba(0, 0, 0, 0.12);
}

/* ----- LAYOUT UTILITY ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- 1. HEADER ----- */
.header {
  background: var(--navy);
  color: white;
  padding: 1.25rem 0;
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-text h1 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #ffffff;
}

.header-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  font-size: 1rem;
  font-weight: 600;
  color: #e0e7ff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}

.header-badge span {
  color: var(--gold-light);
}

/* ----- 2. HERO ----- */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  max-width: 850px;
  letter-spacing:1px;
}

.hero-title .highlight {
  color: var(--gold);
  background: linear-gradient(145deg, var(--gold), #b38f1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-sub {
  font-size: 1.25rem;
  color: #334155;
  max-width: 650px;
  margin-top: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-sm);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ----- 3. TRUST SECTION ----- */
.trust-section {
  padding: 3.5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.section-header .divider {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 0.75rem auto 0;
  border-radius: 4px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.feature-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.25s;
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-hover);
  background: white;
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: rgba(11, 28, 47, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--navy);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.feature-card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.1px;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.95rem;
  color: #334155;
  letter-spacing: 0.2px;
}

/* ----- 4. FOOTER ----- */
.contact-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 2.5rem 0 2rem;
  margin-top: auto;
  border-top: 5px solid var(--gold);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
  opacity: 0.85;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-powered {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.footer-powered a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(230, 195, 74, 0.5);
  transition: all 0.2s ease;
}

.footer-powered a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.footer-copyright {
  text-align: center;
  padding-top: 1.8rem;
  margin-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-copyright a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

.footer-copyright a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ----- ICONS (unicode stand-ins) ----- */
.icon-shield::before { content: "🛡️"; }
.icon-clock::before { content: "⏱️"; }
.icon-lock::before { content: "🔒"; }
.icon-scale::before { content: "⚖️"; }

/* ----- RESPONSIVE ----- */
@media (max-width: 640px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-badge {
    align-self: flex-start;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    max-width: 250px;
    align-self: center;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .trust-section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .logo-text h1 {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}


