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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #1e293b; background: #fff; overflow-x: hidden; }

:root {
  --navy: #0f2240;
  --blue: #1a4080;
  --accent: #2563eb;
  --sky: #38bdf8;
  --muted: #64748b;
  --off: #f4f7fb;
  --border: #e2e8f0;
}

/* ── TOPBAR ── */
.topbar { background: #0a1628; border-bottom: 1px solid rgba(255,255,255,.05); }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: flex-end; height: 36px; }
.topbar a { color: rgba(255,255,255,.4); font-size: .72rem; text-decoration: none; padding: 0 .9rem; border-right: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; transition: color .2s; }
.topbar a:last-child { border-right: none; padding-right: 0; }
.topbar a:hover { color: rgba(255,255,255,.8); }

/* ── NAV ── */
.nav-wrap { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 20px rgba(15,34,64,.08); transition: box-shadow .3s; }
nav { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: stretch; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: 2.5rem; flex-shrink: 0; }
.logo-box { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg,#1a4080,#2563eb); display: flex; align-items: center; justify-content: center; }
.logo-box span { font-family: 'Syne',sans-serif; font-size: .85rem; font-weight: 800; color: #fff; }
.logo-text { font-family: 'Syne',sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo-text small { display: block; font-size: .6rem; font-weight: 400; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.nav-items { display: flex; align-items: stretch; flex: 1; list-style: none; }
.nav-item { position: static; display: flex; align-items: stretch; }
.nav-trigger { display: flex; align-items: center; gap: .3rem; padding: 0 1rem; font-size: .875rem; font-weight: 500; color: #1e293b; cursor: pointer; border: none; background: none; font-family: 'DM Sans',sans-serif; white-space: nowrap; position: relative; transition: color .2s; }
.nav-trigger::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform .2s ease; border-radius: 2px 2px 0 0; }
.nav-item:hover .nav-trigger { color: var(--accent); }
.nav-item:hover .nav-trigger::after { transform: scaleX(1); }
.nav-arrow { transition: transform .2s; font-size: .65rem; color: var(--muted); }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-right { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.btn-nav { background: var(--accent); color: #fff; padding: .5rem 1.1rem; border-radius: 6px; font-size: .82rem; font-weight: 600; text-decoration: none; transition: background .2s; }
.btn-nav:hover { background: #1d4ed8; }

/* ── MEGA MENU ── */
.mega { position: fixed; left: 0; right: 0; top: 106px; background: #fff; border-top: 3px solid var(--accent); box-shadow: 0 8px 40px rgba(15,34,64,.12); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 999; pointer-events: none; }
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega-inner { max-width: 1280px; margin: 0 auto; padding: 2rem; display: grid; gap: 0; }
.mega-inner.cols-3 { grid-template-columns: 1.4fr repeat(3,1fr); }
.mega-inner.cols-2 { grid-template-columns: 1.4fr 1fr 1fr; }
.mega-featured { padding-right: 2rem; border-right: 1px solid var(--border); margin-right: 2rem; }
.mega-featured-eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #94a3b8; margin-bottom: .8rem; }
.mega-featured h3 { font-family: 'Syne',sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; line-height: 1.3; }
.mega-featured p { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.2rem; }
.mega-featured-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600; color: var(--accent); text-decoration: none; transition: gap .2s; }
.mega-featured-link:hover { gap: .7rem; }
.featured-stat { margin-top: 1.2rem; background: linear-gradient(135deg,var(--navy),var(--blue),var(--accent)); border-radius: 10px; padding: 1rem 1.2rem; }
.featured-stat-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .3rem; }
.featured-stat-num { font-family: 'Syne',sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.featured-stat-desc { font-size: .75rem; color: rgba(56,189,248,.7); margin-top: .2rem; }
.mega-col { padding: 0 1.2rem; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; }
.mega-col-title { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #94a3b8; margin-bottom: .8rem; padding-bottom: .5rem; border-bottom: 1px solid #f1f5f9; }
.mega-links { list-style: none; }
.mega-link { display: flex; align-items: flex-start; gap: .65rem; padding: .55rem .5rem; border-radius: 8px; text-decoration: none; transition: background .15s; margin-bottom: .1rem; }
.mega-link:hover { background: #f8fafc; }
.mega-link-icon { width: 30px; height: 30px; border-radius: 7px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; transition: background .15s; }
.mega-link:hover .mega-link-icon { background: #e0eaff; }
.mega-link-name { font-size: .83rem; font-weight: 500; color: #1e293b; display: block; margin-bottom: .1rem; line-height: 1.3; }
.mega-link-desc { font-size: .74rem; color: #94a3b8; font-weight: 300; line-height: 1.3; }
.mega-footer { border-top: 1px solid #f1f5f9; background: #f8fafc; padding: .8rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
.mega-footer-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #94a3b8; flex-shrink: 0; }
.mega-footer-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.mega-footer-link { font-size: .76rem; color: #475569; padding: .2rem .6rem; border-radius: 4px; border: 1px solid var(--border); background: #fff; text-decoration: none; transition: all .15s; }
.mega-footer-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── MOBILE ── */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; border: none; background: none; margin-left: auto; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: #1e293b; border-radius: 2px; transition: all .25s; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; max-height: 75vh; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-section-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #94a3b8; padding: .5rem 0; margin-bottom: .3rem; border-bottom: 1px solid #f1f5f9; margin-top: 1rem; }
.mobile-link { display: flex; align-items: center; gap: .6rem; padding: .55rem 0; text-decoration: none; font-size: .875rem; color: #334155; border-bottom: 1px solid #f8fafc; transition: color .15s; }
.mobile-link:hover { color: var(--accent); }
.mobile-link-icon { width: 26px; height: 26px; border-radius: 5px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; }
.mobile-cta { display: block; text-align: center; background: var(--accent); color: #fff; padding: .75rem; border-radius: 8px; font-size: .9rem; font-weight: 600; text-decoration: none; margin-top: 1rem; }

/* ── HERO ── */
.hero { background: var(--navy); padding: 120px 2rem 90px; position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size: 60px 60px; }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 70% 50%,rgba(37,99,235,.22) 0%,transparent 70%),radial-gradient(ellipse 40% 60% at 15% 80%,rgba(56,189,248,.1) 0%,transparent 60%); }
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: rgba(37,99,235,.2); border: 1px solid rgba(37,99,235,.4); color: var(--sky); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .85rem; border-radius: 100px; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: '●'; font-size: .45rem; animation: pulse 2s infinite; }
.hero h1 { font-family: 'Syne',sans-serif; font-size: clamp(2.8rem,5.5vw,4.5rem); font-weight: 800; line-height: 1.06; color: #fff; letter-spacing: -.03em; margin-bottom: 1.4rem; }
.hero h1 em { color: var(--sky); font-style: normal; }
.hero-sub { font-size: 1.1rem; line-height: 1.75; color: rgba(255,255,255,.6); max-width: 520px; margin-bottom: 2.2rem; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: #fff; padding: .85rem 1.7rem; border-radius: 8px; font-size: .95rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: all .2s; box-shadow: 0 4px 20px rgba(37,99,235,.35); }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.75); padding: .85rem 1.7rem; border-radius: 8px; font-size: .95rem; text-decoration: none; border: 1px solid rgba(255,255,255,.2); transition: all .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.hero-visual { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 1.5rem; }
.hero-visual-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-visual-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); }
.hero-badge { background: #ef4444; color: #fff; font-size: .68rem; font-weight: 700; padding: .15rem .5rem; border-radius: 100px; }
.email-row { display: flex; align-items: center; gap: .75rem; padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.email-row:last-of-type { border-bottom: none; }
.email-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
.email-info { flex: 1; min-width: 0; }
.email-from { font-size: .68rem; color: rgba(255,255,255,.35); margin-bottom: .15rem; }
.email-subject { font-size: .82rem; color: rgba(255,255,255,.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.email-status { font-size: .65rem; font-weight: 600; flex-shrink: 0; }
.status-ok { color: #34d399; }
.status-warn { color: #fbbf24; }
.hero-visual-footer { margin-top: .8rem; padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; font-size: .72rem; color: rgba(255,255,255,.25); }
.hero-visual-footer span:last-child { color: rgba(52,211,153,.7); }

/* ── STATS BAR ── */
.stats-bar { background: var(--accent); }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.15); transition: background .2s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.06); }
.stat-num { font-family: 'Syne',sans-serif; font-size: 2.5rem; font-weight: 800; color: #fff; display: block; line-height: 1; margin-bottom: .4rem; letter-spacing: -.03em; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.4; font-weight: 300; }

/* ── SECTIONS ── */
section { padding: 80px 2rem; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
.section-title { font-family: 'Syne',sans-serif; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; color: var(--navy); letter-spacing: -.025em; line-height: 1.15; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 580px; margin-bottom: 2.5rem; }
.section-sub.center { margin: 0 auto 2.5rem; text-align: center; }
.text-center { text-align: center; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.grid-2-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.service-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(15,34,64,.08); }
.service-card-head { background: var(--navy); padding: 1.2rem 1.4rem; }
.service-card-tag { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); margin-bottom: .4rem; }
.service-card-icon { font-size: 1.4rem; margin-bottom: .4rem; display: block; }
.service-card h3 { font-family: 'Syne',sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.3; }
.service-card-body { padding: 1.2rem 1.4rem; }
.service-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.service-card a { font-size: .83rem; font-weight: 600; color: var(--accent); text-decoration: none; transition: gap .2s; display: inline-flex; align-items: center; gap: .3rem; }
.service-card a:hover { gap: .6rem; }

.step-card { background: var(--off); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.step-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(15,34,64,.08); }
.step-num { font-family: 'Syne',sans-serif; font-size: 3.5rem; font-weight: 800; color: rgba(37,99,235,.08); position: absolute; top: .8rem; right: 1rem; line-height: 1; }
.step-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.12); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1rem; }
.step-card h3 { font-family: 'Syne',sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.step-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; border-radius: 12px; border: 1px solid var(--border); background: #fff; transition: border-color .2s, box-shadow .2s; }
.why-item:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(37,99,235,.08); }
.why-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(37,99,235,.07); border: 1px solid rgba(37,99,235,.1); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.why-item h4 { font-family: 'Syne',sans-serif; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.why-item p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ── DARK SERVICE CARDS ── */
.dark-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 1.5rem; transition: all .25s; position: relative; overflow: hidden; }
.dark-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--accent),var(--sky)); opacity: 0; transition: opacity .25s; }
.dark-card:hover { background: rgba(255,255,255,.07); border-color: rgba(37,99,235,.3); transform: translateY(-2px); }
.dark-card:hover::before { opacity: 1; }
.dark-card-tag { font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sky); background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.2); padding: .2rem .55rem; border-radius: 100px; display: inline-block; margin-bottom: 1rem; }
.dark-card h3 { font-family: 'Syne',sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .7rem; line-height: 1.3; }
.dark-card p { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1rem; }
.dark-card a { font-size: .83rem; font-weight: 600; color: var(--sky); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s; }
.dark-card a:hover { gap: .7rem; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; align-items: start; max-width: 900px; margin: 0 auto; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,34,64,.1); }
.price-card.featured { border: 2px solid var(--accent); box-shadow: 0 8px 40px rgba(37,99,235,.18); transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.price-head { padding: 1.5rem; border-bottom: 1px solid var(--border); }
.price-card.featured .price-head { background: var(--navy); border-bottom: none; }
.price-tier { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; display: flex; align-items: center; gap: .4rem; }
.price-card.featured .price-tier { color: var(--sky); }
.price-badge { background: var(--accent); color: #fff; font-size: .6rem; padding: .12rem .45rem; border-radius: 100px; font-weight: 700; }
.price-amount { font-family: 'Syne',sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.price-card.featured .price-amount { color: #fff; }
.price-period { font-size: .82rem; color: var(--muted); margin-top: .25rem; }
.price-card.featured .price-period { color: rgba(255,255,255,.4); }
.price-body { padding: 1.5rem; }
.price-card.featured .price-body { background: var(--navy); }
.price-features { list-style: none; margin-bottom: 1.2rem; }
.price-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: #475569; padding: .4rem 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.price-card.featured .price-features li { color: rgba(255,255,255,.7); border-bottom-color: rgba(255,255,255,.08); }
.price-features li:last-child { border-bottom: none; }
.price-check { color: #10b981; flex-shrink: 0; margin-top: 1px; }
.price-cta { display: block; text-align: center; padding: .75rem; border-radius: 8px; font-size: .87rem; font-weight: 600; text-decoration: none; background: var(--off); color: var(--navy); border: 1px solid var(--border); transition: all .2s; }
.price-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.price-card.featured .price-cta { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 4px 14px rgba(37,99,235,.3); }
.price-card.featured .price-cta:hover { background: #1d4ed8; }

/* ── TESTIMONIAL ── */
.testimonial-box { max-width: 780px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 3rem; box-shadow: 0 4px 30px rgba(15,34,64,.06); text-align: center; }
.quote-mark { font-family: 'Syne',sans-serif; font-size: 5rem; font-weight: 800; color: rgba(37,99,235,.08); line-height: .5; display: block; margin-bottom: 1.2rem; }
.quote-text { font-size: 1.15rem; font-style: italic; color: var(--navy); line-height: 1.75; margin-bottom: 1.2rem; font-weight: 300; }
.quote-attr { font-size: .87rem; font-weight: 600; color: var(--accent); }

/* ── FAQ ── */
.faq-list { max-width: 720px; }
details { border: 1px solid var(--border); border-radius: 10px; margin-bottom: .7rem; overflow: hidden; transition: border-color .2s; }
details[open] { border-color: var(--accent); }
summary { padding: 1.1rem 1.4rem; cursor: pointer; font-size: .93rem; font-weight: 500; color: var(--navy); display: flex; justify-content: space-between; align-items: center; list-style: none; transition: background .2s; }
summary:hover { background: var(--off); }
summary::after { content: '+'; font-size: 1.2rem; color: var(--accent); flex-shrink: 0; margin-left: .8rem; transition: transform .25s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: .5rem 1.4rem 1.1rem; font-size: .88rem; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 80px 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 50% 50%,rgba(37,99,235,.25) 0%,transparent 70%); }
.cta-banner-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-banner h2 { font-family: 'Syne',sans-serif; font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: .8rem; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.55); max-width: 500px; margin: 0 auto 2rem; line-height: 1.75; }
.cta-trust { margin-top: 1.2rem; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; font-size: .78rem; color: rgba(255,255,255,.3); }
.cta-trust span::before { content: '✓ '; color: var(--sky); }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 110px 2rem 80px; position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size: 60px 60px; }
.page-hero-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 50%,rgba(37,99,235,.2) 0%,transparent 70%); }
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.page-eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: rgba(37,99,235,.2); border: 1px solid rgba(37,99,235,.4); color: var(--sky); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .85rem; border-radius: 100px; margin-bottom: 1.2rem; }
.page-hero h1 { font-family: 'Syne',sans-serif; font-size: clamp(2.4rem,5vw,4rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 1.2rem; max-width: 700px; }
.page-hero h1 em { color: var(--sky); font-style: normal; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.6); max-width: 540px; line-height: 1.75; margin-bottom: 2rem; }
.page-hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-info h2 { font-family: 'Syne',sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: .8rem; margin-bottom: 1.2rem; }
.contact-detail-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(37,99,235,.07); border: 1px solid rgba(37,99,235,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.contact-detail-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .2rem; }
.contact-detail-val { font-size: .87rem; color: #475569; line-height: 1.6; }
.contact-box { background: var(--navy); border-radius: 12px; padding: 1.4rem; margin-top: 1.5rem; }
.contact-box h4 { font-family: 'Syne',sans-serif; font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: .8rem; }
.contact-box li { font-size: .8rem; color: rgba(255,255,255,.5); padding: .3rem 0; display: flex; gap: .5rem; }
.contact-box li::before { content: '✓'; color: var(--sky); flex-shrink: 0; }
.form-wrap { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.form-wrap h2 { font-family: 'Syne',sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
label { display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #64748b; margin-bottom: .4rem; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: .65rem 1rem; font-size: .87rem; color: #1e293b; font-family: 'DM Sans',sans-serif; transition: border-color .2s, box-shadow .2s; outline: none; background: #fff; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.08); }
textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; background: var(--accent); color: #fff; border: none; padding: .9rem; border-radius: 8px; font-size: .93rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans',sans-serif; transition: background .2s; margin-top: .5rem; }
.btn-submit:hover { background: #1d4ed8; }
.form-note { text-align: center; font-size: .75rem; color: var(--muted); margin-top: .6rem; }
.form-success { text-align: center; padding: 3rem; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Syne',sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.form-success p { font-size: .9rem; color: var(--muted); }

/* ── BLOG ── */
.blog-featured { background: linear-gradient(135deg,var(--navy),var(--blue)); border-radius: 16px; overflow: hidden; margin-bottom: 1.5rem; padding: 2.5rem 3rem; }
.blog-featured-cat { display: inline-block; background: rgba(37,99,235,.25); color: var(--sky); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 100px; margin-bottom: 1rem; }
.blog-featured h2 { font-family: 'Syne',sans-serif; font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: .8rem; max-width: 580px; }
.blog-featured p { font-size: .93rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 540px; margin-bottom: 1.2rem; }
.blog-featured a { color: var(--sky); font-size: .87rem; font-weight: 600; text-decoration: none; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .2s, box-shadow .2s; text-decoration: none; display: block; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(15,34,64,.08); }
.blog-card-img { background: linear-gradient(135deg,#334155,#475569); height: 100px; display: flex; align-items: flex-end; padding: .8rem 1rem; }
.blog-card-cat { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); padding: .2rem .5rem; border-radius: 4px; }
.blog-card-body { padding: 1.2rem; }
.blog-card h3 { font-family: 'Syne',sans-serif; font-size: .97rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: .5rem; transition: color .2s; }
.blog-card:hover h3 { color: var(--accent); }
.blog-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: .8rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { display: flex; justify-content: space-between; font-size: .75rem; color: #94a3b8; }
.blog-post-content h2 { font-family: 'Syne',sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .8rem; }
.blog-post-content p { font-size: .95rem; color: #475569; line-height: 1.8; margin-bottom: 1.2rem; }
.blog-post-content ul { margin: 0 0 1.2rem 1.2rem; }
.blog-post-content ul li { font-size: .95rem; color: #475569; line-height: 1.7; margin-bottom: .4rem; }
.blog-post-content a { color: var(--accent); }

/* ── FOOTER ── */
footer { background: #080f1c; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4,1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.7; margin: .8rem 0 1rem; }
.footer-brand address { font-size: .78rem; color: rgba(255,255,255,.2); font-style: normal; line-height: 1.7; }
.footer-col-title { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.2); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.2); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ── BG VARIANTS ── */
.bg-off { background: var(--off); }
.bg-navy { background: var(--navy); }
.bg-navy .section-label { color: var(--sky); }
.bg-navy .section-title { color: #fff; }
.bg-navy .section-sub { color: rgba(255,255,255,.5); }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-items, .nav-right { display: none; }
  .mobile-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 1.2rem; }
  .hero { padding: 100px 1.2rem 70px; }
  .page-hero { padding: 90px 1.2rem 60px; }
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 640px) {
  .nav-logo-img { height: 34px; }
}
