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

:root {
  --navy: #122749;
  --steel: #325A99;
  --blue: #4A86E8;
  --green: #93C47D;
  --orange: #D4792A;
  --light: #F4F6F8;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #6B7280;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Instrument Serif', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18, 39, 73, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--blue);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }

.logo-text {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.65rem;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}

.logo-team { color: var(--green); font-weight: 900; }
.logo-box { color: var(--white); font-weight: 400; font-family: 'Arial', sans-serif; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #3a73d1 !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

/* ========== SHARED ========== */
section { padding: 6rem 2rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-subtitle { color: rgba(255,255,255,0.6); }
.bg-navy .section-label { color: var(--green); }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #3a73d1; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blue);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--blue);
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat { text-align: center; padding: 0 1rem; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.comparison-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-table thead th:first-child { background: var(--navy); color: var(--white); text-align: left; }
.comparison-table thead th:nth-child(2) { background: var(--navy); color: rgba(255,255,255,0.7); }
.comparison-table thead th:nth-child(3) { background: var(--blue); color: var(--white); }

.comparison-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  border-bottom: 1px solid #E5E7EB;
}

.comparison-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.comparison-table tbody td:nth-child(2) { text-align: center; color: var(--text-light); }
.comparison-table tbody td:nth-child(3) { text-align: center; color: var(--blue); font-weight: 600; }
.comparison-table tbody tr:nth-child(even) { background: var(--light); }

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  border-top: 3px solid transparent;
}
.card:hover { border-top-color: var(--blue); box-shadow: 0 8px 30px rgba(74, 134, 232, 0.08); }

.card-icon {
  width: 48px; height: 48px;
  background: rgba(74, 134, 232, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}

.card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.75rem; font-weight: 600; }
.card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* ========== TIERS ========== */
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.tier-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}
.tier-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }

.tier-card.featured { border-color: var(--blue); box-shadow: 0 4px 20px rgba(74, 134, 232, 0.15); }
.tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.tier-name { font-family: var(--font-display); font-size: 2rem; color: var(--blue); margin-bottom: 0.5rem; }

.tier-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E5E7EB;
}

.tier-features { list-style: none; }
.tier-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.tier-features li::before {
  content: '';
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(147, 196, 125, 0.15);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393C47D' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ========== PROCESS STEPS ========== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.step { text-align: center; position: relative; }
.step::after {
  content: '';
  position: absolute;
  top: 32px; right: -1rem;
  width: 2rem; height: 2px;
  background: rgba(147, 196, 125, 0.3);
}
.step:last-child::after { display: none; }

.step-number {
  width: 64px; height: 64px;
  background: rgba(74, 134, 232, 0.12);
  border: 1px solid rgba(74, 134, 232, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue);
}

.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 600; }
.step p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ========== FORM ========== */
.form-container {
  background: var(--light);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #E5E7EB;
}

.form-container h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 600; }
.form-container .form-sub { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74, 134, 232, 0.12);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: #3a73d1; }

/* ========== CONTACT DETAILS ========== */
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }

.contact-detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(74, 134, 232, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.contact-detail a, .contact-detail span {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.contact-detail a:hover { color: var(--blue); }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inner p { font-size: 0.85rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== PAGE HEADER ========== */
.page-header {
  background: var(--navy);
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(74, 134, 232, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.page-header .section-inner { position: relative; z-index: 1; }
.page-header .section-label { color: var(--green); }
.page-header .section-title { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-header .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 0; }

/* ========== IMAGE PLACEHOLDER ========== */
.image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(74, 134, 232, 0.06), rgba(147, 196, 125, 0.04));
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.image-placeholder.dark {
  background: linear-gradient(135deg, rgba(74, 134, 232, 0.2), rgba(147, 196, 125, 0.08));
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
}

/* ========== HERO ========== */
.hero { min-height: 100vh; }

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .two-col { grid-template-columns: 1fr !important; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .cta-banner .btn-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2.2rem; }
  section { padding: 4rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table thead th, .comparison-table tbody td { padding: 0.75rem 0.75rem; }
  .hero {
    background-image: url('images/hero-mobile.jpg') !important;
    background-position: center center !important;
  }
  .hero-content { padding: 6.5rem 1.5rem 3rem !important; }
  .hero-subtitle { font-size: 1rem !important; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(18, 39, 73, 0.98);
  padding: 1.5rem 2rem;
  border-bottom: 3px solid var(--blue);
}
