* {
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    margin: 0;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav {
    position: fixed;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.nav-inner {
    max-width: 1100px;
    margin: auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav a {
    margin-left: 15px;
}

.nav .cta {
    font-weight: bold;
}

.hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0b2340, #102f55);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-actions a {
    margin: 10px;
    display: inline-block;
}

.hero-bg img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-bg img.active {
    opacity: 0.25;
}

.primary {
    background: orange;
    padding: 14px 28px;
}

.secondary {
    border: 1px solid #fff;
    padding: 14px 28px;
}

.section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
}

.section.alt {
    background: #f7f7f7;
}

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

.card {
    padding: 30px;
    background: #fff;
    border: 1px solid orange;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.steps {
    max-width: 600px;
    margin: 40px auto 0;
}

.steps li {
    margin: 15px 0;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    padding: 40px;
    border: 1px solid #ddd;
    background: #fff;
}

.price-card.featured {
    border: 2px solid orange;
}

.price {
    font-size: 24px;
    font-weight: bold;
}

.footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #eee;
}

.section-sub {
    max-width: 600px;
    margin: 15px auto 60px;
    color: #555;
}

.how {
    position: relative;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: auto;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: orange;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 8px;
}

.progress-line {
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: 0;
    background: orange;
}

.trust {
    background: #f9fafb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.trust-card {
    background: #fff;
    border: 1px solid orange;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.trust-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.price-card.featured {
    border: 2px solid orange;
    transform: scale(1.03);
}

.price-header h3 {
    margin-bottom: 8px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.price span {
    font-size: 16px;
    color: #666;
}

.tagline {
    color: #666;
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.price-features li {
    margin-bottom: 10px;
}

.price-cta {
    margin-top: auto;
    padding: 12px 18px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #333;
    transition: background 0.3s ease;
}

.price-cta:hover {
    background: #f4f4f4;
}

.price-cta.primary {
    background: orange;
    color: #fff;
    border: none;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: orange;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.who {
    background: #fff;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.who-card {
    background: #f9fafb;
    border: 1px solid orange;
    padding: 32px;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.who-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.who-tagline {
    color: #555;
    font-weight: 500;
    margin-bottom: 16px;
}

.who-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-points li {
    margin-bottom: 10px;
}

/* NAV BASE */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 1.2rem;
  font-weight: 700;
}

/* LINKS */
#nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

#nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

#nav-links a:hover {
  color: #ff7a00;
}

/* CTA */
.cta {
  background: #ff7a00;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}

/* MOBILE TOGGLE */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  #nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    display: none;
    border-top: 1px solid #eee;
  }

  #nav-links.show {
    display: flex;
  }

  #nav-links a {
    padding: 10px 0;
    width: 100%;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}

.footer {
  background: #0f172a; /* deep navy */
  color: #cbd5e1;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand strong {
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-tagline {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
  max-width: 300px;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ff7a00;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 16px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}



