:root {
  --navy-950: #071229;
  --navy-900: #0b1d3f;
  --navy-800: #122a5c;
  --navy-700: #16337e;
  --navy-600: #1d429e;
  --cyan-700: #0d8fa1;
  --cyan-600: #0fa8be;
  --cyan-500: #17b7c9;
  --cyan-400: #2fc6d6;
  --cyan-300: #6fd9e4;
  --ink: #0e1b33;
  --ink-soft: #3d4a63;
  --muted: #5b6b85;
  --line: #e3e9f2;
  --line-strong: #d5dfee;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --ok: #16a34a;
  --warn: #f59e0b;
  --err: #d64550;
  --wa: #25d366;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head: 'Sora', var(--font-body);
  --font-brand: 'Quicksand', var(--font-body);
  --radius: 20px;
  --shadow-sm: 0 2px 10px rgba(11, 29, 63, 0.06);
  --shadow-md: 0 14px 40px -12px rgba(11, 29, 63, 0.16);
  --shadow-lg: 0 30px 70px -20px rgba(11, 29, 63, 0.28);
  --header-h: 76px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img,
svg {
  display: inline-block;
  vertical-align: middle;
}

a {
  color: var(--navy-700);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

::selection {
  background: var(--cyan-500);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.ic {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy-950);
  line-height: 1.2;
}

.section {
  padding-block: clamp(70px, 9vw, 118px);
}

.section__head {
  max-width: 680px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-top: 12px;
}

.section__desc {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-600);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan-500), var(--navy-600));
}

.eyebrow--cyan {
  color: var(--cyan-300);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 13px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, filter 0.25s ease;
}

.btn .ic {
  width: 1.1em;
  height: 1.1em;
}

.btn--lg {
  padding: 15px 30px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.86rem;
  border-radius: 11px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(22, 51, 126, 0.55);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(22, 51, 126, 0.6);
  filter: brightness(1.12);
}

.btn--cyan {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  color: #04222e;
  font-weight: 700;
  box-shadow: 0 10px 26px -10px rgba(23, 183, 201, 0.65);
}

.btn--cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(23, 183, 201, 0.7);
  filter: brightness(1.06);
}

.btn--ghost {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--navy-800);
}

.btn--ghost:hover {
  border-color: var(--navy-600);
  background: var(--bg-soft);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  --lo: var(--navy-700);
  --li: var(--cyan-500);
  --ln: var(--navy-700);
}

.brand--light .brand__mark {
  --lo: #ffffff;
  --ln: #ffffff;
  --li: var(--cyan-400);
}

.brand__name {
  display: block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.05em;
  color: var(--navy-800);
  line-height: 1;
}

.brand__sub {
  display: block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  margin-top: 4px;
  color: var(--cyan-600);
  line-height: 1;
}

.brand--light .brand__name {
  color: #fff;
}

.brand--light .brand__sub {
  color: var(--cyan-300);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -12px rgba(11, 29, 63, 0.18);
  border-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink-soft);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__link:hover {
  color: var(--navy-700);
  background: rgba(23, 183, 201, 0.08);
}

.nav__link.is-active {
  color: var(--navy-700);
  background: rgba(23, 183, 201, 0.12);
  font-weight: 600;
}

.nav__cta {
  display: none;
}

.header__cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 92px));
  padding-bottom: clamp(64px, 8vw, 112px);
  background: linear-gradient(180deg, #f7fafd 0%, #edf4fb 55%, #ffffff 100%);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 480px;
  height: 480px;
  top: -12%;
  right: -6%;
  background: rgba(23, 183, 201, 0.22);
  animation: orb-float 16s ease-in-out infinite;
}

.hero__orb--2 {
  width: 430px;
  height: 430px;
  bottom: -24%;
  left: -10%;
  background: rgba(22, 51, 126, 0.14);
  animation: orb-float 20s ease-in-out infinite reverse;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy-700);
}

.hero__badge .ic {
  color: var(--cyan-600);
  width: 1em;
  height: 1em;
}

