:root {
  --primary: #2563EB; --primary-light: #3B82F6; --primary-dark: #1D4ED8; --primary-bg: #EFF6FF;
  --indigo: #4F46E5; --purple: #7C3AED; --teal: #0D9488; --success: #059669; --success-light: #10B981;
  --bg: #F8FAFC; --surface: #FFFFFF; --surface-alt: #F1F5F9;
  --text: #0F172A; --text-secondary: #475569; --text-muted: #94A3B8;
  --border: #E2E8F0; --border-light: #EEF2F7;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 8px 16px -4px rgba(15,23,42,0.10), 0 2px 6px -2px rgba(15,23,42,0.06);
  --shadow-lg: 0 20px 40px -8px rgba(15,23,42,0.16), 0 8px 16px -8px rgba(15,23,42,0.08);
  --radius: 16px; --radius-sm: 10px; --radius-lg: 24px; --radius-full: 9999px;
  --font: 'Inter', system-ui, -apple-system, sans-serif; --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1); --container: 1180px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 10px 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(14px) saturate(1.4); box-shadow: var(--shadow); border-bottom: 1px solid var(--border-light); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--text-secondary); transition: color 0.2s var(--ease); position: relative; padding: 6px 0; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--purple)); transition: width 0.25s var(--ease); border-radius: 2px; }
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 14.5px; padding: 12px 22px; border-radius: var(--radius-full); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease); white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--indigo)); color: #fff; box-shadow: 0 10px 24px -8px rgba(37,99,235,0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(37,99,235,0.65); }
.btn-secondary { background: var(--surface); color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 15.5px; }
.mobile-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 600; flex-direction: column; gap: 16px; padding: 14px 16px; transform: translateY(-18px); opacity: 0; pointer-events: none; transition: transform 0.34s var(--ease), opacity 0.34s var(--ease); }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mm-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(16px) saturate(1.4); border: 1px solid var(--border-light); border-radius: var(--radius-full); padding: 11px 12px 11px 22px; box-shadow: var(--shadow-md); }
.mm-header .brand img { height: 34px; }
.mm-close { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 2px solid var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--text); box-shadow: 0 4px 10px -3px rgba(37,99,235,0.35); transition: transform 0.25s var(--ease); }
.mm-close:hover { transform: rotate(90deg); }
.mm-close svg { width: 20px; height: 20px; }
.mm-card { background: rgba(255,255,255,0.96); backdrop-filter: blur(16px) saturate(1.4); border: 1px solid var(--border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 16px 24px 22px; display: flex; flex-direction: column; }
.mm-card a:not(.btn) { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--text); padding: 18px 4px; transition: color 0.2s var(--ease); }
.mm-card a:not(.btn):not(:last-of-type) { border-bottom: 1px solid var(--border-light); }
.mm-card a:not(.btn):hover { color: var(--primary); }
.mm-card .mm-cta { margin-top: 16px; padding: 16px; font-size: 16px; }
.mobile-scrim { display: none; position: fixed; inset: 0; z-index: 550; background: rgba(15,23,42,0.34); backdrop-filter: blur(5px); opacity: 0; transition: opacity 0.3s; }
.mobile-scrim.open { display: block; opacity: 1; }

/* PAGE HERO */
.page-hero { padding: 150px 0 60px; background: radial-gradient(ellipse 900px 500px at 15% -10%, #DCE9FF 0%, transparent 60%), radial-gradient(ellipse 800px 460px at 100% 0%, #EAE4FF 0%, transparent 55%), var(--bg); text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: var(--radius-full); background: var(--surface); border: 1px solid var(--border); font-size: 13px; font-weight: 700; color: var(--primary-dark); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.6vw, 52px); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; max-width: 860px; margin: 0 auto; }
.page-hero h1 .grad { background: linear-gradient(120deg, var(--primary) 10%, var(--indigo) 50%, var(--purple) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p.sub { margin: 22px auto 0; max-width: 640px; font-size: 18px; color: var(--text-secondary); }

/* ABOUT CONTENT */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.sec-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.sec-head h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; letter-spacing: -0.015em; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv-card { background: linear-gradient(160deg, #EEF4FF, #F5F1FF); border: 1px solid #DCE6FF; border-radius: var(--radius); padding: 34px 30px; }
.mv-card .ico { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 18px; background: linear-gradient(135deg, var(--primary), var(--indigo)); }
.mv-card .ico svg { width: 22px; height: 22px; }
.mv-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.mv-card p { color: var(--text-secondary); font-size: 15.5px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card .ico { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 18px; }
.why-card .ico svg { width: 21px; height: 21px; }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 9px; }
.why-card p { font-size: 14.3px; color: var(--text-secondary); }
.offer-wrap { max-width: 720px; margin: 0 auto; }
.offer-lead { text-align: center; font-size: 16.5px; color: var(--text-secondary); margin-bottom: 30px; }
.offer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.offer-list li { display: flex; gap: 12px; align-items: center; background: var(--surface); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 15px; font-weight: 600; }
.offer-list li svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--success); }
.about-cta { text-align: center; }
.about-cta .btn { margin-top: 8px; }

/* FOOTER */
footer { background: #0B1220; color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 13.8px; line-height: 1.6; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.78); font-weight: 600; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 16px; height: 16px; flex: 0 0 auto; color: #93C5FD; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 14px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: rgba(255,255,255,0.16); }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-cta .btn-secondary { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .page-hero { padding: 120px 0 40px; }
  .mv-grid { grid-template-columns: 1fr; }
  .offer-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
