:root {
  --bg: #f3f6f8;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --text: #0e1b2b;
  --text-soft: #415267;
  --line: #d6e0e7;
  --brand: #0f766e;
  --brand-strong: #115e59;
  --brand-mint: #14b8a6;
  --ink-deep: #0b1324;
  --accent: #f59e0b;
  --shadow: 0 22px 56px rgba(15, 27, 43, 0.16);
  --shadow-soft: 0 14px 34px rgba(15, 27, 43, 0.1);
  --radius: 24px;
  --radius-sm: 14px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --trans: 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(20, 184, 166, 0.18), transparent 38%),
    radial-gradient(circle at 86% 8%, rgba(245, 158, 11, 0.16), transparent 34%),
    linear-gradient(180deg, #f6f9fb 0%, #f2f6f9 44%, #eff4f8 100%);
}

body::after {
  z-index: -1;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(16, 42, 67, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 67, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 96%);
}

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

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

.container {
  width: min(1160px, calc(100% - 2.6rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(214, 224, 231, 0.88);
  background: rgba(243, 246, 248, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15, 27, 43, 0.12);
  background: #fff;
  padding: 2px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
  position: relative;
  padding: 0.45rem 0;
  transition: color var(--trans);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mint));
  transition: width var(--trans);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn):focus-visible,
.nav-links a:not(.btn).is-active {
  color: var(--text);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after,
.nav-links a:not(.btn).is-active::after {
  width: 100%;
}

.nav-links .btn {
  padding: 0.58rem 1rem;
}

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

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus-visible,
.nav-links a.btn-primary.is-active {
  color: #fff;
  text-shadow: 0 1px 0 rgba(2, 18, 16, 0.28);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(15, 27, 43, 0.2);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform var(--trans), opacity var(--trans);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 35, 0.42);
  z-index: 70;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  padding: 0.95rem 1.6rem;
  letter-spacing: 0.15px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand-strong), var(--brand));
  box-shadow: 0 14px 30px rgba(17, 94, 89, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(17, 94, 89, 0.35);
}

.btn-ghost {
  border-color: rgba(14, 27, 43, 0.24);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.45);
  color: var(--brand-strong);
}

.btn-small {
  padding: 0.6rem 1.05rem;
  font-size: 0.86rem;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.ripple {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  animation: ripple 700ms ease-out;
}

@keyframes ripple {
  from {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(13);
  }
}

.hero,
.page-hero {
  padding: clamp(3.4rem, 6vw, 6rem) 0 var(--space-6);
}

.hero-grid,
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  margin-bottom: var(--space-3);
  border: 1px solid rgba(15, 118, 110, 0.24);
  background: rgba(255, 255, 255, 0.75);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.84rem;
}

.lead {
  color: var(--text-soft);
  font-size: clamp(1.03rem, 2vw, 1.18rem);
  max-width: 56ch;
}

.hero-actions {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero-points {
  margin-top: var(--space-4);
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero-points li {
  color: var(--text-soft);
  position: relative;
  padding-left: 1.45rem;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-panel {
  width: min(100%, 520px);
  background: linear-gradient(168deg, #10203a 8%, #0e2d3e 70%, #0f766e 100%);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  color: #e8f3ff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto -20% -48% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent 72%);
}

.panel-label {
  display: inline-flex;
  margin-bottom: var(--space-2);
  font-size: 0.76rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(232, 243, 255, 0.72);
}

.hero-panel h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  margin-bottom: var(--space-3);
}

.kpi-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kpi-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 0.85rem 0.8rem;
  backdrop-filter: blur(10px);
}

.kpi-card span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.kpi-card strong {
  display: block;
  font-size: 1.28rem;
  color: #fff;
  margin: 0.28rem 0;
}

.kpi-card small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.signal-line {
  margin-top: var(--space-4);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 124px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(120deg, rgba(20, 184, 166, 0.5), rgba(245, 158, 11, 0.2));
  background-size: 22px 22px, 22px 22px, 100% 100%;
  position: relative;
  overflow: hidden;
}

.signal-line::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 18%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), #fff, rgba(255, 255, 255, 0.4));
  transform: skewX(-18deg);
  box-shadow: 0 -24px 0 -1px rgba(255, 255, 255, 0.55), 0 -48px 0 -1px rgba(255, 255, 255, 0.3);
}