.hero__title {
  margin-top: 22px;
  font-size: clamp(2.35rem, 5.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.07;
}

.grad-text {
  background: linear-gradient(92deg, var(--navy-700) 10%, var(--cyan-500) 55%, var(--cyan-400) 90%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: grad-shift 7s ease-in-out infinite alternate;
}

.hero__desc {
  margin-top: 20px;
  max-width: 545px;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 30px;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.hero__trust .ic {
  color: var(--cyan-600);
  width: 1em;
  height: 1em;
  stroke-width: 2.4;
}

.hero__visual {
  position: relative;
  height: 490px;
}

.hero__wire {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__wire .wire {
  stroke: var(--cyan-500);
  stroke-width: 2;
  stroke-dasharray: 4 9;
  opacity: 0.55;
  animation: dash-move 26s linear infinite;
}

.hero__wire .wire:nth-of-type(2) {
  animation-duration: 34s;
  animation-direction: reverse;
}

.hero__wire .wire-dot {
  fill: var(--cyan-500);
  animation: dot-pulse 2.6s ease-in-out infinite;
}

.hero__wire .wire-dot--alt {
  fill: var(--navy-600);
  animation-delay: 1.2s;
}

.hv-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  outline: 1px solid rgba(11, 29, 63, 0.05);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
}

.hv-card--main {
  top: 13%;
  left: 0;
  width: min(330px, 82%);
  animation: card-float 9s ease-in-out infinite;
}

.hv-card--float1 {
  top: 1%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  animation: card-float 11s ease-in-out 0.6s infinite;
}

.hv-card--float2 {
  bottom: 5%;
  right: 5%;
  width: 235px;
  animation: card-float 13s ease-in-out 1.1s infinite;
}

.hv-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.hv-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
}

.hv-card__title .ic {
  color: var(--cyan-600);
}

.hv-pill--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #0a7f45;
  background: rgba(22, 163, 74, 0.12);
  padding: 4px 11px;
  border-radius: 999px;
}

.hv-pill--live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: dot-pulse 2s ease-in-out infinite;
}

.hv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hv-list li:last-child {
  border-bottom: 0;
}

.hv-list em {
  margin-left: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot--ok {
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.16);
}

.dot--warn {
  background: var(--warn);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.hv-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted);
}

.hv-meter b {
  color: var(--navy-800);
  font-size: 0.82rem;
}

.hv-meter__bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: #e7eef6;
  overflow: hidden;
}

.hv-meter__bar i {
  display: block;
  height: 100%;
  width: var(--w, 90%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-500), var(--navy-600));
  transform-origin: left;
  animation: grow-bar 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}

.hv-card__big {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(23, 183, 201, 0.16), rgba(29, 66, 158, 0.1));
  color: var(--cyan-600);
}

.hv-card--float1 strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-900);
}

.hv-card--float1 small {
  font-size: 0.76rem;
  color: var(--muted);
}

.hv-card__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.spark {
  width: 100%;
  height: 46px;
  overflow: visible;
}

.spark__line {
  stroke: var(--cyan-500);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-line 1.8s ease 0.9s forwards;
  filter: drop-shadow(0 3px 6px rgba(23, 183, 201, 0.35));
}

.marquee {
  overflow: hidden;
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 17px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__set {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
}

.marquee__set span {
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #8ba0bd;
  white-space: nowrap;
}

.marquee__set i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  flex-shrink: 0;
}

.services {
  background: #fff;
}

.software {
  background: var(--bg-soft);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.s-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.s-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 198, 214, 0.55);
  box-shadow: 0 24px 50px -18px rgba(11, 29, 63, 0.18);
}

.s-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(23, 183, 201, 0.14), rgba(29, 66, 158, 0.09));
  color: var(--cyan-600);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.s-card:hover .s-card__icon {
  transform: scale(1.06) rotate(-3deg);
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  color: #04222e;
}

.s-card__icon .ic {
  width: 26px;
  height: 26px;
}

.s-card h3 {
  font-size: 1.07rem;
  font-weight: 700;
  margin: 18px 0 9px;
}

.s-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.s-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-700);
  transition: color 0.25s ease;
}

