/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a2a4a; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 64px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #0d1b2e; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link--stacked { flex-direction: column; align-items: flex-start; gap: 2px; }
.logo-tagline { font-size: 0.58rem; color: #6a8aaa; letter-spacing: 0.5px; text-transform: none; font-weight: 300; font-style: italic; font-family: "Raleway", sans-serif; white-space: nowrap; }
.logo-img { height: auto; width: 160px; display: block; filter: brightness(0) invert(1); }
.logo-img--footer { height: 36px; width: auto; display: block; opacity: 0.9; filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a { font-size: 0.78rem; font-weight: 400; color: #a8bdd4 !important; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: #fff !important; }

.btn-nav {
  flex-shrink: 0;
  background: #ffffff;
  color: #0d1b2e !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
}
.btn-nav:hover { background: #d8e6f4; border-color: #d8e6f4; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* ===== HERO ===== */
.hero-main {
  background: #0d1b2e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #a8bdd4;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.hero-main h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 28px;
  letter-spacing: -0.5px;
}
.hero-main h1 span { color: #7fa8cc; }
.hero-main p {
  color: #7a96b0;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 48px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: #fff;
  color: #0d1b2e;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-hero-primary:hover { background: #e8eef5; }
.btn-hero-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); }
.hero-trust {
  margin-top: 40px;
  color: #4a6a8a;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */
.btn-primary { background: #0d1b2e; color: #fff; padding: 16px 36px; border-radius: 4px; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; transition: background 0.2s; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: #1a3a5c; }
.btn-secondary { background: transparent; color: #0d1b2e; padding: 16px 36px; border-radius: 4px; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; border: 1px solid #c0cdd8; transition: all 0.2s; display: inline-block; }
.btn-secondary:hover { border-color: #0d1b2e; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
h2 { font-size: 2.2rem; font-weight: 700; color: #0d1b2e; margin-bottom: 16px; letter-spacing: -0.3px; }
.section-sub { color: #7a96b0 !important; font-size: 1rem; margin-bottom: 56px; line-height: 1.7; }

/* ===== SERVICES SECTION ===== */
.services-overview { padding: 100px 0; background: #fff; }
.services-overview h2 { text-align: center; margin-bottom: 12px; }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #f4f7fb; border: 1px solid #dde6f0; border-radius: 6px; padding: 48px; transition: box-shadow 0.25s, border-color 0.25s; }
.card:hover { box-shadow: 0 12px 40px rgba(13,27,46,0.08); border-color: #b0c4d8; }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: #0d1b2e; }
.card p { color: #4a6a8a; font-size: 0.95rem; margin-bottom: 28px; line-height: 1.8; }
.card-link { font-weight: 600; color: #0d1b2e; font-size: 0.85rem; letter-spacing: 0.5px; border-bottom: 1px solid #0d1b2e; padding-bottom: 2px; }

/* ===== WHY US ===== */
.why-us { background: #0d1b2e; padding: 100px 0; }
.why-us h2 { color: #fff; text-align: center; }
.why-us .section-sub { color: #4a6a8a !important; text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; }
.why-item { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
.why-item h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; }
.why-item p { color: #5a7a9a; font-size: 0.9rem; line-height: 1.7; }

/* ===== CTA ===== */
.cta { background: #f4f7fb; text-align: center; padding: 100px 0; }
.cta h2 { color: #0d1b2e; margin-bottom: 16px; }
.cta p { color: #7a96b0; margin-bottom: 40px; margin-top: 16px; font-size: 1rem; }

/* ===== FOOTER ===== */
footer { background: #0d1b2e; border-top: 1px solid rgba(255,255,255,0.08); padding: 64px 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
footer p { color: #4a6a8a; font-size: 0.82rem; letter-spacing: 0.3px; }
footer .tagline { font-style: italic; color: #3a5a7a; font-size: 0.82rem; }
footer .copy { color: #2a4a6a; font-size: 0.78rem; }
.footer-tagline { font-style: italic; color: #6a8aaa; font-size: 0.85rem; }
.footer-copy { color: #3a5a7a; font-size: 0.78rem; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; margin: 4px 0; }
.footer-nav a { color: #6a8aaa; font-size: 0.82rem; text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { padding: 160px 0 80px; background: #0d1b2e; border-bottom: 1px solid rgba(255,255,255,0.08); }
.page-hero h1 { font-size: 3rem; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.page-hero p { color: #7a96b0; margin-top: 16px; font-size: 1rem; line-height: 1.8; max-width: 560px; }

/* ===== SERVICES PAGE ===== */
.service-block { padding: 100px 0; border-bottom: 1px solid #dde6f0; }
.service-block:last-child { border-bottom: none; }
.service-block h2 { font-size: 1.9rem; margin-bottom: 20px; }
.service-block p { color: #4a6a8a; max-width: 640px; margin-bottom: 28px; line-height: 1.8; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.service-list li { color: #4a6a8a; font-size: 0.95rem; padding-left: 16px; position: relative; }
.service-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: #0d1b2e; }

/* ===== PRICING PAGE ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.pricing-card { border: 1px solid #dde6f0; border-radius: 6px; padding: 48px; background: #f4f7fb; }
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; color: #0d1b2e; }
.pricing-card .price-range { font-size: 1.8rem; font-weight: 700; color: #0d1b2e; margin: 20px 0 8px; }
.pricing-card .price-sub { font-size: 0.82rem; color: #7a96b0; margin-bottom: 24px; }
.pricing-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-card ul li { font-size: 0.9rem; color: #4a6a8a; padding-left: 16px; position: relative; }
.pricing-card ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: #0d1b2e; }
.pricing-note { background: #0d1b2e; border-radius: 6px; padding: 32px; margin-top: 56px; text-align: center; }
.pricing-note p { color: #7a96b0; font-size: 0.95rem; line-height: 1.7; }
.pricing-note strong { color: #fff; }

/* ===== ABOUT PAGE ===== */
.about-content { max-width: 720px; }
.about-content p { color: #4a6a8a; font-size: 1rem; margin-bottom: 24px; line-height: 1.9; }
.about-content h3 { font-size: 1.1rem; font-weight: 700; margin: 40px 0 14px; color: #0d1b2e; text-transform: uppercase; letter-spacing: 1px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.value-item { background: #f4f7fb; border-radius: 6px; padding: 32px; border: 1px solid #dde6f0; }
.value-item h4 { font-weight: 700; margin-bottom: 10px; color: #0d1b2e; }
.value-item p { font-size: 0.9rem; color: #4a6a8a; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: #0d1b2e; letter-spacing: 1px; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { border: 1px solid #dde6f0; border-radius: 4px; padding: 14px 16px; font-size: 0.95rem; font-family: inherit; outline: none; transition: border 0.2s; color: #0d1b2e; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #0d1b2e; }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info h3 { font-size: 0.78rem; font-weight: 700; margin-bottom: 6px; letter-spacing: 1.5px; text-transform: uppercase; color: #0d1b2e; }
.contact-info p { color: #4a6a8a; font-size: 0.95rem; line-height: 1.7; }
.info-item { display: flex; flex-direction: column; gap: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: #0d1b2e; padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); gap: 20px; transform: none; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .btn-nav { display: none; }
  .cards { grid-template-columns: 1fr; }
  .why-grid, .pricing-grid, .contact-grid, .values-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .page-hero h1 { font-size: 2.2rem; }
}

.btn-nav-outline {
  border: 1px solid #0d1b2e;
  color: #0d1b2e !important;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.btn-nav-outline:hover {
  background: #0d1b2e;
  color: #fff !important;
}
