:root {
  --primary: #0b1f3a;
  --secondary: #123a63;
  --accent: #d6a94b;
  --light: #f6f8fb;
  --text: #1b1b1b;
  --muted: #5b6775;
  --border: #e3e8ef;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 14px;
  --max: 1150px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

.container {
  width: 92%;
  max-width: var(--max);
  margin: auto;
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 0.2px;
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  align-items: center;
}

nav ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: 0.2s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

.btn {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

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

.btn-primary:hover {
  background: var(--secondary);
}

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

.btn-outline:hover {
  background: var(--light);
}

.hero {
  background: linear-gradient(120deg, var(--primary), #0f3b6e);
  color: white;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero h2 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}

.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}

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

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 18px;
}

.hero-card h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.95);
}

.hero-card ul {
  list-style: none;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 780px;
  margin-bottom: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: white;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
}

.card p {
  font-size: 14px;
  color: var(--muted);
}

.highlight {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-list {
  margin-top: 14px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  font-size: 14px;
  color: var(--muted);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
}

.step strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.badge-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.footer {
  background: #081629;
  color: rgba(255,255,255,0.9);
  padding: 55px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 30px;
}

.footer h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: white;
}

.footer p, .footer a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 35px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.page-hero {
  background: linear-gradient(120deg, var(--primary), #0f3b6e);
  padding: 55px 0;
  color: white;
}

.page-hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 800px;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 680px;
}

.form label {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}

.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 14px;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }
}
.success-box {
  border: 1px solid #cfe9d6;
  background: #f2fbf5;
  border-radius: 16px;
  padding: 22px;
}

.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.success-title {
  font-size: 20px;
  color: #1b5e20;
  margin-bottom: 6px;
  font-weight: 700;
}

.success-text {
  font-size: 14px;
  color: #2f4f35;
}
.topbar {
  background: #071426;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  padding: 8px 0;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.hero {
  background: radial-gradient(circle at top left, #163d6b, #071426);
}

.card {
  border: 1px solid rgba(227,232,239,0.9);
}

.btn-primary {
  background: linear-gradient(135deg, #0b1f3a, #123a63);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.btn-outline:hover {
  transform: translateY(-1px);
}

.section-title {
  letter-spacing: -0.3px;
}

.hero-card {
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.footer {
  background: linear-gradient(180deg, #071426, #050e19);
}
.stats-strip {
  background: white;
  padding: 35px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  transition: 0.25s ease;
}

.stat-box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-box h3 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--primary);
}

.stat-box p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* Premium Stats Strip */
.stats-strip {
  background: white;
  padding: 35px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  transition: 0.25s ease;
}

.stat-box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-box h3 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--primary);
}

.stat-box p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* Logo styling */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.logo-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .logo-text {
    font-size: 13px;
  }
}
