:root {
  --ink: #071b22;
  --muted: #5a6b73;
  --blue: #0a6fb7;
  --blue-dark: #064c84;
  --cyan: #18a8c7;
  --plum: #8b2a68;
  --soft: #f1f8fb;
  --line: #dce8ee;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(7, 27, 34, 0.12);
  --soft-shadow: 0 14px 34px rgba(7, 27, 34, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfdfe;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 232, 238, 0.85);
}
.nav-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 232px; height: auto; filter: drop-shadow(0 8px 16px rgba(7, 27, 34, 0.08)); }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 0.94rem; font-weight: 700; color: #294650; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--plum); transition: width 0.25s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }

.section-pad { padding: 84px 0; }
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 60px;
  background:
    linear-gradient(135deg, rgba(10, 111, 183, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #f7fcfe 0%, #ffffff 76%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 111, 183, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 111, 183, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), transparent 72%);
  pointer-events: none;
}
.hero-grid, .about-grid, .why, .contact, .footer-grid { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hero-grid { position: relative; display: grid; grid-template-columns: 0.94fr 1.06fr; align-items: center; gap: 38px; }
.eyebrow { margin: 0 0 12px; color: var(--plum); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.76rem; font-weight: 800; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(2.35rem, 4.6vw, 4.45rem); line-height: 1; letter-spacing: 0; max-width: 760px; }
h2 { margin: 0; font-size: clamp(1.9rem, 3vw, 3.2rem); line-height: 1.08; letter-spacing: 0; }
h3 { margin: 0 0 12px; font-size: 1.12rem; line-height: 1.25; }
.hero-text { margin: 20px 0 0; max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border-radius: 8px; font-weight: 800; border: 1px solid transparent; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--cyan), var(--blue) 45%, var(--blue-dark)); color: white; box-shadow: 0 16px 34px rgba(10, 111, 183, 0.24); }
.btn-secondary { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,0.9); box-shadow: 0 10px 24px rgba(7, 27, 34, 0.06); }
.btn-light { background: white; color: var(--blue-dark); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; color: #31515c; font-weight: 700; font-size: 0.88rem; }
.trust-row span { padding: 9px 12px; background: #eef8fb; border: 1px solid #d8edf4; border-radius: 999px; }
.hero-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  max-width: 590px;
}
.hero-assurance div {
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 238, 0.95);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}
.hero-assurance strong, .hero-assurance span { display: block; }
.hero-assurance strong { color: var(--blue-dark); font-size: 1.02rem; }
.hero-assurance span { color: var(--muted); font-size: 0.82rem; font-weight: 700; margin-top: 2px; }
.hero-media { position: relative; padding: 12px; background: white; border: 1px solid rgba(220, 232, 238, 0.95); border-radius: 14px; box-shadow: var(--shadow); }
.hero-media img, .about-photo img, .why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.hero-media img { aspect-ratio: 16 / 10.6; object-position: center center; }
.about-photo, .why-media { padding: 10px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.about-photo img { aspect-ratio: 16 / 10; object-position: center center; }
.why-media img { aspect-ratio: 16 / 10; object-position: center center; }
.availability-card { position: absolute; right: 18px; bottom: 18px; width: min(250px, calc(100% - 36px)); background: rgba(255,255,255,0.94); border: 1px solid rgba(220,232,238,0.95); border-radius: 8px; padding: 16px; box-shadow: 0 18px 38px rgba(7, 27, 34, 0.16); }
.availability-card strong { display: block; color: var(--blue-dark); font-size: 1.85rem; line-height: 1; }
.availability-card span { display: block; margin-top: 7px; color: var(--muted); font-weight: 700; font-size: 0.86rem; }
.media-badge {
  position: absolute;
  left: 26px;
  top: 26px;
  padding: 10px 13px;
  background: rgba(6, 56, 79, 0.88);
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(7, 27, 34, 0.18);
}
.metrics { width: min(1120px, calc(100% - 40px)); margin: -18px auto 0; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 8px; overflow: hidden; }
.metrics div { padding: 22px; border-right: 1px solid var(--line); }
.metrics div { position: relative; }
.metrics div::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--plum)); opacity: 0.85; }
.metrics div:last-child { border-right: 0; }
.metrics strong, .metrics span { display: block; }
.metrics strong { font-size: 1rem; }
.metrics span { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.section-heading { width: min(820px, calc(100% - 40px)); margin: 0 auto 38px; text-align: center; }
.about-grid { display: grid; grid-template-columns: 1fr 0.86fr; gap: 44px; align-items: center; }
.about-copy { font-size: 1.05rem; color: var(--muted); }
.about-copy p:first-child { color: #24424d; font-weight: 600; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-points span { padding: 10px 12px; background: #ffffff; border: 1px solid var(--line); border-radius: 8px; color: #294650; font-size: 0.9rem; font-weight: 800; box-shadow: var(--soft-shadow); }
.soft-band { background: var(--soft); }
.card-grid { width: min(1120px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .testimonial-card, .industry-item { background: white; border: 1px solid var(--line); border-radius: 8px; }
.service-card { padding: 26px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-card { position: relative; overflow: hidden; box-shadow: 0 10px 26px rgba(7, 27, 34, 0.04); }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--cyan), var(--plum)); opacity: 0.88; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(7, 27, 34, 0.1); }
.icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 32px; margin-bottom: 20px; color: var(--plum); background: #f8edf5; border-radius: 8px; font-weight: 800; font-size: 0.82rem; }
.service-card p, .testimonial-card span, .contact-info p { color: var(--muted); }
.why { display: grid; grid-template-columns: 0.92fr 1fr; align-items: center; gap: 48px; }
.check-list { display: grid; gap: 12px; margin-top: 26px; }
.check-list div { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: #ffffff; border: 1px solid var(--line); border-radius: 8px; font-weight: 700; color: #294650; box-shadow: 0 10px 22px rgba(7, 27, 34, 0.04); }
.check-list span { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); position: relative; flex: 0 0 auto; }
.check-list span::after { content: ""; position: absolute; left: 6px; top: 4px; width: 5px; height: 8px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.industry-grid { width: min(980px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry-item { min-height: 88px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 18px; font-weight: 800; color: #294650; box-shadow: 0 12px 28px rgba(7, 27, 34, 0.06); background: linear-gradient(180deg, #ffffff, #f8fcfd); }
.testimonial-grid { width: min(1120px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { margin: 0; padding: 26px; box-shadow: 0 12px 28px rgba(7, 27, 34, 0.05); }
.testimonial-card::before { content: ""; display: block; width: 42px; height: 4px; margin-bottom: 18px; border-radius: 99px; background: linear-gradient(90deg, var(--plum), var(--cyan)); }
.testimonial-card blockquote { margin: 0 0 22px; color: #294650; font-size: 1rem; }
.testimonial-card strong, .testimonial-card span { display: block; }
.cta-band { width: min(1120px, calc(100% - 40px)); margin: 78px auto 0; padding: 38px; border-radius: 8px; background: linear-gradient(135deg, #06384f, #0a6fb7 58%, #8b2a68); color: white; display: flex; align-items: center; justify-content: space-between; gap: 28px; box-shadow: var(--shadow); }
.cta-band .eyebrow { color: #bfe9f4; }
.cta-band h2 { font-size: clamp(1.75rem, 2.6vw, 2.65rem); max-width: 760px; }
.contact { display: grid; grid-template-columns: 0.82fr 1fr; gap: 46px; align-items: start; }
.contact-card { margin-top: 14px; padding: 18px; background: #f7fbfd; border: 1px solid var(--line); border-radius: 8px; }
.contact-card span, .contact-card strong, .contact-card a { display: block; }
.contact-card span { color: var(--muted); font-size: 0.86rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card strong, .contact-card a { margin-top: 3px; font-size: 1.04rem; font-weight: 800; color: var(--ink); }
.contact-form { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.contact-form::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--cyan), var(--plum)); }
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
label { font-weight: 800; font-size: 0.94rem; color: #294650; }
input, select, textarea { width: 100%; border: 1px solid #cfdfe6; border-radius: 8px; padding: 13px 14px; font: inherit; color: var(--ink); background: white; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10, 111, 183, 0.12); }
small { color: var(--muted); }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-status { min-height: 24px; margin: 16px 0 0; font-weight: 800; color: var(--blue-dark); }
.site-footer { background: #061820; color: white; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.75fr 1fr; gap: 42px; }
.footer-brand img { width: 260px; background: white; padding: 8px; border-radius: 8px; }
.site-footer p { color: #b7c7cd; max-width: 460px; }
.site-footer h3 { font-size: 1rem; color: #dff5fb; }
.site-footer a, .site-footer span { display: block; color: #b7c7cd; margin-top: 10px; }
.footer-bottom { width: min(1120px, calc(100% - 40px)); margin: 42px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); color: #9db0b7; font-size: 0.9rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .brand img { width: 210px; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 78px; display: none; flex-direction: column; align-items: flex-start; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .about-grid, .why, .contact { grid-template-columns: 1fr; }
  .hero-assurance { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .metrics, .card-grid, .testimonial-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { margin-top: 0; }
  .metrics div:nth-child(2) { border-right: 0; }
  .metrics div { border-bottom: 1px solid var(--line); }
  .cta-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .nav-shell, .hero-grid, .about-grid, .why, .contact, .footer-grid, .metrics, .card-grid, .testimonial-grid, .industry-grid, .section-heading, .cta-band, .footer-bottom { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 68px 0; }
  .hero { padding-top: 58px; padding-bottom: 54px; }
  .brand img { width: 175px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-assurance { grid-template-columns: 1fr; }
  .metrics, .card-grid, .testimonial-grid, .industry-grid, .footer-grid { grid-template-columns: 1fr; }
  .metrics div { border-right: 0; }
  .availability-card { position: static; width: 100%; margin-top: 14px; }
  .media-badge { left: 20px; top: 20px; max-width: calc(100% - 40px); }
  .hero-media img, .about-photo img, .why-media img { aspect-ratio: 1 / 0.92; }
  .contact-form, .service-card, .testimonial-card, .cta-band { padding: 22px; }
}
