:root {
  --blue-900: #0b1b3b;
  --blue-800: #12345f;
  --blue-700: #174ea6;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --cyan-500: #22c7ff;
  --cyan-100: #eaf8ff;
  --text: #0f172a;
  --muted: #5e6b82;
  --soft: #f6f9fe;
  --soft-2: #edf4ff;
  --white: #ffffff;
  --line: #dfe8f5;
  --shadow: 0 20px 60px rgba(15, 23, 42, .09);
  --shadow-soft: 0 12px 35px rgba(15, 23, 42, .07);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-600);
}
.skip-link:focus { left: 16px; }

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

.section { padding: 96px 0; position: relative; }
.section-heading { max-width: 660px; }
.section-heading.centered { text-align: center; margin: 0 auto 52px; }
.section-heading h2,
.hero-copy h1,
.contact-info h2 {
  margin: 0;
  letter-spacing: -.055em;
  line-height: 1.04;
  color: var(--blue-900);
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.section-heading p,
.hero-copy p,
.contact-info p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue-500);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
}
.section-tag::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.83);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 232, 245, .75);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(15, 23, 42, .06); }
.header-grid {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 150px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #25344d;
  font-weight: 700;
  font-size: .94rem;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: var(--soft-2); color: var(--blue-600); }
.menu-toggle {
  display: none;
  border: 0;
  background: var(--soft-2);
  border-radius: 14px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  padding: 12px;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--blue-900); border-radius: 999px; }

.hero {
  padding-top: 86px;
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 199, 255, .22), transparent 28rem),
    radial-gradient(circle at 10% 0%, rgba(59, 130, 246, .13), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .72;
  background-image:
    linear-gradient(rgba(37, 99, 235, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2.65rem, 6vw, 5.3rem); max-width: 850px; }
.hero-copy p { max-width: 680px; margin: 22px 0 0; font-size: clamp(1.05rem, 2vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-500), var(--blue-800));
  box-shadow: 0 16px 36px rgba(37, 99, 235, .24);
}
.btn-secondary {
  color: var(--blue-800);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: rgba(37, 99, 235, .3); box-shadow: var(--shadow-soft); }

.hero-dashboard {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(223, 232, 245, .9);
  border-radius: 36px;
  padding: 26px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 50% 20%, rgba(34, 199, 255, .16), transparent 32%), transparent;
  pointer-events: none;
}
.dashboard-top,
.dashboard-grid,
.dashboard-main { position: relative; z-index: 1; }
.dashboard-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.dashboard-top small { grid-column: 2; color: #66758d; }
.pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #12c48b;
  box-shadow: 0 0 0 8px rgba(18, 196, 139, .13);
}
.dashboard-main {
  min-height: 270px;
  display: grid;
  place-items: center;
}
.ring-card {
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 42%, transparent 43%),
    conic-gradient(from 90deg, var(--blue-500), var(--cyan-500), var(--blue-800), var(--blue-500));
  box-shadow: 0 20px 50px rgba(37, 99, 235, .22);
}
.ring-card span {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-800);
  font-size: 2.2rem;
  font-weight: 950;
  border: 1px solid var(--line);
}
.dashboard-lines {
  position: absolute;
  inset: 86px 46px 86px;
  z-index: -1;
}
.dashboard-lines span {
  position: absolute;
  height: 2px;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.28), transparent);
}
.dashboard-lines span:nth-child(1) { top: 22%; left: 0; transform: rotate(16deg); }
.dashboard-lines span:nth-child(2) { top: 22%; right: 0; transform: rotate(-16deg); }
.dashboard-lines span:nth-child(3) { bottom: 20%; left: 0; transform: rotate(-16deg); }
.dashboard-lines span:nth-child(4) { bottom: 20%; right: 0; transform: rotate(16deg); }
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.dashboard-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}
.dashboard-grid small { display: block; color: var(--muted); margin-bottom: 4px; }
.dashboard-grid strong { color: var(--blue-900); }

.stats-bar {
  position: relative;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stats-bar div {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.stats-bar strong { display: block; color: var(--blue-700); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1; letter-spacing: -.05em; }
.stats-bar span { display: block; margin-top: 8px; color: var(--muted); font-weight: 600; }

.two-columns {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: start;
}
.two-columns.reversed { grid-template-columns: 1.05fr .95fr; align-items: center; }
.content-card,
.feature-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.content-card { padding: 34px; color: var(--muted); font-size: 1.04rem; }
.content-card p:first-child { margin-top: 0; }
.content-card p:last-child { margin-bottom: 0; }

.services { background: var(--soft); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  min-height: 245px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(59,130,246,.28); }
.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf5ff, #dff9ff);
  color: var(--blue-600);
  font-weight: 900;
  font-size: 1.35rem;
}
.service-card h3 { margin: 0 0 10px; color: var(--blue-900); font-size: 1.25rem; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); }

