:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --surface: #ffffff;
  --surface-strong: #eef4f6;
  --text: #12202e;
  --muted: #5b6b7c;
  --line: rgba(18, 32, 46, .1);
  --brand: #0d9f8c;
  --brand-soft: #12b5a0;
  --brand-deep: #0a7d6e;
  --accent: #c9852a;
  --ok: #1f9d5a;
  --danger: #dc3d3d;
  --shadow: 0 18px 40px rgba(18, 40, 60, .08);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
  --font-display: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Avenir Next", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 45% at 10% -5%, rgba(13, 159, 140, .1), transparent 50%),
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(56, 140, 200, .07), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f7fafb 45%, #ffffff 100%);
  line-height: 1.7;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: var(--text);
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

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

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 58px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(13, 159, 140, .28);
  background: rgba(13, 159, 140, .08);
  border-radius: 6px;
  color: #0a7d6e;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--brand);
}

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

h1,
h2,
h3,
.brand,
.btn,
.faq-button,
.kpi strong,
.price {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.75rem, 6.2vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  font-weight: 700;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  font-weight: 600;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  max-width: 760px;
  line-height: 1.65;
  letter-spacing: .005em;
}

.text-gradient {
  background: linear-gradient(105deg, #0a7d6e 0%, #0d9f8c 40%, #2a7bbf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s ease, background .3s ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 1.08rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: #041018;
  font-weight: 800;
  font-size: .85rem;
  transition: transform .35s var(--ease-out);
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4d5f72;
  font-size: .94rem;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease-out);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  transition: background .2s ease, border-color .2s ease;
}

.menu-toggle:hover {
  border-color: rgba(13, 159, 140, .4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -.01em;
  transition:
    transform .25s var(--ease-out),
    border-color .2s ease,
    background .2s ease,
    box-shadow .25s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-deep));
  box-shadow: 0 10px 28px rgba(13, 159, 140, .22);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(13, 159, 140, .3);
}

.btn-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(13, 159, 140, .45);
  background: rgba(13, 159, 140, .06);
}

.btn-small {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 9px;
  font-size: .92rem;
}

.hero {
  padding: 108px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 32, 46, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 46, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, black, transparent);
  pointer-events: none;
  opacity: .9;
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  right: -200px;
  top: 40px;
  border: 1px solid rgba(13, 159, 140, .18);
  pointer-events: none;
  animation: ring-breathe 8s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.17fr .83fr;
  align-items: center;
  gap: 54px;
}

.hero-copy .lead {
  max-width: 720px;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #66788a;
  font-size: .9rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--ok);
  flex-shrink: 0;
}

.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px;
  background: #0b1220;
  box-shadow: var(--shadow);
  overflow: hidden;
  align-self: center;
}

.hero-panel::before {
  display: none;
}

.hero-media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.window-bar {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.window-dot:nth-child(1) {
  background: #ff5f57;
}

.window-dot:nth-child(2) {
  background: #febc2e;
}

.window-dot:nth-child(3) {
  background: #28c840;
}

.code-card,
.mini-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(18, 32, 46, .1);
  background: rgba(255, 255, 255, .92);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(18, 40, 60, .08);
}

.code-card {
  padding: 22px;
  min-height: 260px;
}

.code-line {
  height: 11px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.code-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.8s ease-in-out infinite;
}

.code-line.a {
  width: 74%;
  background: linear-gradient(90deg, rgba(61, 222, 199, .85), rgba(61, 222, 199, .12));
  animation: line-pulse 3.2s ease-in-out infinite;
}

.code-line.b {
  width: 88%;
}

.code-line.b::after {
  animation-delay: .35s;
}

.code-line.c {
  width: 60%;
  background: linear-gradient(90deg, rgba(126, 200, 255, .65), rgba(126, 200, 255, .1));
}

.code-line.c::after {
  animation-delay: .7s;
}

.code-line.d {
  width: 92%;
}

.code-line.d::after {
  animation-delay: 1.05s;
}

.code-line.e {
  width: 46%;
  background: linear-gradient(90deg, rgba(94, 207, 142, .7), rgba(94, 207, 142, .08));
}

.code-line.e::after {
  animation-delay: 1.4s;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  padding: 16px;
  transition: transform .35s var(--ease-out), border-color .25s ease;
  animation: mini-in .7s var(--ease-out) both;
}

.mini-card:nth-child(1) {
  animation-delay: .15s;
}

.mini-card:nth-child(2) {
  animation-delay: .28s;
}

.mini-card:nth-child(3) {
  animation-delay: .41s;
}

.mini-card:nth-child(4) {
  animation-delay: .54s;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 222, 199, .35);
}

.mini-card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.mini-card span {
  color: var(--muted);
  font-size: .88rem;
}

