@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

:root {
  --blue: #185FA5;
  --blue-light: #E6F1FB;
  --blue-dark: #0C447C;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --shadow: 0 2px 16px rgba(24,95,165,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; }
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* NAV */
nav { display:flex; align-items:center; justify-content:space-between; padding:1rem 2.5rem; background:#fff; border-bottom:1px solid var(--border); position:sticky; top:0; z-index:100; }
.logo { font-family:'Sora',sans-serif; font-size:20px; font-weight:600; color:var(--blue); }
.nav-links { display:flex; gap:1.75rem; align-items:center; }
.nav-links a { font-size:14px; color:var(--text-muted); transition:color 0.2s; }
.nav-links a:hover, .nav-links a.active { color:var(--blue); }
.nav-hamburger { display:none; background:none; border:none; font-size:22px; cursor:pointer; }
.mobile-nav { display:none; flex-direction:column; background:#fff; border-bottom:1px solid var(--border); padding:0.5rem 1.5rem 1rem; gap:0.25rem; }
.mobile-nav a { font-size:15px; padding:8px 0; color:var(--text-muted); border-bottom:1px solid var(--border); }

/* BUTTONS */
.btn { display:inline-block; padding:9px 22px; border-radius:8px; font-size:14px; font-weight:500; cursor:pointer; transition:all 0.2s; border:none; font-family:'DM Sans',sans-serif; }
.btn-primary { background:var(--blue); color:#fff; }
.btn-primary:hover { background:var(--blue-dark); }
.btn-outline { background:transparent; color:var(--blue); border:1.5px solid var(--blue); }
.btn-outline:hover { background:var(--blue-light); }

/* HERO */
.hero { padding:5rem 2.5rem 4rem; text-align:center; background:linear-gradient(160deg, #eef6ff 0%, #fff 55%); }
.badge { display:inline-block; background:var(--blue-light); color:var(--blue); font-size:12px; font-weight:500; padding:5px 14px; border-radius:999px; margin-bottom:1.5rem; letter-spacing:0.03em; }
.hero h1 { font-size:clamp(28px,5vw,44px); line-height:1.2; max-width:640px; margin:0 auto 1rem; }
.hero h1 span { color:var(--blue); }
.hero p { font-size:17px; color:var(--text-muted); max-width:500px; margin:0 auto 2rem; }
.hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* STATS BAR */
.stats-bar { display:flex; justify-content:center; gap:3rem; flex-wrap:wrap; padding:1.75rem 2.5rem; background:var(--blue); color:#fff; }
.stat-num { font-family:'Sora',sans-serif; font-size:26px; font-weight:600; }
.stat-label { font-size:13px; opacity:0.8; margin-top:2px; }

/* SECTIONS */
.section { padding:4rem 2.5rem; }
.section-alt { background:var(--bg-soft); }
.section-title { font-size:30px; text-align:center; margin-bottom:0.5rem; }
.section-sub { text-align:center; color:var(--text-muted); margin-bottom:3rem; font-size:16px; }

/* CARDS */
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; max-width:980px; margin:0 auto; }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:16px; max-width:980px; margin:0 auto; }
.card { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:1.5rem; transition:box-shadow 0.2s, border-color 0.2s; }
.card:hover { box-shadow:var(--shadow); border-color:rgba(24,95,165,0.2); }
.icon-box { width:44px; height:44px; background:var(--blue-light); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:1rem; color:var(--blue); }
.card h3 { font-size:16px; margin-bottom:8px; }
.card p { font-size:14px; color:var(--text-muted); line-height:1.6; }

/* PRICING */
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; max-width:980px; margin:0 auto; }
.price-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:1.75rem; }
.price-card.featured { border:2px solid var(--blue); }
.plan-name { font-size:13px; font-weight:500; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:8px; }
.plan-price { font-family:'Sora',sans-serif; font-size:30px; font-weight:600; margin-bottom:4px; }
.plan-price small { font-size:14px; font-weight:400; color:var(--text-muted); }
.popular { display:inline-block; background:var(--blue-light); color:var(--blue); font-size:11px; font-weight:500; padding:3px 10px; border-radius:999px; margin-bottom:6px; }
.features { list-style:none; margin:1.25rem 0 1.5rem; display:flex; flex-direction:column; gap:8px; }
.features li { font-size:14px; color:var(--text-muted); display:flex; gap:8px; align-items:flex-start; }
.features li::before { content:'✓'; color:var(--blue); font-weight:600; flex-shrink:0; }

/* PAGE HERO */
.page-hero { background:linear-gradient(135deg, #0d1b2e 0%, #185FA5 100%); color:#fff; padding:4rem 2.5rem; text-align:center; }
.page-hero h1 { font-size:clamp(26px,4vw,38px); margin-bottom:1rem; color:#fff; }
.page-hero p { font-size:17px; opacity:0.85; max-width:520px; margin:0 auto; }

/* FOOTER */
footer { background:#0d1b2e; color:#a0aec0; padding:3rem 2.5rem 1.5rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:2rem; margin-bottom:2.5rem; }
.footer-brand p { font-size:14px; margin-top:0.75rem; max-width:220px; line-height:1.6; }
.footer-col h4 { font-size:12px; font-weight:600; color:#fff; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:1rem; }
.footer-col a { display:block; font-size:13px; margin-bottom:8px; color:#94a3b8; transition:color 0.2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:1.5rem; display:flex; justify-content:space-between; font-size:13px; flex-wrap:wrap; gap:0.5rem; }

/* CONTACT FORM */
.contact-form { display:flex; flex-direction:column; gap:12px; }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; padding:11px 14px; border:1px solid var(--border); border-radius:8px; font-size:15px; font-family:'DM Sans',sans-serif; color:var(--text); background:#fff; transition:border-color 0.2s; outline:none; }
.contact-form input:focus, .contact-form textarea:focus { border-color:var(--blue); }
.contact-form textarea { height:110px; resize:vertical; }

/* ABOUT */
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:20px; max-width:860px; margin:0 auto; }
.team-card { text-align:center; }
.team-avatar { width:76px; height:76px; border-radius:50%; background:var(--blue-light); color:var(--blue); display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:600; margin:0 auto 1rem; font-family:'Sora',sans-serif; }
.team-card h3 { font-size:16px; margin-bottom:4px; }
.team-card p { font-size:13px; color:var(--text-muted); }

/* RESPONSIVE */
@media(max-width:768px) {
  nav { padding:1rem 1.25rem; }
  .nav-links { display:none; }
  .nav-hamburger { display:block; }
  .mobile-nav { display:none; } /* toggled via JS */
  .hero { padding:3rem 1.25rem; }
  .section { padding:3rem 1.25rem; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .stats-bar { gap:1.5rem; }
}
@media(max-width:520px) {
  .footer-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
}
