:root {
  --navy-950: #020617;
  --navy-900: #0f172a;
  --navy-850: #111c33;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-300: #93c5fd;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy-950);
  color: var(--white);
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.35);
  flex: 0 0 auto;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  color: var(--slate-300);
  font-size: 0.76rem;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: var(--slate-200);
}

.desktop-nav button,
.mobile-nav button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
}

.desktop-nav button:hover,
.mobile-nav button:hover,
.mobile-nav a:hover,
.site-footer a:hover { color: var(--white); }

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.25rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 20px;
  color: var(--slate-200);
}

.mobile-nav.open { display: flex; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  line-height: 1;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue-800);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--navy-950); color: var(--white); }
.btn-dark:hover { background: #1f2937; }
.btn-large { padding: 18px 28px; font-size: 1rem; }

.section-dark { background: var(--navy-950); }
.section-light { background: var(--slate-50); color: var(--navy-950); }
.section-white { background: var(--white); color: var(--navy-950); }

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(30, 64, 175, 0.40), transparent 34%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.60), transparent 30%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  border: 1px solid rgba(147, 197, 253, 0.32);
  background: rgba(147, 197, 253, 0.10);
  color: #dbeafe;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.95rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero-text {
  max-width: 680px;
  color: var(--slate-200);
  font-size: 1.18rem;
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}


.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid rgba(147, 197, 253, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.hero-phone span {
  color: var(--blue-100);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-phone strong {
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  letter-spacing: 0.01em;
}

.hero-phone:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  color: var(--slate-200);
}

.trust-row span { color: var(--blue-300); }

.info-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 34px;
  background: rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.info-card-top {
  background: var(--blue-800);
  padding: 34px;
}

.info-card-top p {
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 900;
  font-size: 0.8rem;
}

.info-card-top h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.info-card-body { padding: 34px; }
.mini-feature {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}
.mini-feature:last-child { margin-bottom: 0; }
.mini-feature span {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
}
.mini-feature h3 { margin-bottom: 6px; }
.mini-feature p { color: var(--slate-200); line-height: 1.6; margin: 0; }

.services, .about, .why, .contact { padding: 86px 0; }
.section-heading { max-width: 800px; }
.label {
  margin-bottom: 12px;
  color: var(--blue-800);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 900;
}
.label-light { color: #dbeafe; }
.section-heading h2,
.about-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.section-heading p { color: var(--slate-600); font-size: 1.1rem; line-height: 1.75; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.service-card {
  min-height: 88px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--slate-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  color: var(--blue-700);
  transition: 0.2s ease;
}
.service-card strong { color: var(--navy-950); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: stretch;
}
.about-card {
  padding: 42px;
  border-radius: 34px;
  background: var(--blue-800);
}
.big-icon { font-size: 2.8rem; margin-bottom: 26px; }
.about-card p { color: #dbeafe; line-height: 1.75; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  background: rgba(255,255,255,0.10);
}
.process-card span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--white);
  color: var(--navy-950);
  font-size: 1.2rem;
  font-weight: 900;
}
.process-card h3 { font-size: 1.25rem; }
.process-card p { color: var(--slate-200); line-height: 1.7; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  padding: 34px;
  border: 1px solid var(--slate-200);
  border-radius: 34px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}
.why-card span { font-size: 2rem; }
.why-card h3 { margin: 20px 0 12px; font-size: 1.55rem; }
.why-card p { margin: 0; color: var(--slate-600); line-height: 1.7; }

.contact-panel {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(30px, 6vw, 58px);
  border-radius: 40px;
  background: var(--blue-800);
  text-align: center;
  box-shadow: 0 28px 80px rgba(30, 64, 175, 0.22);
}
.contact-panel > p:not(.label):not(.replace-note) {
  max-width: 680px;
  margin: 20px auto 0;
  color: #dbeafe;
  line-height: 1.75;
  font-size: 1.05rem;
}
.quote-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 42px auto 0;
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  color: var(--navy-950);
  text-align: left;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quote-form label { display: grid; gap: 8px; font-weight: 900; font-size: 0.9rem; }
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--slate-50);
  padding: 14px 16px;
  outline: none;
  transition: 0.18s ease;
}
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--blue-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}
.quote-form textarea { resize: vertical; }
.form-submit { width: 100%; padding: 18px; }
.form-note {
  margin: 0;
  text-align: center;
  color: var(--slate-500);
  font-size: 0.78rem;
  line-height: 1.5;
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 30px 0;
  color: var(--slate-300);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.footer-inner p { margin: 0; }
.footer-inner div { display: flex; gap: 18px; flex-wrap: wrap; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.65s ease forwards;
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 950px) {
  .desktop-nav, .header-call { display: none; }
  .mobile-menu-button { display: grid; place-items: center; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .service-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 78px 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand small { display: none; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .service-grid, .why-grid, .form-row { grid-template-columns: 1fr; }
  .info-card-top, .info-card-body, .about-card, .process-card, .why-card, .quote-form { padding: 24px; }
  .services, .about, .why, .contact { padding: 66px 0; }
}