.s-card__link .ic {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.s-card__link:hover {
  color: var(--cyan-600);
}

.s-card__link:hover .ic {
  transform: translateX(5px);
}

.why {
  position: relative;
  background:
    radial-gradient(640px 340px at 85% -10%, rgba(23, 183, 201, 0.2), transparent 65%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 55%, #10254e);
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  pointer-events: none;
  animation: grid-drift 16s linear infinite;
}

.why .container {
  position: relative;
}

.section__head--light h2 {
  color: #fff;
}

.section__head--light .section__desc {
  color: rgba(214, 228, 244, 0.75);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.w-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.w-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 198, 214, 0.45);
  background: rgba(255, 255, 255, 0.085);
}

.w-card__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.w-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(23, 183, 201, 0.24), rgba(23, 183, 201, 0.08));
  border: 1px solid rgba(47, 198, 214, 0.3);
  color: var(--cyan-300);
}

.w-card__icon .ic {
  width: 25px;
  height: 25px;
}

.w-card h3 {
  color: #fff;
  font-size: 1.04rem;
  margin: 18px 0 9px;
}

.w-card p {
  font-size: 0.89rem;
  color: rgba(214, 228, 244, 0.72);
  line-height: 1.65;
}

.about {
  background: var(--bg-soft);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.about__content p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.about__content strong {
  color: var(--navy-800);
}

.about__content .btn {
  margin-top: 26px;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.a-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.a-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 198, 214, 0.5);
  box-shadow: var(--shadow-md);
}

.a-card__letter {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy-700), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.a-card h3 {
  font-size: 1rem;
  margin: 10px 0 6px;
}

.a-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

.process {
  background: #fff;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}

.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-400), var(--navy-600));
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.steps.is-visible::before {
  transform: scaleX(1);
}

.step {
  position: relative;
}

