*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #fff; color: #0a0f1c; line-height: 1.5; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; }
a { cursor: pointer; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
img { display: block; }
svg { display: inline-block; fill: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: .5rem; font-weight: 600; font-size: 1rem; line-height: 1.5; transition: background .2s; cursor: pointer; }
.btn-primary { background: #0066cc; color: #fff; padding: .625rem 1.5rem; border-radius: .5rem; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: .5rem; }
.btn-primary:hover { background: #0052a3; }
.btn-primary-lg { background: #0066cc; color: #fff; padding: .875rem 2rem; font-size: 1.125rem; border-radius: .5rem; font-weight: 600; box-shadow: 0 8px 24px #0066cc44; display: inline-flex; align-items: center; gap: .5rem; }
.btn-primary-lg:hover { background: #0052a3; }
.btn-outline-lg { background: rgba(255,255,255,.06); color: #fff; padding: .875rem 2rem; font-size: 1.125rem; border: 2px solid rgba(255,255,255,.6); border-radius: .5rem; font-weight: 600; backdrop-filter: blur(4px); display: inline-flex; align-items: center; gap: .5rem; }
.btn-outline-lg:hover { background: #fff; color: #0a0f1c; }
.btn-full { width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem; background: #0066cc; color: #fff; padding: .75rem 1.5rem; border-radius: .5rem; font-weight: 600; font-size: 1rem; }
.btn-full:hover { background: #0052a3; }
.btn-full-lg { padding: 1rem; font-size: 1.125rem; }
.field { display: flex; flex-direction: column; gap: .375rem; }
.field label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #0a0f1c; }
.field input, .field textarea { background: #fff; border: 1px solid rgba(10,15,28,.12); border-radius: .5rem; padding: .625rem .875rem; font-size: .9rem; color: #0a0f1c; outline: none; transition: border-color .2s; }
.field input:focus, .field textarea:focus { border-color: #0066cc; }
.field textarea { resize: none; }
.hero-copy { max-width: 48rem; }
.why-inner { position: relative; z-index: 1; }
.mobile-menu-cta {
  margin-top: 1rem;
  padding-top: .5rem;
}
#mobile-menu .mobile-menu-cta .btn-primary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: #005fbd;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(0, 102, 204, 0.22);
}
#mobile-menu .mobile-menu-cta .btn-primary:hover {
  background: #0052a3;
  color: #fff;
}
.stack-top { margin-top: auto; }
.hidden { display: none !important; }
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(10,15,28,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { cursor: pointer; }
.logo img { height: 40px; width: auto; }
nav { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 768px) { nav { display: flex; } }
nav button { font-size: .875rem; letter-spacing: .1em; font-weight: 700; color: #0a0f1c; transition: color .2s; }
nav button:hover { color: #0066cc; }
.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: block; } }
.hamburger { display: flex; align-items: center; padding: .5rem; border-radius: .375rem; color: #0a0f1c; }
.hamburger:hover { background: #f5f8fc; }
@media (min-width: 768px) { .hamburger { display: none; } }
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  background: #fff;
  border-top: 1px solid rgba(10,15,28,.08);
  padding: 0 1.5rem;
  transition: max-height .35s ease, opacity .25s ease, transform .35s ease, padding .35s ease;
}
#mobile-menu.open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding: 1rem 1.5rem 1.25rem;
}
#mobile-menu button { display: block; width: 100%; text-align: center; padding: .5rem 0; font-size: .875rem; letter-spacing: .1em; font-weight: 700; color: #0a0f1c; }
#mobile-menu button:hover { color: #0066cc; }
#mobile-menu .mobile-menu-cta .btn-primary {
  padding: 1rem 1.25rem;
  text-align: center;
}
#home { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
#hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-ov1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,23,42,.85), rgba(15,23,42,.65) 50%, rgba(15,23,42,.30)); }
.hero-ov2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.6), transparent 60%); }
.hero-content { position: relative; z-index: 1; padding: 5rem 0 4rem; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 9999px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); margin-bottom: 1.75rem; backdrop-filter: blur(4px); margin-top: 50px; }
@media (min-width: 640px) { .hero-badge { margin-top: 0; } }
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; stroke: #93c5fd; }
.hero-badge span { font-size: .875rem; font-weight: 500; color: #bfdbfe; letter-spacing: .05em; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: #fff; margin-bottom: 1.5rem; line-height: 1.1; }
.hero-title span { color: #60a5fa; }
.hero-lead { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 2.5rem; max-width: 42rem; line-height: 1.7; }
.hero-btns { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 5rem; }
@media (min-width: 1024px) { .hero-stats { grid-template-columns: repeat(4,1fr); } }
.stat-card { background: rgba(255,255,255,.10); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.2); border-radius: .75rem; padding: 1.25rem; }
.stat-val { font-size: 1.875rem; font-weight: 700; color: #93c5fd; margin-bottom: .25rem; }
.stat-lbl { font-size: .875rem; color: #94a3b8; }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
#about { background: #f8fafc; overflow: hidden; }
.about-split { display: grid; min-height: 520px; }
@media (min-width: 1024px) { .about-split { grid-template-columns: 1fr 1fr; } }
.about-img { position: relative; min-height: 320px; }
.about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-img-ov { position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(248,250,252,.3)); }
.about-chips { position: absolute; bottom: 2rem; left: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.chip { background: rgba(255,255,255,.9); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.6); border-radius: .75rem; padding: .75rem 1rem; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.chip-val { font-size: 1.25rem; font-weight: 700; color: #0066cc; line-height: 1; }
.chip-lbl { font-size: .7rem; color: #64748b; margin-top: .25rem; letter-spacing: .05em; }
.about-text { display: flex; flex-direction: column; justify-content: center; padding: 4rem 2.5rem; }
@media (min-width: 1024px) { .about-text { padding: 4rem; } }
.section-badge { display: inline-flex; align-items: center; padding: .5rem 1rem; border-radius: 9999px; background: rgba(0,102,204,.08); border: 1px solid rgba(0,102,204,.18); margin-bottom: 1.5rem; font-size: .875rem; font-weight: 700; color: #0066cc; letter-spacing: .1em; text-transform: uppercase; }
.about-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: #0a0f1c; margin-bottom: 1.5rem; line-height: 1.2; }
.about-title span { color: #0066cc; }
.about-lead { color: #556377; font-size: 1.05rem; line-height: 1.75; }
.acc-wrap { padding: 4rem 0; }
.acc-item { position: relative; background: #fff; border: 1px solid rgba(10,15,28,.08); border-radius: 1rem; overflow: hidden; margin-bottom: .75rem; transition: border-color .3s, box-shadow .3s; }
.acc-item.open { border-color: rgba(0,102,204,.4); box-shadow: 0 4px 16px rgba(0,102,204,.08); }
.acc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: opacity .5s; opacity: .2; }
.acc-item.open .acc-bg { opacity: .04; }
.acc-fade { position: absolute; inset: 0; }
.acc-item:not(.open) .acc-fade { background: linear-gradient(to right, #fff 40%, rgba(255,255,255,.8) 70%, transparent); opacity: 1; }
.acc-item.open .acc-fade { background: linear-gradient(to right, #fff 40%, rgba(255,255,255,.8) 70%, transparent); opacity: .95; }
.acc-trigger { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.75rem; text-align: left; }
.acc-trigger-left { display: flex; align-items: center; gap: 1rem; }
.acc-icon { width: 40px; height: 40px; border-radius: .625rem; background: rgba(0,102,204,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.acc-item.open .acc-icon { background: #0066cc; }
.acc-icon svg { width: 20px; height: 20px; stroke: #0066cc; transition: stroke .2s; }
.acc-item.open .acc-icon svg { stroke: #fff; }
.acc-label { font-size: 1rem; font-weight: 700; color: #0a0f1c; }
.acc-chevron { width: 20px; height: 20px; stroke: #556377; flex-shrink: 0; margin-left: .75rem; transition: transform .3s; }
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-body { position: relative; z-index: 2; overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.acc-item.open .acc-body { max-height: 600px; }
.acc-body-inner { padding: .25rem 1.75rem 1.5rem; }
.acc-body p { color: #556377; line-height: 1.75; font-size: .95rem; }
.values-grid { display: grid; gap: .625rem 2.5rem; list-style: none; }
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
.val-item { display: flex; align-items: flex-start; gap: .75rem; }
.val-dot { width: 6px; height: 6px; border-radius: 50%; background: #0066cc; margin-top: .55rem; flex-shrink: 0; }
.val-text { font-size: .9rem; color: #556377; line-height: 1.6; }
.val-text strong { color: #0a0f1c; font-weight: 600; }
#why-us { position: relative; padding: 7rem 1.5rem; background: #fff; overflow: hidden; }
.why-blob-1 { position: absolute; top: 0; right: 0; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,102,204,.05); filter: blur(100px); pointer-events: none; }
.why-blob-2 { position: absolute; bottom: 0; left: 0; width: 400px; height: 400px; border-radius: 50%; background: rgba(219,234,254,.6); filter: blur(100px); pointer-events: none; }
.why-header { max-width: 48rem; margin-bottom: 5rem; }
.why-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: #0a0f1c; margin-bottom: 1.5rem; line-height: 1.15; }
.why-title span { color: #0066cc; }
.why-lead { color: #556377; font-size: 1.125rem; line-height: 1.75; }
.why-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card { position: relative; background: #f8fafc; border: 1px solid rgba(10,15,28,.08); border-radius: 1rem; padding: 2rem; overflow: hidden; transition: background .3s, border-color .3s, box-shadow .3s; }
.why-card:hover { background: #fff; border-color: rgba(0,102,204,.35); box-shadow: 0 12px 40px rgba(0,102,204,.1); }
.why-num { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 3.5rem; font-weight: 900; color: rgba(10,15,28,.04); line-height: 1; user-select: none; transition: color .3s; }
.why-card:hover .why-num { color: rgba(0,102,204,.08); }
.why-top-line { position: absolute; top: 0; left: 2rem; right: 2rem; height: 1px; background: linear-gradient(to right, transparent, rgba(0,102,204,.5), transparent); opacity: 0; transition: opacity .3s; }
.why-card:hover .why-top-line { opacity: 1; }
.why-icon { width: 48px; height: 48px; border-radius: .75rem; background: rgba(0,102,204,.08); border: 1px solid rgba(0,102,204,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background .3s, border-color .3s; }
.why-card:hover .why-icon { background: #0066cc; border-color: #0066cc; }
.why-icon svg { width: 20px; height: 20px; stroke: #0066cc; transition: stroke .3s; }
.why-card:hover .why-icon svg { stroke: #fff; }
.why-card h3 { font-size: 1.25rem; font-weight: 700; color: #0a0f1c; margin-bottom: .75rem; }
.why-card p { color: #556377; font-size: .9rem; line-height: 1.7; }
#services { padding: 6rem 1.5rem; background: #fff; }
.services-hdr { text-align: center; margin-bottom: 4rem; }
.services-hdr h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #0a0f1c; margin-bottom: 1rem; }
.services-hdr p { font-size: 1.25rem; color: #556377; max-width: 36rem; margin: 0 auto; }
.svc-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }
.svc-card { position: relative; overflow: hidden; background: linear-gradient(135deg,#fff,#f8fafc); border: 1px solid rgba(10,15,28,.08); border-radius: 1rem; padding: 2rem; cursor: pointer; transition: box-shadow .4s, border-color .4s; }
.svc-card:hover { box-shadow: 0 20px 60px rgba(0,102,204,.12); border-color: rgba(0,102,204,.35); }
.svc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .5s; }
.svc-card:hover .svc-bg { opacity: .12; }
.svc-hgrad { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(0,102,204,0),rgba(0,102,204,.08)); border-radius: 1rem; opacity: 0; transition: opacity .5s; }
.svc-card:hover .svc-hgrad { opacity: 1; }
.svc-inner { position: relative; z-index: 1; }
.svc-icon { width: 56px; height: 56px; border-radius: .75rem; background: rgba(0,102,204,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background .3s, transform .3s; }
.svc-card:hover .svc-icon { background: #0066cc; transform: scale(1.1); }
.svc-icon svg { width: 28px; height: 28px; stroke: #0066cc; transition: stroke .3s; }
.svc-card:hover .svc-icon svg { stroke: #fff; }
.svc-card h3 { font-size: 1.5rem; font-weight: 700; color: #0a0f1c; margin-bottom: .75rem; transition: color .3s; }
.svc-card:hover h3 { color: #0066cc; }
.svc-card p { color: #556377; line-height: 1.7; }
.svc-learn { display: flex; align-items: center; gap: .5rem; color: #0066cc; font-size: .875rem; font-weight: 700; margin-top: 1.5rem; opacity: 0; transition: opacity .3s; }
.svc-card:hover .svc-learn { opacity: 1; }
#modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(15,23,42,.7); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
#modal-overlay.open { display: flex; }
@media (min-width: 1024px) { #modal-overlay { padding: 2.5rem; } }
#modal-box { position: relative; width: 100%; max-width: 960px; max-height: 90vh; background: #fff; border-radius: 1.5rem; overflow: hidden; display: flex; flex-direction: column; }
@media (min-width: 1024px) { #modal-box { flex-direction: row; max-height: 85vh; } }
#modal-close { position: absolute; top: 1rem; right: 1rem; z-index: 10; width: 36px; height: 36px; background: rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.12); cursor: pointer; }
#modal-close:hover { background: #fff; }
#modal-close svg { width: 16px; height: 16px; stroke: #475569; }
#modal-mobile { display: block; overflow-y: auto; }
@media (min-width: 1024px) { #modal-mobile { display: none; } }
.mob-banner { position: relative; height: 224px; flex-shrink: 0; }
.mob-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mob-banner-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,23,42,.5), rgba(15,23,42,.9)); }
.mob-banner-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.mob-svc-icon { width: 44px; height: 44px; border-radius: .75rem; background: #0066cc; display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; box-shadow: 0 4px 12px rgba(0,102,204,.4); }
.mob-svc-icon svg { width: 20px; height: 20px; stroke: #fff; }
.mob-svc-title { font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.2; }
.mob-detail { background: #1e293b; padding: 1.5rem; }
.mob-detail p { color: #cbd5e1; line-height: 1.75; font-size: .92rem; margin-bottom: 1rem; }
.mob-detail p:last-child { margin-bottom: 0; }
.mob-form-wrap { background: #f8fafc; border-top: 1px solid rgba(10,15,28,.08); padding: 1.5rem; }
.mob-form-title { font-size: 1.125rem; font-weight: 700; color: #0a0f1c; margin-bottom: .25rem; }
.mob-form-sub { font-size: .875rem; color: #556377; margin-bottom: 1.25rem; }
.mob-form-sub span { font-weight: 600; color: #0066cc; }
.mob-modal-form { display: flex; flex-direction: column; gap: 1rem; }
#modal-desktop { display: none; width: 100%; }
@media (min-width: 1024px) { #modal-desktop { display: flex; overflow: hidden; } }
.desk-left { position: relative; flex: 2; overflow-y: auto; }
.desk-left-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.desk-left-grad { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(15,23,42,.88),rgba(15,23,42,.75) 60%,rgba(30,41,59,.6)); }
.desk-left-content { position: relative; z-index: 1; padding: 3rem; min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.desk-icon { width: 56px; height: 56px; border-radius: 1rem; background: #0066cc; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 6px 16px rgba(0,102,204,.4); }
.desk-icon svg { width: 28px; height: 28px; stroke: #fff; }
.desk-title { font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; line-height: 1.2; }
.desk-body p { color: #cbd5e1; line-height: 1.75; font-size: .95rem; margin-bottom: 1rem; }
.desk-body p:last-child { margin-bottom: 0; }
.desk-right { flex: 1; background: #f8fafc; border-left: 1px solid rgba(10,15,28,.08); display: flex; flex-direction: column; overflow-y: auto; }
.desk-right-inner { padding: 2rem; display: flex; flex-direction: column; height: 100%; }
.desk-right-title { font-size: 1.25rem; font-weight: 700; color: #0a0f1c; margin-bottom: .25rem; }
.desk-right-sub { font-size: .875rem; color: #556377; margin-bottom: 1.5rem; }
.desk-right-sub span { font-weight: 600; color: #0066cc; }
.desk-modal-form { display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.field-grow { flex: 1; display: flex; flex-direction: column; }
.field-grow textarea { flex: 1; min-height: 7rem; }
.sent-state { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1rem; padding: 2rem 0; flex: 1; }
.sent-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,102,204,.08); display: flex; align-items: center; justify-content: center; }
.sent-icon svg { width: 24px; height: 24px; stroke: #0066cc; }
.sent-title { font-size: 1.125rem; font-weight: 700; color: #0a0f1c; }
.sent-body { font-size: .875rem; color: #556377; }
.sent-again { font-size: .875rem; color: #0066cc; font-weight: 700; text-decoration: underline; cursor: pointer; }
#contact { padding: 6rem 1.5rem; background: #fff; }
.contact-hdr { text-align: center; margin-bottom: 4rem; }
.contact-hdr h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #0a0f1c; margin-bottom: 1rem; }
.contact-hdr p { font-size: 1.25rem; color: #556377; max-width: 36rem; margin: 0 auto; }
.contact-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.ci-card { background: linear-gradient(135deg,#0066cc,#0052a3); border-radius: 1rem; padding: 2rem; color: #fff; margin-bottom: 1.5rem; }
.ci-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.ci-items { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { width: 48px; height: 48px; border-radius: .75rem; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 24px; height: 24px; stroke: #fff; }
.ci-lbl { font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: .25rem; }
.ci-val { font-size: 1.125rem; font-weight: 600; color: #fff; }
.ci-val:hover { text-decoration: underline; }
.hours-card { background: #f8fafc; border: 1px solid rgba(10,15,28,.08); border-radius: 1rem; padding: 2rem; }
.hours-card h4 { font-size: 1.125rem; font-weight: 700; color: #0a0f1c; margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; margin-bottom: .5rem; color: #556377; }
.hours-row span:last-child { font-weight: 600; color: #0a0f1c; }
.hours-note { font-size: .875rem; color: #0066cc; font-weight: 600; margin-top: 1rem; }
.cf-card { background: #f8fafc; border: 1px solid rgba(10,15,28,.08); border-radius: 1rem; padding: 2rem; }
.cf-form { display: flex; flex-direction: column; gap: 1.5rem; }
@media (max-width: 767px) {
  #why-us,
  #services,
  #contact,
  footer {
    padding-left: 0;
    padding-right: 0;
  }
  #contact {
    overflow-x: hidden;
  }
  .contact-grid > div,
  .ci-card,
  .hours-card,
  .cf-card {
    min-width: 0;
    width: 100%;
  }
  .ci-card,
  .hours-card,
  .cf-card {
    padding: 1.5rem;
  }
  .ci-item {
    min-width: 0;
  }
  .ci-item > div:last-child {
    min-width: 0;
    flex: 1;
  }
  .ci-val,
  .hours-note {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hours-row {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .field input,
  .field textarea {
    width: 100%;
    min-width: 0;
  }
}
footer { background: #0f172a; color: #fff; padding: 3rem 1.5rem; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; text-align: center; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; text-align: left; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .footer-brand { align-items: flex-start; } }
.footer-brand img { height: 36px; width: auto; margin-bottom: 1rem; cursor: pointer; }
.footer-brand p { color: #94a3b8; font-size: .875rem; line-height: 1.7; }
footer h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
footer ul li button, footer ul li a { font-size: .875rem; color: #94a3b8; transition: color .2s; }
footer ul li button:hover, footer ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; text-align: center; font-size: .875rem; color: #94a3b8; }
