@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --primary: #1E3A5F;
  --primary-fg: #ffffff;
  --secondary: #10B981;
  --secondary-fg: #ffffff;
  --accent: #F97316;
  --accent-fg: #ffffff;
  --bg: #F1F5F9;
  --card: #ffffff;
  --muted: #F1F5F9;
  --muted-fg: #64748B;
  --fg: #1E293B;
  --border: #E2E8F0;
  --navy-dark: #0F2440;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 0.75rem;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

img { max-width: 100%; display: block; }

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

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

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  height: 72px;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-logo span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted-fg);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--fg);
  transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--accent); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { filter: brightness(1.08); transform: scale(1.02); box-shadow: var(--shadow-hover); }
.btn-ghost {
  background: transparent;
  color: var(--primary-fg);
  border: 2px solid var(--primary-fg);
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-ghost-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
}
.btn-ghost-primary:hover { background: var(--muted); }
.btn-nav {
  background: var(--accent);
  color: var(--accent-fg);
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}
.btn-nav:hover { filter: brightness(1.08); transform: scale(1.02); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  background: var(--primary);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary-fg);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,58,95,0.72);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--navy-dark);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.trust-icon { color: var(--secondary); font-size: 1.1rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-muted { background: var(--muted); }
.section-navy { background: var(--primary); }
.section-secondary-light { background: rgba(16,185,129,0.08); }

.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-title p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 auto;
}

/* ── SERVICE CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.25rem;
  border: 2px solid transparent;
  transition: all 0.3s;
  display: block;
  color: var(--fg);
}
.service-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--muted);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-card .cta-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}
.service-card:hover .cta-link { text-decoration: underline; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.why-item { text-align: center; }
.why-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--card);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.7rem;
}
.why-item h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.6rem; }
.why-item p { font-size: 0.92rem; color: var(--muted-fg); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  border-left: 4px solid var(--secondary);
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: var(--fg); font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.testimonial-card .author { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--muted-fg); }

/* ── FOUNDER ── */
.founder-card {
  background: var(--card);
  border-radius: calc(var(--radius)*1.5);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.founder-card .name { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.25rem; }
.founder-card .role { font-size: 0.95rem; color: var(--secondary); font-weight: 600; margin-bottom: 1rem; }
.founder-card p { font-size: 0.95rem; color: var(--muted-fg); line-height: 1.7; }
.founder-card .meta { font-size: 0.8rem; color: var(--muted-fg); margin-top: 1rem; opacity: 0.75; }

/* ── CTA BANNER ── */
.cta-banner { text-align: center; padding: 5rem 0; }
.cta-banner h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); color: #fff; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; color: var(--secondary); margin-bottom: 2rem; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: var(--primary-fg); }
.footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2.5rem; padding: 4rem 0 3rem; }
.footer-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.85rem; opacity: 0.65; margin-bottom: 0.25rem; }
.footer-sub { font-size: 0.75rem; opacity: 0.45; }
.footer h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-links span {
  font-size: 0.88rem;
  opacity: 0.65;
  transition: opacity 0.2s;
  cursor: pointer;
}
.footer-links a:hover, .footer-links span:hover { opacity: 1; color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  opacity: 0.45;
}

/* ── PAS BLOCK ── */
.pas-block { text-align: center; max-width: 700px; margin: 0 auto; padding: 4rem 0; }
.pas-block .problem { font-size: 1.1rem; color: var(--fg); margin-bottom: 1rem; line-height: 1.7; }
.pas-block .solution { font-size: 1.05rem; color: var(--muted-fg); line-height: 1.7; }
.pas-block strong { color: var(--accent); }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 1rem; max-width: 680px; margin: 0 auto; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-icon { color: var(--secondary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.check-item p { font-size: 1.05rem; color: var(--fg); }

/* ── CREDIT IMPOT ── */
.credit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.credit-box {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 140px;
}
.credit-box.highlight { border: 2px solid var(--secondary); }
.credit-box .label { font-size: 0.8rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.credit-box .amount { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--fg); }
.credit-box.highlight .amount { color: var(--secondary); }
.credit-arrow { font-family: var(--font-heading); font-weight: 700; font-size: 2rem; color: var(--secondary); }
.credit-note { font-size: 0.9rem; color: var(--muted-fg); text-align: center; }

/* ── FORM ── */
.form-wrap {
  background: var(--card);
  border-radius: calc(var(--radius)*1.5);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-group textarea { resize: vertical; }
.form-submit { margin-top: 1.75rem; }
.form-submit .btn-primary { width: 100%; font-size: 1.05rem; padding: 1rem; }
.form-note { text-align: center; font-size: 0.85rem; color: var(--muted-fg); margin-top: 0.75rem; }
.form-success { display: none; text-align: center; padding: 2.5rem; }
.form-success.visible { display: block; }
.form-fields.hidden { display: none; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-fg); }

/* ── MOBILE CTA ── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: none;
}
.mobile-cta .btn-primary { width: 100%; font-size: 0.95rem; padding: 0.85rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cards-grid, .why-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
  .hero-content h1 { font-size: 2rem; }
  .trust-bar-inner { flex-direction: column; gap: 0.75rem; }
  .section { padding: 3rem 0; }
  .form-wrap { padding: 1.75rem 1.25rem; }
  .founder-card { padding: 2rem 1.5rem; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
