*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:#0D1F3C;
  --blue:#1A56DB;
  --blue-lt:#EBF2FF;
  --accent:#06B6D4;
  --white:#FFFFFF;
  --light:#F8FAFC;
  --border:#E2E8F0;
  --text:#1E293B;
  --muted:#64748B;
  --radius:12px;
  --shadow:0 4px 24px rgba(13,31,60,.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
main.site-main { padding-top: 72px; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo {
  width: 44px; height: 44px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo svg { width: 26px; height: 26px; fill: white; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-text span:first-child { font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: -.3px; }
.nav-brand-text span:last-child { font-size: 10px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.nav-links,
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--navy);
}

.nav-links .btn-nav > a,
.nav-links a.btn-nav {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.nav-links .btn-nav > a:hover,
.nav-links a.btn-nav:hover {
  background: #1445b5 !important;
  color: #fff !important;
}

.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0D1F3C 0%, #1a3a6e 50%, #0D1F3C 100%);
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,182,212,.15); border: 1px solid rgba(6,182,212,.3);
  color: var(--accent); padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}
.hero-tag span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: white; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 40px; max-width: 500px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: white; padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #1445b5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,.4); }
.btn-ghost {
  background: transparent; color: white; padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; transition: all .2s;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,.1); }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.stat-item .stat-num { font-size: 28px; font-weight: 800; color: white; letter-spacing: -1px; }
.stat-item .stat-label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.hero-visual { position: relative; }
.hero-card-stack { position: relative; }
.hero-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 24px;
}
.hero-card-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.metric-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.metric-row:last-child { border-bottom: none; }
.metric-label { font-size: 13px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 8px; }
.metric-dot { width: 8px; height: 8px; border-radius: 50%; }
.metric-val { font-size: 14px; font-weight: 700; color: white; }
.metric-change { font-size: 11px; padding: 2px 7px; border-radius: 100px; font-weight: 600; }
.up { color: #10B981; background: rgba(16,185,129,.15); }
.dn { color: #EF4444; background: rgba(239,68,68,.15); }

.floating-badge {
  position: absolute; right: -20px; bottom: -20px;
  background: white; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: 12px;
}
.badge-icon { width: 40px; height: 40px; background: #EBF9F5; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.badge-text .b1 { font-size: 13px; font-weight: 700; color: var(--navy); }
.badge-text .b2 { font-size: 11px; color: var(--muted); }

.trust-bar {
  background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 5%;
}
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.trust-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-logo {
  font-size: 14px; font-weight: 700; color: #94A3B8; letter-spacing: -.3px;
  opacity: .7; transition: opacity .2s;
}
.trust-logo:hover { opacity: 1; }

section { padding: 96px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-title { font-size: clamp(28px,4vw,42px); font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all .25s; cursor: default;
}
.service-card:hover {
  border-color: var(--blue); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,86,219,.1);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px;
}
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; }
.service-link:hover { gap: 8px; }

.why-section { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-title, .why-left .section-sub { color: rgba(255,255,255,.9); }
.why-left .section-sub { color: rgba(255,255,255,.6); }
.why-left .section-tag { color: var(--accent); }
.why-items { display: grid; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 20px 24px;
  transition: background .2s;
}
.why-item:hover { background: rgba(255,255,255,.08); }
.why-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-text h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.why-text p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process-card {
  position: relative; padding: 32px; border-radius: var(--radius);
  background: var(--light); border: 1px solid var(--border);
  transition: all .25s;
}
.process-card:hover { background: var(--white); box-shadow: var(--shadow); border-color: transparent; }
.process-num { font-size: 64px; font-weight: 900; color: var(--border); position: absolute; top: 16px; right: 24px; line-height: 1; letter-spacing: -2px; }
.process-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: white; padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 700; margin-bottom: 16px;
}
.process-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.process-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.page-header {
  background: linear-gradient(135deg, #0D1F3C 0%, #1a3a6e 100%);
  padding: 140px 5% 80px; text-align: center;
}
.page-header .breadcrumb { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.5px; }
.page-header h1 { font-size: clamp(36px,5vw,56px); font-weight: 800; color: white; letter-spacing: -1.5px; margin-bottom: 16px; }
.page-header p { font-size: 18px; color: rgba(255,255,255,.65); max-width: 600px; margin: 0 auto; line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-left p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.stat-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.stat-box { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-box .num { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.stat-box .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-right { display: flex; flex-direction: column; gap: 20px; }
.value-card {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.value-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(26,86,219,.08); }
.value-icon { font-size: 24px; flex-shrink: 0; }
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.mission-section { background: var(--navy); }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.mission-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 32px; transition: background .2s; }
.mission-card:hover { background: rgba(255,255,255,.1); }
.mission-card-icon { font-size: 36px; margin-bottom: 16px; }
.mission-card h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.mission-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }
.mission-tag { color: var(--accent) !important; }

.process-timeline { position: relative; }
.process-row { display: grid; grid-template-columns: 60px 1fr; gap: 24px; margin-bottom: 0; position: relative; }
.process-row:not(:last-child)::before {
  content: ''; position: absolute; left: 28px; top: 56px; bottom: -24px;
  width: 2px; background: var(--border); z-index: 0;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue-lt);
  border: 2px solid var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--blue); flex-shrink: 0; z-index: 1;
}
.step-content { padding: 12px 0 32px; }
.step-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 520px; }

.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-split p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.accordion-btn {
  width: 100%; background: none; border: none; padding: 18px 20px; text-align: left;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--navy); transition: background .2s;
}
.accordion-btn:hover { background: var(--light); }
.accordion-btn .chevron { font-size: 18px; transition: transform .3s; color: var(--blue); }
.accordion-btn.open .chevron { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-body p { padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }

.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--border);
}
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.svc-visual {
  background: var(--light); border: 1px solid var(--border); border-radius: 16px;
  padding: 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
  min-height: 300px; justify-content: center;
}
.svc-big-icon { font-size: 56px; }
.svc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--blue-lt); color: var(--blue); padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.chip.teal { background: #ECFEFF; color: #0891B2; }
.chip.green { background: #F0FDF4; color: #16A34A; }
.chip.purple { background: #F5F3FF; color: #7C3AED; }
.svc-content .section-tag { margin-bottom: 8px; }
.svc-content h2 { font-size: clamp(24px,3vw,34px); font-weight: 800; color: var(--navy); letter-spacing: -.8px; margin-bottom: 16px; line-height: 1.2; }
.svc-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.svc-bullets { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; }
.svc-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.svc-bullets li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--blue); color: var(--blue); padding: 11px 22px;
  border-radius: 9px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: var(--blue); color: white; }

.packages-section { background: var(--light); }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.pkg-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 32px; position: relative; transition: all .25s;
}
.pkg-card:hover { box-shadow: 0 12px 40px rgba(26,86,219,.1); border-color: var(--blue); transform: translateY(-4px); }
.pkg-card.featured {
  border-color: var(--blue); background: var(--navy); transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(26,86,219,.2);
}
.pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white; padding: 4px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.pkg-name { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.pkg-card.featured .pkg-name { color: rgba(255,255,255,.5); }
.pkg-price { font-size: 38px; font-weight: 800; color: var(--navy); letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.pkg-card.featured .pkg-price { color: white; }
.pkg-price sup { font-size: 20px; font-weight: 600; vertical-align: top; margin-top: 6px; }
.pkg-price-note { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.pkg-card.featured .pkg-price-note { color: rgba(255,255,255,.45); }
.pkg-features { list-style: none; margin-bottom: 32px; display: grid; gap: 10px; }
.pkg-features li { font-size: 14px; color: var(--text); display: flex; gap: 10px; align-items: flex-start; }
.pkg-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.pkg-card.featured .pkg-features li { color: rgba(255,255,255,.75); }
.pkg-card.featured .pkg-features li::before { color: var(--accent); }
.btn-pkg {
  display: block; text-align: center; padding: 12px; border-radius: 9px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all .2s;
  border: 1.5px solid var(--blue); color: var(--blue);
}
.btn-pkg:hover { background: var(--blue); color: white; }
.pkg-card.featured .btn-pkg { background: var(--blue); color: white; border-color: var(--blue); }
.pkg-card.featured .btn-pkg:hover { background: #1445b5; }

.contact-section { padding: 88px 5%; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info .tagline { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.contact-info h2 { font-size: clamp(28px,3.5vw,40px); font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.info-cards { display: grid; gap: 16px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.info-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(26,86,219,.08); }
.info-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.info-card h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 14px; color: var(--muted); text-decoration: none; line-height: 1.6; }
.info-card a:hover { color: var(--blue); }

.social-row { display: flex; gap: 12px; margin-top: 32px; }
.social-btn {
  width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  text-decoration: none; transition: all .2s;
}
.social-btn:hover { border-color: var(--blue); background: var(--blue-lt); }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 48px; box-shadow: 0 8px 32px rgba(13,31,60,.06);
}
.form-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; letter-spacing: -.5px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 9px;
  font-family: inherit; font-size: 14px; color: var(--text); background: var(--light);
  transition: border-color .2s, background .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.required-star { color: var(--blue); margin-left: 2px; }

.btn-submit {
  width: 100%; padding: 15px; background: var(--blue); color: white; border: none;
  border-radius: 10px; font-family: inherit; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: #1445b5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,.3); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.6; }

.form-success {
  display: none; text-align: center; padding: 48px 24px;
}
.success-icon { font-size: 56px; margin-bottom: 20px; }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--muted); }

.reasons-section { background: var(--light); padding: 88px 5%; }
.reasons-inner { max-width: 1200px; margin: 0 auto; }
.reasons-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 52px; }
.reason-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; transition: all .25s;
}
.reason-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.reason-card .icon { font-size: 36px; margin-bottom: 14px; }
.reason-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.reason-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, #0891B2 100%);
  border-radius: 20px; padding: 64px; text-align: center;
  margin: 0 5%; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 520px; margin-left:auto; margin-right:auto; position: relative; z-index: 1; }
.btn-white { background:white; color:var(--blue); padding:14px 32px; border-radius:10px; font-size:15px; font-weight:700; text-decoration:none; display:inline-block; transition:all .2s; position: relative; z-index: 1; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.2); }

