:root {
  --bg: #f6f8fc;
  --bg-soft: #eef3fb;
  --panel: #ffffff;
  --panel-strong: #0f1728;
  --panel-border: #d7e2f0;
  --text: #102033;
  --muted: #5d6b7f;
  --accent: #0f7bff;
  --accent-strong: #0a4fc9;
  --accent-soft: #e9f2ff;
  --shadow: 0 18px 48px rgba(15, 35, 68, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 35, 68, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

svg {
  width: 100%;
  height: 100%;
}

svg path,
svg rect,
svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 104px 24px 72px;
  background:
    radial-gradient(circle at top right, rgba(15, 123, 255, 0.08), transparent 24%),
    radial-gradient(circle at left 30%, rgba(12, 79, 201, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, var(--bg-soft) 100%);
}

.navbar,
.hero,
.section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: calc(100% - 48px);
  padding: 12px 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(215, 226, 240, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(15, 35, 68, 0.08);
  backdrop-filter: blur(18px);
}

.navbar__brand,
.navbar__nav,
.navbar__cta {
  display: inline-flex;
  align-items: center;
}

.navbar__toggle,
.navbar__cta--mobile {
  display: none;
}

.navbar__brand {
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.navbar__brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.navbar__nav {
  gap: 6px;
}

.navbar__nav a,
.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #41536b;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.navbar__nav a:hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.navbar__cta,
.button--primary {
  border: 1px solid rgba(15, 123, 255, 0.28);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 123, 255, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 42px 0 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
}

.hero h1,
.section__heading h2 {
  margin: 0;
  color: var(--text);
  line-height: 1.06;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.section__heading h2 {
  max-width: 780px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.hero__text,
.service-card p,
.value-card p,
.project-card p,
.process-card p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero__text {
  max-width: 660px;
  margin: 24px 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__signals span {
  padding: 10px 14px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: #fff;
  color: #314359;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--secondary {
  border: 1px solid var(--panel-border);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.hero__visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero__frame {
  width: 100%;
  display: grid;
  gap: 18px;
}

.hero__card {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__card--heroimage {
  position: relative;
  min-height: 520px;
}

.hero__card--heroimage > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero__card--heroimage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 33, 0.08), rgba(10, 18, 33, 0.2));
}

.hero__brand-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  width: min(72%, 280px);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(10, 18, 33, 0.14);
  backdrop-filter: blur(16px);
}

.hero__brand-badge img {
  width: 100%;
  display: block;
}

.section {
  padding: 82px 0 0;
}

.section--audience {
  padding-top: 48px;
}

.section--trust {
  padding-top: 68px;
}

.visual-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.visual-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 33, 0.1), rgba(10, 18, 33, 0.76));
}

.visual-card__copy {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.visual-card__copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: #dbe9ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-card__copy p {
  margin: 0;
  max-width: 28rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

.section__heading {
  margin-bottom: 26px;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 123, 255, 0.04), rgba(10, 79, 201, 0.015)),
    #fff;
  box-shadow: var(--shadow);
}

.trust-band__intro p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.trust-stats {
  display: grid;
  gap: 14px;
}

.trust-stat {
  padding: 18px 20px;
  border: 1px solid #e5edf7;
  border-radius: 8px;
  background: #fbfdff;
}

.trust-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.trust-stat span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.card-grid,
.value-grid,
.project-grid,
.segment-grid,
.process-list,
.contact-layout {
  display: grid;
  gap: 18px;
}

.card-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.service-card,
.value-card,
.segment-card,
.project-card,
.process-card,
.contact-panel,
.contact-form {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card,
.value-card,
.segment-card,
.project-card {
  padding: 24px;
}

.service-card h3,
.value-card h3,
.segment-card h3,
.project-card h3,
.process-card h3,
.contact-panel h3 {
  margin: 0 0 12px;
  color: var(--text);
}

.segment-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f4f9ff, #eaf3ff);
  color: var(--accent-strong);
  box-shadow: inset 0 0 0 1px rgba(15, 123, 255, 0.12);
}

.icon-chip--soft {
  background: linear-gradient(180deg, #ffffff, #f4f8fd);
  color: #173c86;
}

.icon-chip--tiny {
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  box-shadow: none;
}

.project-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card__media {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid #e4edf8;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 123, 255, 0.08), rgba(10, 79, 201, 0.03)),
    #f8fbff;
}

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

.process-list {
  grid-template-columns: 1fr;
}

.process-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 24px;
}

.process-card__number {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #123665, #0f7bff);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(15, 123, 255, 0.2);
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 26px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--accent-strong);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #203247;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 123, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(15, 123, 255, 0.12);
}

.field--full {
  grid-column: 1 / -1;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.audience-band,
.footer {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.audience-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding: 28px;
  align-items: center;
}

.audience-band p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
}

.footer img {
  width: min(100%, 250px);
  display: block;
}

.footer p {
  margin: 14px 0 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.footer__links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer__links a {
  color: #27415f;
  font-weight: 700;
  text-decoration: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .card-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-band {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .navbar {
    align-items: stretch;
    flex-direction: column;
  }

  .navbar__brand,
  .navbar__cta--desktop {
    justify-content: center;
  }

  .navbar__toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
  }

  .navbar__toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 999px;
  }

  .navbar__nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 52px;
  }

  .navbar__nav.is-open {
    display: flex;
  }

  .navbar__nav a {
    justify-content: center;
    min-height: 44px;
  }

  .navbar__cta--desktop {
    display: none;
  }

  .navbar__cta--mobile {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
  }

  .hero,
  .value-grid,
  .project-grid,
  .segment-grid,
  .contact-layout,
  .contact-form,
  .footer,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero__visual {
    min-height: auto;
  }

  .footer__links {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 174px 16px 56px;
  }

  .card-grid--services {
    grid-template-columns: 1fr;
  }

  .process-card {
    grid-template-columns: 1fr;
  }

  .hero__actions .button,
  .contact-form button {
    width: 100%;
  }
}
