* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink-900: #0f172a;
  --ink-700: #1f2937;
  --ink-500: #475569;
  --accent: #38bdf8;
  --accent-strong: #2563eb;
  --highlight: #22c55e;
  --surface: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.7);
  --glow: rgba(56, 189, 248, 0.2);
}

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #f8fafc 45%, #fff);
  color: var(--ink-700);
  min-height: 100vh;
  padding: 32px 20px 48px;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.topbar-links a {
  text-decoration: none;
  color: var(--ink-500);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.topbar-links a:hover {
  color: var(--accent-strong);
}

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

.brand img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.15));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-900);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  background: var(--surface-muted);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tagline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-700);
}

.areas {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.areas li {
  background: var(--surface);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-note {
  background: linear-gradient(120deg, #e0f2fe, #dbeafe);
  color: var(--ink-900);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-media {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.15)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: #ffffff;
  display: grid;
  gap: 12px;
}

.hero-overlay h2 {
  font-size: 22px;
  font-weight: 600;
}

.hero-overlay p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 280px;
}

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

.showcase-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  grid-template-columns: minmax(0, 1fr);
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.showcase-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.showcase-card > div {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}

.showcase-card h3 {
  font-size: 18px;
  color: var(--ink-900);
}

.showcase-card p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
}

.showcase-card-note {
  font-size: 13px;
  color: var(--ink-500);
  font-style: italic;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.section-block {
  padding: 40px 36px;
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.section-block-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-block-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 16px;
}

.section-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 14px;
}

.section-block-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 20px 0 12px;
}

.section-block-list {
  margin: 0 0 16px;
  padding-left: 1.25em;
  color: var(--ink-700);
  line-height: 1.65;
}

.section-block-list li {
  margin-bottom: 8px;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  font-weight: 400;
}

.section-block-note {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 0;
}

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

  .service-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 64px;
  }

  h1 {
    font-size: 22px;
  }

  .hero {
    padding: 28px;
  }

  .intro {
    font-size: 16px;
  }

  .areas li {
    font-size: 15px;
  }

  .hero-media {
    min-height: 300px;
  }
}