.feature-panel { padding: 12px; }
.feature-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--soft-2);
  color: var(--blue-600);
  font-weight: 900;
}
.feature-row strong { display: block; color: var(--blue-900); font-size: 1.08rem; margin-bottom: 4px; }
.feature-row p { margin: 0; color: var(--muted); }

.contact-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(59, 130, 246, .13), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(34, 199, 255, .12), transparent 28rem),
    #f7f9fc;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.contact-info p { max-width: 565px; margin: 18px 0 28px; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.contact-card {
  background: rgba(255,255,255,.9);
  border: 1px solid #e7ecf4;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(15, 23, 42, .08); border-color: rgba(59,130,246,.28); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f0ff, #dff9ff);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 900;
  flex-shrink: 0;
}
.contact-card h3 { font-size: .95rem; color: var(--blue-900); margin: 0 0 5px; }
.contact-card a,
.contact-card span { font-size: .95rem; color: #4b5b76; text-decoration: none; word-break: break-word; }
.contact-card a:hover { color: var(--blue-600); }
.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: .92rem;
  color: #66758d;
  margin-top: 8px;
}
.contact-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
}
.contact-form-box {
  background: rgba(255,255,255,.92);
  border: 1px solid #e8edf5;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.contact-form { display: flex; flex-direction: column; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d7dfeb;
  border-radius: 16px;
  padding: 13px 15px;
  font-size: .98rem;
  color: #1f2937;
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(59,130,246,.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  border: none;
  border-radius: 18px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-800));
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(37, 99, 235, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 35px rgba(37, 99, 235, .28); }
.form-note { color: var(--muted); text-align: center; }

.site-footer {
  padding: 54px 0 26px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .75fr .9fr;
  gap: 30px;
  align-items: start;
}
.footer-grid img { width: 132px; margin-bottom: 14px; }
.footer-grid p { margin: 0; max-width: 380px; color: var(--muted); }
.footer-grid strong { display: block; margin-bottom: 10px; color: var(--blue-900); }
.footer-grid a,
.footer-grid span { display: block; color: var(--muted); margin: 6px 0; }
.footer-grid a:hover { color: var(--blue-600); }
.footer-bottom { padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--line); color: #66758d; font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .hero-grid,
  .two-columns,
  .two-columns.reversed,
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero-dashboard { min-height: 460px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .header-grid { min-height: 74px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .hero { padding-top: 62px; }
  .stats-bar,
  .cards-grid,
  .contact-cards,
  .footer-grid,
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .contact-form-box { padding: 22px; border-radius: 24px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand img { width: 128px; }
  .hero-copy h1 { font-size: 2.35rem; }
  .hero-dashboard { min-height: auto; padding: 18px; border-radius: 26px; }
  .dashboard-main { min-height: 220px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .stats-bar div, .service-card, .content-card { padding: 22px; }
}

.mission-compact {
  padding: 54px 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #f4f8fd 100%);
}

.mission-compact-card {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 0 18px;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
}

.mission-compact-card::after {
  display: none;
}

.mission-compact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #3b82f6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.mission-mini-line {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #24d8cf);
}

.mission-compact-card p {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 10px 90px;
  color: #071832;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-align: center;
}

.mission-compact-card p::before,
.mission-compact-card p::after {
  position: absolute;
  font-family: Georgia, serif;
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(59, 130, 246, 0.16);
}

.mission-compact-card p::before {
  content: "“";
  left: 0;
  top: -18px;
}

.mission-compact-card p::after {
  content: "”";
  right: 10px;
  bottom: -55px;
}

.mission-compact-card small {
  display: inline-block;
  margin-top: 24px;
  margin-left: 0;
  color: #64748b;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .mission-compact {
    padding: 42px 0;
  }

  
  .mission-compact-card p {
  padding: 8px 38px;
  font-size: 1.65rem;
  line-height: 1.25;
  text-align: center;
}

  .mission-compact-card p::before,
  .mission-compact-card p::after {
    font-size: 4.4rem;
  }

  .mission-compact-card p::before {
    left: -4px;
    top: -14px;
  }

  .mission-compact-card p::after {
    right: -2px;
    bottom: -38px;
  }

  .mission-compact-card small {
  margin-left: 0;
  font-size: 0.64rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
}