.step__num {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid var(--cyan-400);
  color: var(--navy-700);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 0 0 7px #fff, var(--shadow-sm);
  margin-bottom: 18px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.step:hover .step__num {
  transform: scale(1.08);
  background: var(--cyan-500);
  color: #04222e;
}

.step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.projects {
  background: var(--bg-soft);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.p-card__media {
  position: relative;
  height: 172px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.p-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.4px, transparent 1.4px);
  background-size: 19px 19px;
  transition: transform 0.6s ease;
}

.p-card:hover .p-card__media::before {
  transform: scale(1.12);
}

.p-card__media--1 { background: linear-gradient(135deg, #16337e, #1d429e); }
.p-card__media--2 { background: linear-gradient(135deg, #0b1d3f, #16337e); }
.p-card__media--3 { background: linear-gradient(135deg, #17b7c9, #16337e); }
.p-card__media--4 { background: linear-gradient(135deg, #1d429e, #17b7c9); }
.p-card__media--5 { background: linear-gradient(135deg, #0b1d3f, #17b7c9); }
.p-card__media--6 { background: linear-gradient(135deg, #16337e, #2fc6d6); }

.p-card__icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  transition: transform 0.45s ease;
}

.p-card:hover .p-card__icon {
  transform: scale(1.12);
}

.p-card__icon .ic {
  width: 30px;
  height: 30px;
}

.p-card__tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(4, 18, 38, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #c9f2f7;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.p-card__body {
  padding: 22px;
}

.p-card__body h3 {
  font-size: 1.05rem;
}

.p-card__body p {
  margin: 8px 0 14px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.p-card__meta {
  font-weight: 700;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cyan-700);
}

.testimonials {
  background: #fff;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.t-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.t-card__badge {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff4d6;
  border: 1px solid #f0d48a;
  color: #8a6400;
  font-weight: 700;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.t-card__stars {
  display: flex;
  gap: 3px;
}

.t-card__stars .ic {
  width: 16px;
  height: 16px;
  fill: #f0b429;
  stroke: none;
  color: #f0b429;
  filter: drop-shadow(0 1px 2px rgba(240, 180, 41, 0.35));
}

.t-card blockquote {
  margin: 15px 0 20px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6eef7;
  color: #7d8ea6;
  font-weight: 700;
  flex-shrink: 0;
}

.t-card__who strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-900);
}

.t-card__who small {
  font-size: 0.77rem;
  color: var(--muted);
}

.testimonials__note {
  margin-top: 22px;
  text-align: center;
  font-size: 0.83rem;
  color: var(--muted);
}

.cta {
  position: relative;
  background:
    radial-gradient(560px 300px at 80% 0%, rgba(23, 183, 201, 0.28), transparent 65%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  padding-block: clamp(72px, 9vw, 112px);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  pointer-events: none;
  animation: grid-drift 16s linear infinite reverse;
}

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 740px;
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.cta p {
  margin: 16px auto 32px;
  max-width: 560px;
  color: rgba(214, 228, 244, 0.82);
  font-size: 1.05rem;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contact {
  background: var(--bg-soft);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.c-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.c-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 198, 214, 0.5);
  box-shadow: var(--shadow-md);
}

.c-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(23, 183, 201, 0.14), rgba(29, 66, 158, 0.08));
  color: var(--cyan-600);
}

.c-card__icon .ic {
  width: 22px;
  height: 22px;
}

.c-card h3 {
  font-size: 0.96rem;
  margin: 15px 0 5px;
}

.c-card p {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
}

.c-card p a {
  color: inherit;
  transition: color 0.2s ease;
}

.c-card p a:hover {
  color: var(--cyan-600);
}

.c-card small {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact__cards .c-card--wide {
  grid-column: 1 / -1;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 3vw, 34px);
}

.form__row--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy-900);
  margin-bottom: 7px;
}

.field label b {
  color: var(--err);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line-strong);
  background: #fbfdff;
  font: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 183, 201, 0.16);
}

.field--error input,
.field--error textarea {
  border-color: var(--err);
}

.field__error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  font-size: 0.78rem;
  color: var(--err);
}

.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan-600);
  flex-shrink: 0;
  cursor: pointer;
}

.check a {
  color: var(--navy-700);
  text-decoration: underline;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.form__note {
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 1.3em;
}

.form__note.is-ok {
  color: var(--ok);
}

.form__note.is-err {
  color: var(--err);
}

.footer {
  background: var(--navy-950);
  color: #b9c7dc;
  padding-top: clamp(56px, 7vw, 76px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  gap: clamp(28px, 4vw, 48px);
}

.footer__brand p {
  margin: 18px 0 20px;
  font-size: 0.9rem;
  color: #93a5c1;
  max-width: 310px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #c6d4ea;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer__social a:hover {
  transform: translateY(-3px);
  background: rgba(23, 183, 201, 0.15);
  border-color: rgba(47, 198, 214, 0.5);
  color: var(--cyan-300);
}

.footer__social .ic {
  width: 17px;
  height: 17px;
}

.footer__col h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul a {
  font-size: 0.9rem;
  color: #93a5c1;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__col ul a:hover {
  color: var(--cyan-300);
  padding-left: 5px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #93a5c1;
}

.footer__contact .ic {
  width: 16px;
  height: 16px;
  color: var(--cyan-400);
}

.footer__contact a {
  color: inherit;
}

.footer__contact a:hover {
  color: var(--cyan-300);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(36px, 5vw, 52px);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #7387a5;
}

.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2ee07a, var(--wa));
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.75);
}

.wa-float > .ic {
  width: 27px;
  height: 27px;
  position: relative;
  z-index: 1;
}

.wa-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--wa);
  animation: ring-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.wa-float__label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.88rem;
  transition: max-width 0.45s ease, opacity 0.45s ease, margin 0.45s ease;
}

.wa-float:hover .wa-float__label {
  max-width: 200px;
  opacity: 1;
  margin: 0 8px 0 6px;
}

@media (hover: none) {
  .wa-float__label {
    display: none;
  }
}

.to-top {
  position: fixed;
  bottom: 24px;
  left: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--navy-700);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.to-top--visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.to-top:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}

.to-top .ic {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.cookie {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px clamp(18px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--cyan-500);
  box-shadow: 0 -18px 44px -20px rgba(11, 29, 63, 0.35);
  animation: slide-up 0.5s ease;
}

.cookie[hidden] {
  display: none;
}

.cookie p {
  font-size: 0.87rem;
  color: var(--ink-soft);
  max-width: 760px;
}

.cookie a {
  color: var(--cyan-700);
  text-decoration: underline;
  font-weight: 600;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease var(--d, 0s), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-24px, 26px); }
}