.section {
  padding: var(--space-6) 0;
}

.section-tight {
  padding-top: 0;
}

.section-title {
  margin-bottom: var(--space-5);
}

.section-title p {
  color: var(--text-soft);
  margin-top: var(--space-2);
}

.tag-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.tag {
  border-radius: 999px;
  padding: 0.68rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--text);
  border: 1px solid rgba(15, 118, 110, 0.24);
  background: rgba(255, 255, 255, 0.75);
}

.card,
.service-card,
.step-card,
.testimonial-card,
.value-card,
.comparison-card,
.comparison-block {
  background: var(--surface-soft);
  border: 1px solid rgba(214, 224, 231, 0.9);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.card,
.service-card,
.step-card,
.testimonial-card,
.value-card,
.comparison-card,
.comparison-block,
.plan-card {
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.card.highlight,
.comparison-card.highlight {
  background: linear-gradient(160deg, #101c34, #0f2a3c 80%);
  color: #e5f2ff;
  border-color: rgba(180, 208, 227, 0.22);
}

.card.highlight h2,
.card.highlight h3,
.comparison-card.highlight h4 {
  color: #fff;
}

.card.highlight p,
.card.highlight .list,
.comparison-card.highlight p {
  color: rgba(229, 242, 255, 0.82);
}

.list {
  list-style: none;
  margin-top: var(--space-3);
  display: grid;
  gap: 0.62rem;
  color: var(--text-soft);
}

.list li {
  position: relative;
  padding-left: 1.25rem;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.47rem;
  height: 0.47rem;
  border-radius: 50%;
  background: var(--brand);
}

.card.highlight .list li::before,
.comparison-card.highlight .list li::before {
  background: #8be5dd;
}

.pill-row {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 0.32rem 0.74rem;
  font-size: 0.79rem;
  font-weight: 600;
  color: #e5f2ff;
}

.services-grid,
.workflow-grid,
.testimonials-grid,
.values-grid,
.who-grid,
.comparison-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
  min-height: 236px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 88% -10%, rgba(20, 184, 166, 0.26), transparent 56%);
}

.service-card:hover {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: var(--shadow);
}

.tilt-card {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
}

.service-outcome {
  margin-top: var(--space-3);
  display: inline-block;
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.93rem;
}

.step {
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.step-card h3,
.service-card h3,
.value-card h3,
.comparison-card h3 {
  margin: 0.45rem 0 0.6rem;
}

.testimonial-card p {
  color: var(--text-soft);
}

.testimonial-name {
  display: inline-block;
  margin-top: var(--space-3);
  color: var(--text);
  font-weight: 700;
  font-size: 0.94rem;
}

.results-compartment .container {
  position: relative;
}

.results-title .badge {
  width: auto;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: var(--space-2);
}

.results-kpi-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: var(--space-4);
}

.results-kpi {
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.95), rgba(236, 246, 250, 0.95));
  box-shadow: var(--shadow-soft);
  padding: 1.08rem 1.1rem;
}

.results-kpi-number {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-strong);
  margin-bottom: 0.45rem;
}

.results-kpi-label {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.results-layout {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
}

.results-dashboards,
.results-reviews,
.results-before-after {
  border-radius: var(--radius);
  border: 1px solid rgba(214, 224, 231, 0.95);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 252, 0.95));
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.2vw, 1.6rem);
}

.results-block-head {
  margin-bottom: var(--space-3);
}

.results-block-head p {
  color: var(--text-soft);
  margin-top: 0.35rem;
}

.dash-carousel {
  display: grid;
  gap: 0.7rem;
}

