
:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #eef3f6;
  --text: #2f3439;
  --muted: #737b82;
  --line: #dbe2e7;
  --blue: #65b8e8;
  --blue-dark: #328fca;
  --blue-soft: #dff2fc;
  --shadow: 0 24px 70px rgba(59, 78, 92, 0.11);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: #111;
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 251, 0.82);
  border-bottom: 1px solid rgba(219, 226, 231, 0.75);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 188px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  text-decoration: none;
  color: #5f686f;
  transition: color 0.2s ease;
}

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

.main-nav .nav-cta {
  padding: 10px 18px;
  color: #fff;
  background: var(--text);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(59, 78, 92, 0.08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: 92px 0 104px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(101, 184, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 184, 232, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.4) 68%, transparent 100%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-orb-one {
  width: 440px;
  height: 440px;
  top: 40px;
  right: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(101, 184, 232, 0.34), rgba(101, 184, 232, 0.03) 68%);
}

.hero-orb-two {
  width: 280px;
  height: 280px;
  bottom: 10px;
  left: -100px;
  background: radial-gradient(circle at 70% 50%, rgba(162, 171, 178, 0.23), rgba(162, 171, 178, 0.02) 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 78px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-card h2,
.contact-card h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 650;
}

.hero-text {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--text);
  box-shadow: 0 16px 34px rgba(47, 52, 57, 0.18);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(47, 52, 57, 0.24);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-meta span {
  padding: 7px 11px;
  border: 1px solid rgba(101, 184, 232, 0.28);
  border-radius: 999px;
  color: #68737a;
  background: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 650;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 248, 0.92));
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -65px;
  border-radius: 50%;
  background: rgba(101, 184, 232, 0.17);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  color: #727b82;
  font-size: 13px;
  font-weight: 650;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(101, 184, 232, 0.15);
}

.panel-content {
  position: relative;
  z-index: 1;
  padding: 34px 34px 38px;
}

.panel-label {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel-content h2 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.panel-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.panel-list div {
  display: grid;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.panel-list strong {
  font-size: 15px;
}

.panel-list span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-card h2,
.contact-card h2 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 620;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 184, 232, 0.5);
  box-shadow: 0 20px 50px rgba(59, 78, 92, 0.09);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3 {
  margin: 26px 0 12px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #626c73;
  font-size: 14px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.method-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 86px;
  align-items: start;
}

.method-grid .section-heading {
  position: sticky;
  top: 130px;
  margin: 0;
}

.steps {
  display: grid;
}

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid #d5dde2;
}

.step:first-child {
  padding-top: 0;
}

.step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--surface);
  font-size: 15px;
  font-weight: 800;
}

.step h3 {
  margin: 1px 0 7px;
  font-size: 22px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.about-card,
.values {
  border-radius: var(--radius);
}

.about-card {
  padding: 54px;
  color: #f8fbfd;
  background:
    radial-gradient(circle at 90% 5%, rgba(101, 184, 232, 0.35), transparent 28%),
    #30363b;
}

.about-kicker {
  margin: 0 0 16px;
  color: #9ed7f5;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-card h2 {
  color: #fff;
}

.about-card > p:not(.about-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #d8e0e4;
  font-size: 17px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.about-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e9f2f7;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.values article {
  min-height: 210px;
  padding: 30px;
  background: var(--surface);
}

.values h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.values p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.sectors-section {
  padding-top: 22px;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-list span {
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5f6970;
  background: var(--surface);
  font-size: 14px;
  font-weight: 650;
}

.contact-section {
  padding: 40px 0 96px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 58px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(101, 184, 232, 0.4), transparent 32%),
    #2e3439;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: #fff;
}

.contact-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d9e1e5;
  font-size: 17px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.button-light {
  color: var(--text);
  background: #fff;
}

.text-link {
  color: #99d7f6;
  font-weight: 700;
  text-decoration: none;
}

.contact-actions span {
  color: #b9c3c9;
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #f2f5f7;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #687178;
  font-size: 13px;
}

.footer-wrap > div:first-child {
  display: grid;
  gap: 2px;
}

.footer-wrap strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.legal-page {
  min-height: 100vh;
  padding: 70px 0 100px;
}

.legal-card {
  max-width: 850px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.04em;
}

.legal-card h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-card p {
  color: var(--muted);
}

.placeholder {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 6px;
  color: #855800;
  background: #fff2c8;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .method-grid,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .method-grid {
    gap: 50px;
  }

  .hero-panel {
    max-width: 700px;
  }

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

  .method-grid .section-heading {
    position: static;
  }

  .contact-card {
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .main-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    padding: 72px 0 76px;
  }

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

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .service-card {
    min-height: auto;
  }

  .section {
    padding: 82px 0;
  }

  .about-card,
  .contact-card {
    padding: 34px 26px;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .footer-wrap,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .legal-card {
    padding: 28px 22px;
  }
}
