:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: #e2e8f0;
  --line-soft: rgba(148, 163, 184, 0.25);
  --text: #050e1c;
  --muted: #475569;
  --muted-2: #64748b;
  --accent: #0ea5e9;
  --accent-2: #2563eb;
  --accent-soft: #e0f2fe;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::selection {
  background: var(--accent);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 26px clamp(18px, 4vw, 64px);
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 14% 8%, rgba(14, 165, 233, 0.13), transparent 31%),
    radial-gradient(circle at 86% 22%, rgba(37, 99, 235, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 12%, black, transparent 68%);
}

.decor {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.75;
}

.decor-one {
  width: 340px;
  height: 340px;
  right: -130px;
  top: 140px;
  background: rgba(186, 230, 253, 0.55);
}

.decor-two {
  width: 430px;
  height: 430px;
  left: -190px;
  bottom: 70px;
  background: rgba(219, 234, 254, 0.62);
}

.site-header,
.site-footer,
.hero,
.services,
.contact {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(370px, 66vw);
}

.brand img {
  display: block;
  width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.quick-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.quick-nav a {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  background: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-nav a:hover {
  transform: translateY(-2px);
  background: var(--accent-soft);
  border-color: rgba(14, 165, 233, 0.34);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 210px);
  padding: clamp(58px, 7vw, 94px) 0;
}

.status-badge,
.eyebrow,
.section-heading p,
.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #0369a1;
  letter-spacing: 0.04em;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-badge {
  padding: 10px 14px;
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 999px;
  background: rgba(224, 242, 254, 0.8);
  box-shadow: inset 0 0 22px rgba(14, 165, 233, 0.05);
}

.status-badge span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(14, 165, 233, 0.13), 0 0 28px rgba(14, 165, 233, 0.58);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 24px;
  max-width: 830px;
  font-size: clamp(50px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 950;
  text-wrap: balance;
  color: var(--text);
}

.lead {
  margin-top: 28px;
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 45px rgba(14, 165, 233, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.hero-card,
.contact-panel,
.service-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 24px;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -62px;
  top: -62px;
  border-radius: 100%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.20), transparent 68%);
}

.hero-card h2 {
  position: relative;
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-card p {
  position: relative;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.mini-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.mini-list span {
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #ffffff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 850;
}

.services {
  padding: 18px 0 48px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.section-heading h2,
.contact h2 {
  max-width: 720px;
  margin-top: 10px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px;
  min-height: 245px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.36);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(14, 165, 233, 0.12);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 950;
  letter-spacing: -0.04em;
}

.service-card h3 {
  margin-top: 22px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px 0 58px;
}

.contact-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 530px;
}

.contact-panel {
  padding: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
}

.contact-row + .contact-row {
  border-top: 1px solid var(--line-soft);
}

.contact-row span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-row strong,
.contact-row a {
  color: #0f172a;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  font-weight: 850;
  word-break: break-word;
}

.contact-row a:hover {
  color: var(--accent);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 6px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    max-width: 100%;
  }

  .quick-nav {
    width: 100%;
  }

  .quick-nav a {
    flex: 1;
    text-align: center;
  }

  .hero {
    padding: 44px 0;
  }

  h1 {
    letter-spacing: -0.06em;
  }

  .hero-actions .button {
    width: 100%;
  }

  .mini-list,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
  }
}