@keyframes grad-shift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes dash-move {
  to { stroke-dashoffset: -260; }
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

@keyframes grow-bar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes ring-ping {
  0% { transform: scale(1); opacity: 0.8; }
  75%, 100% { transform: scale(1.55); opacity: 0; }
}

@keyframes slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 46px 46px, 46px 46px; }
}

.free-audit {
  background: #fff;
}

.audit__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.audit__content p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 520px;
}

.audit__content .hero__actions {
  margin-top: 26px;
}

.audit__list {
  display: grid;
  gap: 14px;
}

.audit__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.audit__item:hover {
  transform: translateX(5px);
  border-color: rgba(47, 198, 214, 0.5);
  box-shadow: var(--shadow-sm);
}

.audit__item .ic {
  color: var(--cyan-600);
  stroke-width: 2.4;
  flex-shrink: 0;
}

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 88;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px -14px rgba(11, 29, 63, 0.3);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-800);
}

.mobile-bar .ic {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.mobile-bar a.wa {
  color: #128c4b;
}

.mobile-bar a.quote {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  color: #04222e;
  margin: 6px;
  border-radius: 12px;
  padding: 8px 4px;
}

.legal {
  padding-top: calc(var(--header-h) + clamp(40px, 6vw, 72px));
  padding-bottom: clamp(64px, 8vw, 96px);
  background: linear-gradient(180deg, #f7fafd, #fff 320px);
}

.legal__wrap {
  max-width: 820px;
}

.legal h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 800;
  margin: 14px 0 8px;
}

.legal__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.legal h2 {
  font-size: 1.18rem;
  margin: 30px 0 10px;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal ul {
  padding-left: 22px;
  margin: 10px 0;
  list-style: disc;
}

.legal a {
  text-decoration: underline;
}

.legal__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 4vw, 40px);
}

.faq {
  background: var(--bg-soft);
}

.faq__list {
  max-width: 820px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(47, 198, 214, 0.5);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--cyan-600);
  border-bottom: 2px solid var(--cyan-600);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 6vw, 72px)) 0 clamp(36px, 5vw, 56px);
  background: linear-gradient(180deg, #f7fafd, #fff);
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--cyan-600);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0;
}

.page-hero__desc {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.service-detail {
  background: #fff;
  padding-top: clamp(48px, 6vw, 72px);
}

.service-detail__head {
  display: grid;
  justify-items: start;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.service-detail__head h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 18px 0 6px;
}

.service-detail__head p {
  color: var(--muted);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feat-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 198, 214, 0.5);
}

.feat-card .ic {
  color: var(--cyan-600);
  margin-top: 3px;
  stroke-width: 2.4;
}

.feat-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.55;
}

.service-detail__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 200px at 90% 0%, rgba(23, 183, 201, 0.25), transparent 65%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
}

.service-detail__cta h3 {
  color: #fff;
  font-size: 1.2rem;
}

.service-detail__cta p {
  color: rgba(214, 228, 244, 0.8);
  font-size: 0.95rem;
  margin-top: 6px;
}

.other-services-sec {
  background: var(--bg-soft);
  padding-block: clamp(56px, 7vw, 84px);
}

.other-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy-700);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: var(--cyan-500);
  background: rgba(23, 183, 201, 0.08);
  color: var(--cyan-700);
}

@media (max-width: 1024px) {
  .service-detail__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audit__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-bar {
    display: grid;
  }

  .wa-float {
    display: none;
  }

  .footer {
    padding-bottom: 70px;
  }

  .to-top {
    bottom: 84px;
  }
}

@media (max-width: 680px) {
  .service-detail__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .header__cta {
    display: none;
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 26px;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    height: 430px;
    max-width: 560px;
  }

  .services__grid,
  .projects__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -20px rgba(11, 29, 63, 0.25);
    padding: 18px min(4%, 24px) 24px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav--open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav__link {
    display: block;
    padding: 13px 16px;
    font-size: 1rem;
  }

  .nav__cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 680px) {
  .services__grid,
  .projects__grid,
  .testimonials__grid,
  .contact__cards,
  .form__row--2,
  .why__grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    height: auto;
    max-width: 100%;
  }

  .hero__wire,
  .hv-card--float1,
  .hv-card--float2 {
    display: none;
  }

  .hv-card--main {
    position: static;
    width: 100%;
    animation: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .form__actions .btn {
    flex: 1;
  }

  .cookie {
    flex-direction: column;
    align-items: flex-start;
  }

  .to-top {
    bottom: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}

/* ============================================================
   Görsel yerleşimi ek stilleri (hero, split bölümler, hizmet kartları)
   ============================================================ */

.hero__visual picture,
.hero__img {
  display: block;
}

.hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg, 24px);
  box-shadow: 0 30px 70px -30px rgba(11, 29, 63, 0.35);
}