footer { background:var(--navy); color:rgba(255,255,255,.6); padding:64px 5% 32px; margin-top:88px; }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand .logo-wrap { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-logo { width:40px; height:40px; background:rgba(255,255,255,.1); border-radius:9px; display:flex; align-items:center; justify-content:center; }
.footer-logo svg { width:22px; height:22px; fill:white; }
.footer-name { font-size:14px; font-weight:700; color:white; line-height:1.2; }
.footer-name small { font-size:10px; font-weight:400; color:rgba(255,255,255,.4); display:block; text-transform:uppercase; letter-spacing:1px; }
.footer-brand p { font-size:14px; line-height:1.7; max-width:260px; }
.footer-col h4 { font-size:12px; font-weight:700; color:white; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:16px; }
.footer-col a { display:block; font-size:14px; color:rgba(255,255,255,.55); text-decoration:none; margin-bottom:10px; transition:color .2s; }
.footer-col a:hover { color:white; }
.footer-col address { font-style:normal; font-size:14px; line-height:1.7; }
.footer-divider { border:none; border-top:1px solid rgba(255,255,255,.1); margin-bottom:28px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.footer-bottom p,.footer-bottom a { font-size:13px; }
.footer-bottom a { color:rgba(255,255,255,.4); text-decoration:none; }
.footer-bottom a:hover { color:rgba(255,255,255,.8); }

@media(max-width:1024px){
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display:none; }
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .about-grid,.why-split,.contact-inner{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;gap:48px;}
  .mission-grid{grid-template-columns:1fr 1fr;}
  .process-grid{grid-template-columns:repeat(2,1fr);}
  .service-detail,.service-detail.reverse{grid-template-columns:1fr;direction:ltr;}
  .packages-grid{grid-template-columns:1fr;max-width:420px;margin-left:auto;margin-right:auto;}
  .pkg-card.featured{transform:scale(1);}
  .reasons-grid{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
  .nav-links{display:none;}
  .services-grid,.process-grid,.mission-grid,.reasons-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .stat-strip{grid-template-columns:1fr 1fr;}
  .hero-stats{flex-wrap:wrap;gap:20px;}
  .contact-form-wrap{padding:32px 24px;}
  .cta-band{padding:40px 24px;margin:0 4%;}
  .footer-grid{grid-template-columns:1fr;}
  .trust-inner{flex-direction:column;gap:20px;}
}