.kpi-strip {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.kpi {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.kpi:last-child {
  border-right: 0;
}

.kpi strong {
  display: block;
  font-size: 1.28rem;
  color: var(--text);
}

.kpi span {
  color: var(--muted);
  font-size: .9rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 640px;
  margin-bottom: 4px;
}

.card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s var(--ease-out), border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.card:hover {
  border-color: rgba(13, 159, 140, .35);
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 18px;
  background: rgba(13, 159, 140, .1);
  border: 1px solid rgba(13, 159, 140, .2);
  font-size: 1.1rem;
  color: var(--brand-deep);
  transition: transform .3s var(--ease-out);
}

.card:hover .icon-box {
  transform: scale(1.06);
}

.card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #516274;
}

.card li+li {
  margin-top: 8px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 7px 11px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #3f5264;
  font-size: .88rem;
  transition: border-color .2s ease, color .2s ease;
}

.tag:hover {
  border-color: rgba(13, 159, 140, .4);
  color: var(--brand-deep);
}

.split-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  background: linear-gradient(135deg, #f3faf9, #ffffff);
}

.split-panel>div {
  padding: 42px;
}

.split-panel .visual {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  background: white;
  display: flex;
  align-items: center;
}

.visual-media {
  display: block;
  width: 100%;
  height: auto;
}

.media-frame {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1220;
  box-shadow: var(--shadow);
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero-media {
  margin: 36px 0 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0b1220;
}

.page-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  animation: orbit-spin 28s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px dashed rgba(61, 222, 199, .22);
  border-radius: 50%;
}

.orbit::after {
  inset: 72px;
  background: radial-gradient(circle, rgba(61, 222, 199, .22), rgba(20, 60, 70, .2));
  border-style: solid;
  animation: core-pulse 4s ease-in-out infinite;
}

.float-pill {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  border-radius: 8px;
  font-size: .82rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(18, 40, 60, .1);
  animation: float-y 5s ease-in-out infinite;
}

.p1 {
  top: 18%;
  left: 9%;
  animation-delay: 0s;
}

.p2 {
  top: 23%;
  right: 8%;
  animation-delay: .8s;
}

.p3 {
  bottom: 18%;
  left: 12%;
  animation-delay: 1.6s;
}

.p4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 2.2s;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 68px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(13, 159, 140, .1);
  border: 1px solid rgba(13, 159, 140, .25);
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .86rem;
}

.app-showcase {
  border: 1px solid rgba(13, 159, 140, .22);
  background:
    radial-gradient(circle at 88% 12%, rgba(13, 159, 140, .1), transparent 30%),
    linear-gradient(145deg, #f4fbfa, #ffffff);
  border-radius: 18px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.app-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(31, 157, 90, .1);
  border: 1px solid rgba(31, 157, 90, .22);
  color: #176b3d;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.map-mock {
  position: relative;
  min-height: 330px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    #eef3f6;
  background-size: 34px 34px;
  overflow: hidden;
}

.map-road {
  position: absolute;
  width: 130%;
  height: 26px;
  background: rgba(255, 255, 255, .05);
  transform: rotate(-23deg);
  left: -15%;
  top: 45%;
  border: 1px solid rgba(255, 255, 255, .04);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--brand);
  animation: pin-pulse 2.4s ease-in-out infinite;
}

.pin::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  top: 6px;
  left: 6px;
}

.pin1 {
  left: 22%;
  top: 34%;
  animation-delay: 0s;
}

.pin2 {
  left: 62%;
  top: 24%;
  animation-delay: .4s;
}

.pin3 {
  left: 70%;
  top: 63%;
  animation-delay: .8s;
}

.pin4 {
  left: 38%;
  top: 69%;
  animation-delay: 1.2s;
}

.faq {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  width: 100%;
  padding: 22px 36px 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--brand);
  font-size: 1.2rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 40px 20px 0;
  margin: 0;
}

.cta {
  border-radius: 18px;
  padding: 54px;
  border: 1px solid rgba(13, 159, 140, .22);
  background:
    radial-gradient(circle at 18% 20%, rgba(13, 159, 140, .1), transparent 32%),
    #f7fbfb;
  text-align: center;
}

.cta p {
  max-width: 720px;
  margin: 0 auto 26px;
}

.cta .hero-actions {
  justify-content: center;
  margin-top: 0;
}

.cta-with-media {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  text-align: left;
  padding: 28px;
}

.cta-with-media p {
  margin: 0 0 22px;
}

.cta-with-media .hero-actions {
  justify-content: flex-start;
}

.cta-media {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  background: #0b1220;
}

.section-media {
  margin: 0 0 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0b1220;
}