/* Görsel + metin dönüşümlü yerleşim (split) */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.split--reverse .split__content {
  order: 2;
}

.split--reverse .split__media {
  order: 1;
}

.split__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px -18px rgba(23, 183, 201, 0.35);
}

.section__head--start {
  text-align: left;
  margin-inline: auto auto;
  max-width: none;
}

.adv-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.adv-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: rgba(224, 236, 250, 0.92);
}

.adv-list__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  color: #04222e;
}

.adv-list__icon .ic {
  width: 20px;
  height: 20px;
}

.check-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink-soft);
}

.check-list .ic {
  color: var(--cyan-600);
  width: 1em;
  height: 1em;
  stroke-width: 2.6;
}

.results {
  background: var(--bg-soft);
}

/* Görselli hizmet kartları (16:9 ortak oran) */
.s-card--media {
  padding: 0;
  overflow: hidden;
  color: inherit;
}

.s-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #edf4fb, #e2eef8);
}

.s-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.s-card--media:hover .s-card__thumb img {
  transform: scale(1.05);
}

.s-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 28px;
}

.s-card--media h3 {
  margin-top: 0;
}

.services__grid--media {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.section__actions {
  margin-top: 40px;
  text-align: center;
}

/* Hakkımızda görseli */
.about__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px -18px rgba(23, 183, 201, 0.3);
}

/* Görsel arka planlı CTA ve sayfa üst başlığı */
.cta--img {
  background-image: url('/images/como-iletisim-cta.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta--img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 63, 0.72);
  pointer-events: none;
}

.cta--img .cta__inner {
  position: relative;
  z-index: 1;
}

.page-hero--bg {
  position: relative;
  background-image: url('/images/como-bolum-arka-plan.webp');
  background-size: cover;
  background-position: center;
}

.page-hero--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 63, 0.7);
}

.page-hero--bg .container {
  position: relative;
  z-index: 1;
}

/* Koyu arka planlı sayfa başlığında açık renk metinler */
.page-hero--bg h1 {
  color: #fff;
}

.page-hero--bg .page-hero__desc {
  color: rgba(214, 228, 244, 0.88);
}

.page-hero--bg .breadcrumb {
  color: rgba(214, 228, 244, 0.75);
}

.page-hero--bg .breadcrumb a {
  color: #cfe6f5;
}

.page-hero--bg .breadcrumb a:hover {
  color: var(--cyan-300);
}

/* Koyu üst bölümde kaydırma öncesi menü açık renkte */
.header--dark:not(.header--scrolled) .nav__link,
.header--dark:not(.header--scrolled) .brand__name {
  color: #fff;
}

.header--dark:not(.header--scrolled) .nav__link:hover {
  color: var(--cyan-300);
}

.header--dark:not(.header--scrolled) .brand__sub {
  color: var(--cyan-300);
}

.header--dark:not(.header--scrolled) .brand__mark {
  --lo: #ffffff;
  --ln: #ffffff;
  --li: var(--cyan-400);
}

.service-category--alt {
  background: var(--bg-soft);
}

.service-intro .split__media img {
  border-radius: 18px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__content {
    order: 1;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .about__inner > .about__media {
    order: -1;
  }

  .services__grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

/* ============================================================
   Sosyal kanıt bandı + çıkış niyeti popup'ı
   ============================================================ */

.trust-band {
  background: linear-gradient(180deg, #f7fafd, #edf4fb);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 5vw, 56px) 0;
}

.trust-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-band__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-band__num {
  font-family: var(--font-head, sans-serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy-700), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}

.trust-band__lbl {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-800);
}

.trust-band__item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 220px;
}

@media (max-width: 900px) {
  .trust-band__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

@media (max-width: 520px) {
  .trust-band__inner {
    grid-template-columns: 1fr;
  }
}

.container--narrow {
  max-width: 820px;
}

/* Çıkış niyeti popup'ı */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 16px;
}

.exit-popup[hidden] { display: none; }

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 63, 0.72);
  backdrop-filter: blur(2px);
}

