:root {
  --bg: #f5f9fc;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --text: #071827;
  --muted: #536578;
  --cyan: #13d9c7;
  --blue: #2f7cff;
  --navy: #061a33;
  --line: rgba(12, 28, 45, 0.1);
  --shadow: 0 24px 70px rgba(16, 35, 55, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(19, 217, 199, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(47, 124, 255, 0.16), transparent 32rem),
    linear-gradient(180deg, #fbfdff 0%, #eef5fb 55%, #f7fbff 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
}

.logo img {
  width: 230px;
  max-width: 54vw;
  display: block;
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--navy);
}

.nav-cta {
  color: var(--navy) !important;
  border: 1px solid rgba(19, 217, 199, 0.45);
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(19, 217, 199, 0.12);
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  padding: 78px 6vw 70px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  color: #0aaea3;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 18px;
}

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

h1 {
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
  color: var(--navy);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-content p {
  max-width: 650px;
  font-size: 1.25rem;
}

.strapline {
  display: inline-flex;
  border: 1px solid rgba(19, 217, 199, 0.45);
  background: rgba(19, 217, 199, 0.11);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #03101f;
  box-shadow: 0 18px 45px rgba(19, 217, 199, 0.25);
}

.btn.secondary {
  border: 1px solid var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-image-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #071827;
  box-shadow: var(--shadow);
}

.hero-image-button {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  width: 100%;
  cursor: zoom-in;
  position: relative;
  display: block;
}

.hero-image-button img {
  width: 100%;
  display: block;
}

.hero-image-button span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border: 1px solid rgba(19, 217, 199, 0.45);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.86rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.status-card,
.service-card,
.offer-card,
.process-grid div,
.contact-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.status-card {
  min-height: 172px;
}

.status-card.active {
  border-color: rgba(19, 217, 199, 0.45);
  box-shadow:
    0 24px 70px rgba(16, 35, 55, 0.12),
    0 0 0 6px rgba(19, 217, 199, 0.07);
}

.status-card span,
.process-grid span {
  color: #0aaea3;
  font-weight: 950;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.status-card strong {
  display: block;
  font-size: 1.28rem;
  margin: 14px 0 8px;
  color: var(--navy);
}

.status-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3, 12, 24, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.image-modal.is-open {
  display: flex;
}

.image-modal img {
  max-width: min(1320px, 94vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

.modal-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.problem,
.services,
.sectors,
.offer,
.process,
.contact {
  padding: 84px 6vw;
  position: relative;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 40px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.problem-grid div,
.sector-list span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(16, 35, 55, 0.07);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 217, 199, 0.5);
  box-shadow:
    0 24px 70px rgba(16, 35, 55, 0.14),
    0 0 0 6px rgba(19, 217, 199, 0.06);
}

.service-card p {
  margin-bottom: 0;
}

.sectors {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.offer-card {
  max-width: 920px;
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(19, 217, 199, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.76));
}

.offer-card ul {
  display: grid;
  gap: 12px;
  color: var(--muted);
  margin: 28px 0;
  padding-left: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.offer-card li::marker {
  color: #0aaea3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid div p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  align-items: center;
}

.contact-card p {
  margin-bottom: 5px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0aaea3;
  font-weight: 900;
}

.contact-card a {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-card a:hover {
  color: #0aaea3;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--navy);
  font-weight: 900;
}

.site-footer a:hover {
  color: #0aaea3;
}

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

  h1 {
    max-width: 900px;
  }
}

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

  .card-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .main-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-cards,
  .card-grid,
  .process-grid,
  .problem-grid,
  .sector-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .problem,
  .services,
  .sectors,
  .offer,
  .process,
  .contact,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .logo img {
    width: 210px;
  }

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

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.6rem);
  }

  .strapline {
    font-size: 0.82rem;
    padding: 9px 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-image-button span {
    right: 12px;
    bottom: 12px;
    font-size: 0.74rem;
  }

  .image-modal {
    padding: 18px;
  }

  .image-modal img {
    border-radius: 18px;
  }

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