.dash-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.dash-swipe-tip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(235, 250, 248, 0.95);
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.32rem 0.64rem;
}

.dash-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.dash-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(14, 27, 43, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--trans), border-color var(--trans), background var(--trans);
}

.dash-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.4);
  background: rgba(235, 250, 248, 0.95);
}

.dash-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.dash-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.dash-track {
  display: flex;
  transition: transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
  touch-action: pan-y;
}

.dash-slide {
  min-width: 100%;
}

.dashboard-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(14, 27, 43, 0.15);
  background: #e8eef4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.dashboard-shot {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  background: #eef2f6;
}

.dash-caption-rail {
  min-height: 2.3rem;
  margin-top: 0.34rem;
}

.dash-caption {
  display: none;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.35;
  padding: 0.08rem 0.22rem 0.04rem;
}

.dash-caption.is-active {
  display: block;
}

.dash-pager {
  display: flex;
  justify-content: center;
  gap: 0.58rem;
}

.dash-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(14, 27, 43, 0.26);
  background: rgba(255, 255, 255, 0.9);
  transition: width var(--trans), background var(--trans), border-color var(--trans);
}

.dash-dot.is-active {
  width: 26px;
  border-color: var(--brand-strong);
  background: var(--brand-strong);
}

.results-reviews-grid {
  display: grid;
  gap: 0.75rem;
}

.review-card {
  border-radius: 16px;
  border: 1px solid rgba(14, 27, 43, 0.14);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.88rem 0.95rem;
}

.review-stars {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: #f5b301;
  letter-spacing: 1.3px;
  font-size: 0.9rem;
}

.review-card p {
  color: var(--text-soft);
  line-height: 1.45;
}

.review-card .testimonial-name {
  margin-top: 0.55rem;
}

.results-before-after {
  margin-top: var(--space-4);
  max-width: min(100%, 940px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(0.85rem, 1.8vw, 1.2rem);
}

.results-before-after .ba {
  width: 100%;
  margin: 0 auto;
  gap: 0.45rem;
}

.results-before-after .ba-media {
  border-radius: 16px;
  aspect-ratio: 133 / 72;
}

.results-before-after .ba-range {
  width: 100%;
  display: block;
  margin: 0;
}

.results-before-after .ba-img {
  object-fit: contain;
  object-position: center center;
  background: #eef2f6;
}

.results-before-after .ba-label {
  font-size: 0.68rem;
  padding: 0.18rem 0.54rem;
}

.results-before-after .ba-handle {
  box-shadow: 0 0 0 4px rgba(10, 17, 28, 0.34);
}

.results-before-after .ba-before {
  width: 100%;
  clip-path: inset(0 50% 0 0);
  border-right: none;
}

.results-before-after .ba-after {
  width: 100%;
}

.proof {
  background: linear-gradient(145deg, #101b32 4%, #0f263a 68%, #0f766e 120%);
  color: #f2fbff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.proof-item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 1.3rem;
}

.proof-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.45rem;
}

.proof-label {
  color: rgba(242, 251, 255, 0.86);
}

.cta {
  padding-bottom: var(--space-7);
}

.cta-box {
  text-align: center;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(214, 224, 231, 0.95);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 251, 0.92));
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 3rem);
}

.cta-box p {
  color: var(--text-soft);
  max-width: 62ch;
  margin: var(--space-3) auto 0;
}

.cta-actions {
  margin-top: var(--space-4);
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.page-hero .card h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}

.plans-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-radius: var(--radius);
  border: 1px solid rgba(214, 224, 231, 0.9);
  box-shadow: var(--shadow-soft);
  background: var(--surface-soft);
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.plan-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.plan-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  padding: 0.32rem 0.78rem;
  background: linear-gradient(120deg, #10314a, #0f766e);
}

.plan-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.plan-span {
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 20px 48px rgba(15, 118, 110, 0.22);
}

.comparison-stack {
  display: grid;
  gap: var(--space-4);
}

.comparison-block h3 {
  margin-bottom: var(--space-3);
}