.exit-popup__card {
  position: relative;
  max-width: 460px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 30px 80px -20px rgba(11, 29, 63, 0.5);
  animation: exit-popup-in 0.35s ease;
}

@keyframes exit-popup-in {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
}

.exit-popup__close:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.exit-popup__card .eyebrow {
  margin-bottom: 8px;
}

.exit-popup__card h2 {
  font-size: 1.4rem;
  margin: 0 0 12px;
  font-weight: 800;
}

.exit-popup__card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.exit-popup__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.exit-popup__list li {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}

.exit-popup__list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan-500);
  color: #04222e;
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304222e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12.5 9.5 18 20 6.5'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.exit-popup__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.exit-popup__dismiss {
  background: transparent;
  border: 0;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.exit-popup__dismiss:hover {
  color: var(--ink);
}

/* ============================================================
   Site içi arama
   ============================================================ */

.search-form {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  max-width: 640px;
}

.search-form input {
  flex: 1;
  height: 56px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.search-form input:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(23, 183, 201, 0.15);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.search-hint {
  margin-bottom: 28px;
  color: var(--muted);
}

.search-empty {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.search-suggest {
  margin-top: 10px;
}

.search-results {
  display: grid;
  gap: 16px;
}

.search-result {
  display: block;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.search-result:hover {
  border-color: rgba(47, 198, 214, 0.55);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.search-result__cat {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(23, 183, 201, 0.12);
  color: var(--cyan-700);
  margin-bottom: 8px;
}

.search-result h3 {
  margin: 4px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
}

.search-result p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 10px;
}

.search-result__url {
  font-size: 0.84rem;
  color: var(--cyan-600);
}

.nav__search .ic {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  color: currentColor;
}

.nav__search:hover {
  color: var(--cyan-600);
}

/* ============================================================
   Sticky CTA barı (alt sabit müşteri kazanma)
   ============================================================ */

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: rgba(11, 29, 63, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 18px 40px -12px rgba(11, 29, 63, 0.45);
  animation: sticky-cta-in 0.4s ease;
}

.sticky-cta[hidden] { display: none; }

@keyframes sticky-cta-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  flex-wrap: wrap;
}

.sticky-cta__copy {
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  min-width: 0;
  color: #fff;
}

.sticky-cta__copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.sticky-cta__copy span {
  font-size: 0.82rem;
  color: rgba(214, 228, 244, 0.78);
}

.sticky-cta__whatsapp {
  padding: 10px 14px;
}

.sticky-cta__whatsapp .ic {
  width: 18px;
  height: 18px;
}

@media (max-width: 600px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ============================================================
   Konum profili (Bölge profili + Hedef kitle + Taktikler)
   ============================================================ */

.location-profile {
  background: var(--bg-soft);
}

.location-profile__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.lp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 198, 214, 0.5);
  box-shadow: var(--shadow-md);
}

.lp-card--wide {
  grid-column: 1 / -1;
}

.lp-card__icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(23, 183, 201, 0.14), rgba(29, 66, 158, 0.09));
  color: var(--cyan-600);
  margin-bottom: 14px;
}

.lp-card__icon .ic {
  width: 22px;
  height: 22px;
}

.lp-card h3 {
  font-size: 1.08rem;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--navy-800);
}

.lp-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* Lokal hizmet sayfası - kazanım grid'i */
.location-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-benefits__grid .lp-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .location-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .location-benefits__grid { grid-template-columns: 1fr; }
}

.lp-tactics {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.lp-tactics li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
}

.lp-tactics .ic {
  flex: 0 0 auto;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  color: var(--cyan-600);
  stroke-width: 2.6;
}

@media (max-width: 900px) {
  .location-profile__grid {
    grid-template-columns: 1fr;
  }
  .lp-card--wide {
    grid-column: auto;
  }
}
