
:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --surface-2: #eef4ff;
    --ink: #07111f;
    --muted: #5d6b80;
    --line: rgba(12, 26, 48, .10);
    --primary: #1d64f2;
    --primary-2: #0bbde3;
    --accent: #ffcc33;
    --navy: #07111f;
    --navy-2: #0d1d33;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(7, 17, 31, .12);
    --shadow-soft: 0 14px 40px rgba(7, 17, 31, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.container.narrow { width: min(900px, calc(100% - 40px)); }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { left: 12px; }
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; padding: 8px 0; }
.brand img { width: 180px; height: auto; border-radius: 12px; }
.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav > a, .nav-dropdown > button {
    border: 0; background: transparent; color: #243247; font: inherit; font-weight: 700;
    padding: 12px 14px; border-radius: 999px; cursor: pointer;
}
.primary-nav > a:hover, .nav-dropdown > button:hover { background: rgba(29,100,242,.08); color: var(--primary); }
.nav-cta { background: var(--navy) !important; color: #fff !important; padding: 12px 18px !important; box-shadow: 0 10px 30px rgba(7,17,31,.16); }
.nav-cta:hover { background: var(--primary) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown button span { display: inline-block; transform: translateY(-1px); }
.dropdown-panel {
    position: absolute; right: 0; top: calc(100% + 10px); min-width: 245px; padding: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease;
}
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-panel a { display: block; padding: 12px 14px; border-radius: 12px; color: #26364d; font-weight: 700; }
.dropdown-panel a:hover { background: var(--surface-2); color: var(--primary); }
.nav-toggle { display: none; border: 0; background: var(--navy); width: 46px; height: 46px; border-radius: 14px; padding: 11px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .2s ease; }
.hero {
    position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at top left, rgba(29,100,242,.45), transparent 34%), radial-gradient(circle at 85% 20%, rgba(11,189,227,.32), transparent 35%), linear-gradient(135deg, #07111f 0%, #0b1e38 55%, #07111f 100%);
}
.hero::before, .page-hero::before {
    content: ""; position: absolute; inset: 0; opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; min-height: 720px; padding: 110px 0 90px; }
.hero-copy h1 { font-size: clamp(44px, 6vw, 78px); line-height: .98; letter-spacing: -0.06em; margin: 18px 0 24px; }
.lead { font-size: clamp(18px, 2vw, 22px); color: #c8d8ee; max-width: 680px; margin: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; }
.hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow { color: #93d9ff; }
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 999px; background: currentColor; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 14px 22px; font-weight: 900; border: 1px solid transparent; transition: .2s ease; cursor: pointer; }
.btn.primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: 0 18px 40px rgba(29,100,242,.35); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(29,100,242,.42); }
.btn.secondary { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.16); }
.btn.secondary:hover { background: rgba(255,255,255,.14); }
.btn.light { background: #fff; color: var(--navy); }
.btn.light:hover { transform: translateY(-2px); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-strip span { color: #dcecff; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); padding: 9px 12px; border-radius: 999px; font-weight: 800; font-size: 14px; }
.hero-card { position: relative; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); backdrop-filter: blur(20px); border-radius: 34px; padding: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.dashboard-top { display: flex; gap: 8px; margin-bottom: 22px; }
.dashboard-top span { width: 13px; height: 13px; border-radius: 50%; background: rgba(255,255,255,.34); }
.score-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 24px; }
.score-card p { margin: 0 0 8px; color: #b9cae2; }
.score-card strong { display: block; font-size: 34px; letter-spacing: -.03em; margin-bottom: 18px; }
.progress { height: 9px; background: rgba(255,255,255,.14); border-radius: 999px; overflow: hidden; }
.progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--primary-2)); }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 14px 0; }
.mini-grid div { background: #fff; color: var(--ink); padding: 18px; border-radius: 20px; }
.mini-grid b { display: block; font-size: 24px; color: var(--primary); }
.mini-grid span { color: var(--muted); font-weight: 700; font-size: 14px; }
.alert-card { display: flex; align-items: center; gap: 10px; background: rgba(7,17,31,.72); color: #dff3ff; padding: 16px 18px; border-radius: 18px; font-weight: 800; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: #47f59a; box-shadow: 0 0 0 rgba(71,245,154,.6); animation: pulse 1.7s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 14px rgba(71,245,154,0); } 100% { box-shadow: 0 0 0 0 rgba(71,245,154,0); } }
.logos-section { background: #fff; border-bottom: 1px solid var(--line); }
.logos-wrap { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 26px 0; }
.logos-wrap p { margin: 0; font-weight: 800; color: var(--muted); }
.client-logos { display: flex; align-items: center; gap: 22px; }
.client-logos img { height: 46px; width: auto; object-fit: contain; border-radius: 10px; }
.section { padding: 96px 0; }
.alt-bg { background: linear-gradient(180deg, #eef5ff, #f8fbff); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -.035em; }
h2 { font-size: clamp(34px, 4vw, 54px); margin: 12px 0 16px; }
h3 { font-size: 22px; margin: 0 0 12px; }
p { color: var(--muted); }
.cards-grid { display: grid; gap: 22px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.services-grid-modern { grid-template-columns: repeat(3, 1fr); }
.service-card-modern, .info-card, .package-card, .testimonial-card-new, .contact-card-main, .contact-side, .mission-card, .stat-panel, .checklist-panel {
    background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.service-card-modern { position: relative; padding: 28px; overflow: hidden; transition: .22s ease; min-height: 260px; display: flex; flex-direction: column; }
.service-card-modern::after { content: ""; position: absolute; inset: auto -40px -70px auto; width: 160px; height: 160px; border-radius: 50%; background: rgba(29,100,242,.08); transition: .22s ease; }
.service-card-modern:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(29,100,242,.20); }
.service-card-modern:hover::after { transform: scale(1.3); background: rgba(29,100,242,.13); }
.service-card-modern p { margin-bottom: 24px; }
.card-icon { display: inline-flex; width: 58px; height: 58px; align-items: center; justify-content: center; border-radius: 18px; color: #fff; font-weight: 1000; margin-bottom: 22px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 12px 30px rgba(29,100,242,.28); }
.card-link { position: relative; z-index: 1; margin-top: auto; color: var(--primary); font-weight: 900; }
.service-card-modern.highlight { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.service-card-modern.highlight p { color: #cbd9ec; }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.split-grid p { font-size: 18px; }
.feature-list { display: grid; gap: 16px; }
.feature-list > div { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; box-shadow: var(--shadow-soft); }
.feature-list span { flex: 0 0 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: var(--surface-2); color: var(--primary); font-weight: 1000; }
.feature-list h3, .feature-list p { margin-top: 0; }
.feature-list p { margin-bottom: 0; font-size: 16px; }
.feature-list.compact > div { box-shadow: none; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.package-card { position: relative; padding: 30px; }
.package-card.featured { background: linear-gradient(180deg, #fff, #eef6ff); border-color: rgba(29,100,242,.25); transform: translateY(-10px); }
.badge { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 900; margin-bottom: 14px; }
.package-card ul, .checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.package-card li, .checklist li { position: relative; padding-left: 30px; color: #334156; font-weight: 700; }
.package-card li::before, .checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 1000; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testimonial-card-new { padding: 30px; }
.testimonial-card-new > p { color: #1f2c3d; font-size: 19px; margin-top: 0; }
.testimonial-author-new { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.testimonial-author-new img { width: 52px; height: 52px; border-radius: 14px; object-fit: contain; background: #fff; border: 1px solid var(--line); }
.testimonial-author-new strong { display: block; }
.testimonial-author-new span { color: var(--muted); font-size: 14px; }
.cta-band { color: #fff; background: radial-gradient(circle at 15% 30%, rgba(11,189,227,.35), transparent 26%), linear-gradient(135deg, var(--navy), #123463); padding: 72px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { margin: 12px 0 0; max-width: 820px; }
.page-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 25% 15%, rgba(29,100,242,.36), transparent 30%), radial-gradient(circle at 80% 30%, rgba(11,189,227,.26), transparent 32%), linear-gradient(135deg, var(--navy), #0e2b51); padding: 126px 0 90px; }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(42px, 5.5vw, 70px); margin: 16px 0 22px; max-width: 980px; }
.page-hero p { color: #c9d9ed; font-size: 20px; max-width: 800px; }
.page-hero .btn { margin-top: 20px; }
.mission-card-stack { display: grid; gap: 16px; }
.mission-card { padding: 28px; background: linear-gradient(180deg,#fff,#f5f9ff); }
.mission-card span { display: inline-flex; color: var(--primary); font-weight: 1000; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin-bottom: 8px; }
.mission-card p { font-size: 20px; margin: 0; color: #253143; }
.info-card { padding: 28px; }
.info-card h3 { color: #152238; }
.info-card p { margin-bottom: 0; }
.process-wrap .section-heading { margin-left: auto; margin-right: auto; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process-grid > div { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow-soft); }
.process-grid span { display: inline-flex; width: 46px; height: 46px; border-radius: 16px; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-weight: 1000; margin-bottom: 18px; }
.process-grid p { margin-bottom: 0; }
.stat-panel { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; }
.stat-panel div { padding: 26px; border-right: 1px solid var(--line); }
.stat-panel div:last-child { border-right: 0; }
.stat-panel strong { display: block; font-size: 30px; color: var(--primary); letter-spacing: -.04em; }
.stat-panel span { color: var(--muted); font-weight: 800; }
.checklist-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 42px; align-items: start; padding: 34px; }
.checklist.two-col { grid-template-columns: repeat(2, 1fr); margin: 0; }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; }
.contact-card-main { padding: 34px; }
.contact-form { display: grid; gap: 16px; margin-top: 24px; }
.contact-form label { display: grid; gap: 8px; color: #2e3f55; font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; font: inherit; color: var(--ink); background: #fff; outline: none; transition: .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(29,100,242,.65); box-shadow: 0 0 0 4px rgba(29,100,242,.10); }
.contact-side { padding: 20px; display: grid; gap: 14px; }
.contact-info-box { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.contact-info-box span { display: block; color: var(--primary); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 1000; margin-bottom: 6px; }
.contact-info-box a { font-weight: 900; color: #17243a; overflow-wrap: anywhere; }
.contact-info-box p { margin: 0; color: #17243a; font-weight: 800; }
.site-footer { background: #07111f; color: #d7e5f8; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 40px; }
.footer-logo { width: 170px; border-radius: 12px; background: #fff; margin-bottom: 16px; }
.site-footer p { color: #9fb3cd; }
.site-footer h3 { color: #fff; font-size: 16px; margin: 0 0 16px; }
.site-footer a { display: block; color: #b9cbe4; margin: 10px 0; }
.site-footer a:hover { color: #fff; }
.social-row a { display: inline-flex; border: 1px solid rgba(255,255,255,.14); padding: 9px 12px; border-radius: 999px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #93a9c5; font-size: 14px; }
@media (max-width: 980px) {
    .nav-toggle { display: block; }
    .primary-nav { position: fixed; left: 20px; right: 20px; top: 86px; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 14px; box-shadow: var(--shadow); }
    .primary-nav.open { display: flex; }
    .primary-nav > a, .nav-dropdown > button { width: 100%; text-align: left; border-radius: 14px; }
    .nav-cta { text-align: center !important; }
    .nav-dropdown { width: 100%; }
    .dropdown-panel { position: static; visibility: visible; opacity: 1; transform: none; box-shadow: none; border-radius: 14px; display: none; margin: 4px 0 8px; background: var(--surface-2); }
    .nav-dropdown.open .dropdown-panel { display: block; }
    .hero-grid, .split-grid, .contact-grid, .checklist-panel { grid-template-columns: 1fr; }
    .hero-grid { min-height: auto; padding: 92px 0 70px; }
    .cards-grid.three, .cards-grid.four, .services-grid-modern, .pricing-grid, .testimonial-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .container, .container.narrow { width: min(100% - 28px, 1160px); }
    .brand img { width: 145px; }
    .nav-wrap { min-height: 70px; }
    .hero-copy h1, .page-hero h1 { letter-spacing: -.045em; }
    .hero-actions, .cta-band-inner, .logos-wrap, .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn, .cta-band .btn { width: 100%; }
    .section { padding: 70px 0; }
    .page-hero { padding: 98px 0 70px; }
    .cards-grid.three, .cards-grid.four, .services-grid-modern, .pricing-grid, .testimonial-grid, .process-grid, .mini-grid, .stat-panel, .checklist.two-col, .footer-grid { grid-template-columns: 1fr; }
    .package-card.featured { transform: none; }
    .stat-panel div { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat-panel div:last-child { border-bottom: 0; }
    .contact-card-main, .checklist-panel { padding: 24px; }
    .client-logos { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