.comparison-note {
  margin-top: var(--space-3);
  display: inline-flex;
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-size: 0.78rem;
  border: 1px solid rgba(15, 118, 110, 0.3);
  color: var(--brand-strong);
  font-weight: 700;
  background: rgba(15, 118, 110, 0.08);
}

.ba-carousel {
  overflow: hidden;
  position: relative;
}

.ba-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  touch-action: pan-y;
}

.ba-slide {
  min-width: 100%;
}

.ba {
  display: grid;
  gap: var(--space-3);
}

.ba-media {
  position: relative;
  width: 100%;
  aspect-ratio: 133 / 77;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(214, 224, 231, 0.9);
  box-shadow: var(--shadow-soft);
  background: #fff;
  touch-action: none;
}

.ba-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-before {
  z-index: 2;
  width: 50%;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
}

.ba-after {
  z-index: 1;
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ba-label {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: rgba(10, 17, 28, 0.74);
  color: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  padding: 0.25rem 0.58rem;
}

.ba-after .ba-label {
  left: auto;
  right: var(--space-3);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 5px rgba(10, 17, 28, 0.35);
}

.ba-range {
  width: min(460px, 100%);
  margin: 0 auto;
  accent-color: var(--brand);
}

.ba-pager {
  margin-top: var(--space-3);
  display: flex;
  justify-content: center;
  gap: 0.64rem;
}

.pager-dot {
  border-radius: 999px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(14, 27, 43, 0.3);
  background: rgba(255, 255, 255, 0.82);
  transition: width var(--trans), background var(--trans), border-color var(--trans);
}

.pager-dot.is-active {
  width: 30px;
  border-color: var(--brand-strong);
  background: var(--brand-strong);
}

.contact-grid {
  display: grid;
  gap: var(--space-4);
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.contact-form {
  display: grid;
  gap: var(--space-3);
}

.form-note {
  color: var(--text-soft);
  margin-top: -0.25rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.93rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(14, 27, 43, 0.2);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.84rem 0.95rem;
  font: inherit;
  color: var(--text);
  transition: border-color var(--trans), box-shadow var(--trans);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
  border-color: rgba(15, 118, 110, 0.7);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16);
  outline: none;
}

.contact-info {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.contact-info a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 2px;
}

.muted {
  color: var(--text-soft);
}

.site-footer {
  margin-top: var(--space-4);
  padding: var(--space-6) 0 var(--space-4);
  border-top: 1px solid rgba(14, 27, 43, 0.12);
  background: linear-gradient(185deg, #f5f8fb 4%, #edf3f8 100%);
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-grid p {
  color: var(--text-soft);
  margin-top: var(--space-1);
}

.footer-grid h4 {
  margin-bottom: 0.35rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.footer-links a:hover {
  color: var(--brand-strong);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(14, 27, 43, 0.09);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (min-width: 980px) {
  .plan-card.plan-span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .tag-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .kpi-card:last-child {
    grid-column: 1 / -1;
  }

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

  .results-kpi:last-child {
    grid-column: 1 / -1;
  }

  .results-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body {
    padding-top: 78px;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 82;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(340px, 88vw);
    background: linear-gradient(180deg, #f5f8fb, #eff5f9);
    border-left: 1px solid rgba(14, 27, 43, 0.12);
    transform: translateX(102%);
    transition: transform var(--trans);
    z-index: 81;
    box-shadow: -16px 0 40px rgba(10, 20, 34, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links ul {
    padding: 6rem 1.4rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
  }

  .nav-links a {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .nav-links .btn {
    margin-top: 0.35rem;
    justify-content: center;
  }

  .nav-links .btn.btn-primary {
    padding: 0.82rem 1rem;
    color: #fff;
  }

  body.nav-open {
    overflow: hidden;
  }

  html.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open .nav-toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .nav-toggle .bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-grid,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .results-kpi-grid {
    grid-template-columns: 1fr;
  }

  .results-kpi:last-child {
    grid-column: auto;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1160px, calc(100% - 1.6rem));
  }

  .section {
    padding: 2.6rem 0;
  }

  .hero,
  .page-hero {
    padding-top: 2.7rem;
  }

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

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

  .tag-rail,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .results-dashboards,
  .results-reviews,
  .results-before-after {
    padding: 0.95rem;
    border-radius: 20px;
  }

  .results-before-after {
    margin-top: var(--space-3);
    padding: 0.82rem;
    border-radius: 18px;
  }

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

  .dash-controls {
    align-self: flex-end;
  }

  .dash-caption {
    font-size: 0.8rem;
  }

  .results-before-after .ba-media {
    aspect-ratio: 133 / 74;
  }

  .results-before-after .ba-range {
    width: 100%;
  }

  .home-page .hero {
    padding-top: 1.35rem;
    padding-bottom: 1.6rem;
  }

  .home-page .hero .container {
    width: min(1160px, calc(100% - 1rem));
  }

  .home-page .hero-grid {
    gap: 0.95rem;
  }

  .home-page .hero-copy {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(15, 118, 110, 0.22);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(242, 248, 251, 0.95));
    box-shadow: 0 18px 38px rgba(8, 26, 44, 0.14);
    padding: 1.08rem;
  }

  .home-page .hero-copy::before {
    content: '';
    position: absolute;
    width: 210px;
    height: 210px;
    right: -68px;
    bottom: -132px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.26), transparent 72%);
    pointer-events: none;
  }

  .home-page .hero-copy > * {
    position: relative;
    z-index: 1;
  }

  .home-page .badge {
    margin-bottom: 0.76rem;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2rem, 8.8vw, 2.55rem);
    line-height: 1.05;
    margin-bottom: 0.86rem;
  }

  .home-page .hero-copy .lead {
    font-size: 1.04rem;
    line-height: 1.52;
  }

  .home-page .hero-actions {
    margin-top: 1rem;
    gap: 0.72rem;
  }

  .home-page .hero-actions .btn {
    min-height: 56px;
    font-size: 1.08rem;
  }

  .home-page .hero-points {
    margin-top: 1rem;
    padding: 0.82rem 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(14, 27, 43, 0.12);
    background: rgba(255, 255, 255, 0.82);
    gap: 0.62rem;
  }

  .home-page .hero-points li {
    font-size: 1.03rem;
    line-height: 1.44;
    padding-left: 1.16rem;
  }

  .home-page .hero-points li::before {
    top: 0.65rem;
  }

  .home-page .hero-visual {
    margin-top: 0.1rem;
  }

  .home-page .hero-panel {
    border-radius: 22px;
    padding: 1.06rem;
  }

  .home-page .panel-label {
    font-size: 0.68rem;
    letter-spacing: 1.35px;
  }

  .home-page .hero-panel h2 {
    font-size: clamp(1.4rem, 6.7vw, 1.82rem);
    margin-bottom: 0.76rem;
  }

  .home-page .kpi-grid {
    gap: 0.62rem;
  }

  .home-page .kpi-card {
    padding: 0.86rem 0.76rem;
  }

  .home-page .kpi-card strong {
    font-size: 1.74rem;
    margin: 0.18rem 0 0.22rem;
  }

  .home-page .signal-line {
    margin-top: 0.72rem;
    height: 90px;
  }

  .home-page .section.section-tight {
    padding-top: 0.95rem;
  }

  .home-page .tag-rail {
    gap: 0.52rem;
  }

  .home-page .tag {
    text-align: left;
    border-radius: 14px;
    padding: 0.62rem 0.8rem;
    font-size: 0.82rem;
  }

  .proof-item {
    padding: 1.05rem;
  }

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

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

  .ba-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 540px) {
  .badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home-page .badge {
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .logo span {
    font-size: 0.95rem;
  }

  .card,
  .service-card,
  .step-card,
  .testimonial-card,
  .value-card,
  .comparison-card,
  .comparison-block,
  .plan-card {
    border-radius: 18px;
  }
}

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

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