.section-media img {
  display: block;
  width: 100%;
  height: auto;
}
.hire-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 42px;
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, .07), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(13, 159, 140, .08), transparent 40%),
    #ffffff;
  box-shadow: var(--shadow);
}
.hire-panel .section-head {
  margin-bottom: 28px;
}
.hire-panel .section-head h2 {
  max-width: 16ch;
}
.hire-benefits {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hire-benefits li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .8);
}
.hire-benefits li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #2563eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.hire-benefits strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}
.hire-benefits span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}
.hire-modes {
  margin-top: 0;
}
.hire-actions {
  margin-top: 28px;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.sitemap-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.sitemap-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-top: 12px;
  margin-bottom: 18px;
}
.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-list li + li {
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.sitemap-list a {
  display: grid;
  gap: 4px;
  padding: 14px 4px;
  transition: color .2s ease, padding-left .2s ease;
}
.sitemap-list a:hover {
  padding-left: 8px;
  color: var(--brand-deep);
}
.sitemap-list strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}
.sitemap-list span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.sitemap-list a:hover strong {
  color: var(--brand-deep);
}

.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.media-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #0b1220;
}

.media-card>div {
  padding: 22px;
}

.media-card h3 {
  margin-top: 10px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand-deep);
  font-weight: 700;
}

.text-link:hover {
  color: var(--text);
}

.stack-cards {
  display: grid;
  gap: 14px;
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.page-hero {
  padding: 92px 0 58px;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 32, 46, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 46, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 980px;
}

.breadcrumb {
  color: #6a7c8e;
  font-size: .9rem;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #3f5264;
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: var(--brand-deep);
}

.service-detail {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 42px;
  align-items: start;
}

.service-nav {
  position: sticky;
  top: 102px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #ffffff;
}

.service-nav a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: #4d5f72;
  transition: color .2s ease, background .2s ease;
}

.service-nav a:hover {
  color: var(--text);
  background: rgba(13, 159, 140, .08);
}

.service-block {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 105px;
}

.service-block:last-child {
  border-bottom: 0;
}

.legal-doc {
  max-width: 760px;
}
.legal-doc h2 {
  font-size: 1.45rem;
  margin-top: 36px;
}
.legal-doc p,
.legal-doc li {
  color: var(--muted);
}
.legal-doc a {
  color: var(--brand-deep);
  text-decoration: underline;
}

.email-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--brand-deep);
  border-bottom: 2px solid rgba(13, 159, 140, .35);
  transition: color .2s ease, border-color .2s ease;
}

.email-link:hover {
  color: var(--text);
  border-color: var(--brand);
}

.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  background: #ffffff;
}

.contact-point {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.contact-point .icon-box {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

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

label {
  font-size: .88rem;
  font-weight: 700;
  color: #2d3f50;
}

input,
textarea,
select {
  width: 100%;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(18, 32, 46, .14);
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(61, 222, 199, .55);
  box-shadow: 0 0 0 3px rgba(61, 222, 199, .1);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: .82rem;
  margin: 14px 0 0;
}

.notice {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(201, 133, 42, .08);
  border: 1px solid rgba(201, 133, 42, .2);
  color: #7a4f12;
  font-size: .88rem;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: #ffffff;
  transition: transform .3s var(--ease-out), border-color .25s ease, box-shadow .25s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: rgba(13, 159, 140, .4);
  background: linear-gradient(160deg, rgba(13, 159, 140, .08), #ffffff);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
}

.price small {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: #516274;
  margin: 9px 0;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--ok);
}

.site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr .9fr;
  gap: 30px;
}

.footer-brand p {
  max-width: 420px;
}

.footer-col h3 {
  font-size: .95rem;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #5b6b7c;
  padding: 5px 0;
  font-size: .92rem;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-col a:hover {
  color: var(--text);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  color: #6a7c8e;
  font-size: .82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes shimmer {

  0%,
  40% {
    transform: translateX(-100%);
  }

  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes line-pulse {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.15);
  }
}

@keyframes panel-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes mini-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes core-pulse {

  0%,
  100% {
    opacity: .85;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes pin-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(61, 222, 199, .45);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(61, 222, 199, 0);
  }
}

@keyframes ring-breathe {

  0%,
  100% {
    opacity: .5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

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

  .hero-panel {
    animation: none;
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .split-panel,
  .app-showcase,
  .contact-layout,
  .cta-with-media,
  .media-pair,
  .contact-simple-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .hire-benefits {
    grid-template-columns: 1fr;
  }

  .hire-panel {
    padding: 28px 22px;
  }

  .split-panel .visual {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .service-nav {
    position: static;
    display: flex;
    gap: 8px;
    overflow: auto;
    white-space: nowrap;
  }
}

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

  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 74px 0 58px;
  }

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .kpi-grid,
  .price-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .kpi {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .kpi:last-child {
    border-bottom: 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel,
  .app-showcase,
  .cta,
  .split-panel>div,
  .contact-panel,
  .form-panel {
    padding: 24px;
  }

  .cta-with-media {
    padding: 20px;
  }

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

  .page-hero {
    padding: 70px 0 42px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .field.full {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}