:root {
  --color-bg: #e3f1ff;
  --color-bg-strong: #ffffff;
  --color-surface: rgba(255, 255, 255, 0.82);
  --color-surface-strong: rgba(255, 255, 255, 0.96);
  --color-border: rgba(19, 121, 216, 0.24);
  --color-text: #07162e;
  --color-muted: #526a86;
  --color-blue: #086fd1;
  --color-blue-light: #139df7;
  --color-slate: #0a2344;
  --color-soft-blue: #d9edff;
  --color-blue-wash: #c9e4ff;
  --color-violet: #7657ff;
  --color-teal: #28c7d2;
  --shadow-soft: 0 20px 60px rgba(17, 58, 112, 0.13);
  --shadow-blue: 0 18px 46px rgba(8, 111, 209, 0.3);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(19, 157, 247, 0.34), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(8, 111, 209, 0.22), transparent 28rem),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.22) 0 1px, rgba(8, 111, 209, 0.045) 1px 2px, transparent 2px 8px),
    linear-gradient(145deg, #ffffff, var(--color-bg) 52%, #cfe8ff);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent 18%, rgba(8, 111, 209, 0.068) 46%, transparent 72%),
    repeating-linear-gradient(0deg, rgba(7, 22, 46, 0.043) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.27) 0 1px, transparent 1px 12px);
  background-size: 680px 100%, 100% 10px, 34px 100%;
  mix-blend-mode: multiply;
  opacity: 0.98;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 86%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(19, 157, 247, 0.08) 58% 59%, transparent 59%),
    linear-gradient(300deg, transparent 0 62%, rgba(255, 255, 255, 0.44) 62% 63%, transparent 63%);
  background-size: 180px 180px;
  opacity: 0.34;
}

img {
  max-width: 100%;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

h2 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  overflow: visible;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(3, 16, 38, 0.96), rgba(8, 54, 119, 0.92) 52%, rgba(8, 111, 209, 0.76));
  box-shadow: 0 16px 50px rgba(3, 16, 38, 0.12);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(19, 157, 247, 0.7), transparent);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(3, 16, 38, 0.16);
  font-weight: 800;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: white;
  background:
    linear-gradient(145deg, rgba(10, 35, 68, 0.98), rgba(22, 137, 238, 0.9));
  box-shadow: var(--shadow-blue);
}

.brand__word {
  display: block;
  color: var(--color-blue-light);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand__word span {
  color: white;
}

.brand__tagline {
  display: block;
  margin-top: 4px;
  color: rgba(236, 247, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.site-header .site-nav a:not(.nav-cta) {
  color: rgba(236, 247, 255, 0.78);
}

.site-header .site-nav a:not(.nav-cta):hover {
  color: white;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.96rem;
}

.site-nav a:not(.nav-cta) {
  color: var(--color-muted);
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--color-text);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--color-slate), var(--color-blue));
  box-shadow: var(--shadow-blue);
}

.button--ghost {
  border-color: var(--color-border);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.68);
}

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

.button--sheen {
  overflow: hidden;
}

.button--sheen::after {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.34) 46%, transparent 58% 100%);
  opacity: 0.55;
  pointer-events: none;
  transform: translateX(-120%);
  animation: buttonSheen 3.6s ease-in-out infinite;
}

.button--ghost:hover {
  border-color: rgba(22, 137, 238, 0.35);
  background: var(--color-soft-blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-slate);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) 0;
}

.section--problem,
.section--services {
  padding: clamp(58px, 7vh, 86px) 0;
}

@media (min-width: 1081px) {
  main > .section:not(.hero) {
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section[data-step="6"] {
    padding-top: clamp(36px, 5vh, 58px);
    padding-bottom: clamp(42px, 5.5vh, 64px);
  }

  .section[data-step="8"],
  .section[data-step="9"] {
    padding-top: clamp(34px, 4.5vh, 54px);
    padding-bottom: clamp(34px, 4.5vh, 54px);
  }
}

@media (min-width: 1180px) {
  .section[data-step] > .section__inner {
    position: relative;
  }

  .section[data-step="1"] > .section__inner { --step-number: "1"; }
  .section[data-step="2"] > .section__inner { --step-number: "2"; }
  .section[data-step="3"] > .section__inner { --step-number: "3"; }
  .section[data-step="4"] > .section__inner { --step-number: "4"; }
  .section[data-step="5"] > .section__inner { --step-number: "5"; }
  .section[data-step="6"] > .section__inner { --step-number: "6"; }
  .section[data-step="7"] > .section__inner { --step-number: "7"; }
  .section[data-step="8"] > .section__inner { --step-number: "8"; }
  .section[data-step="9"] > .section__inner { --step-number: "9"; }
  .section[data-step="10"] > .section__inner { --step-number: "⚑"; }
  .section[data-step="9"] > .section__inner {
    --step-marker-left: -248px;
    --step-marker-top: 50%;
  }
  .section[data-step="10"] {
    --step-line-end: 50%;
  }

  .section[data-step="1"] {
    --step-line-start: 50%;
  }

  .section[data-step] > .section__inner::before {
    position: absolute;
    top: var(--step-marker-top, 50%);
    left: var(--step-marker-left, -118px);
    z-index: 2;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    color: white;
    background:
      radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.28), transparent 34%),
      linear-gradient(145deg, rgba(7, 22, 46, 0.96), rgba(8, 111, 209, 0.88));
    box-shadow:
      0 18px 46px rgba(8, 111, 209, 0.24),
      0 0 0 12px rgba(255, 255, 255, 0.38),
      0 0 0 13px rgba(19, 121, 216, 0.18);
    content: var(--step-number);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
  }

  .section[data-step="10"] > .section__inner::before {
    padding-bottom: 5px;
    font-size: 2.7rem;
  }

  .section[data-step]::after {
    position: absolute;
    top: var(--step-line-start, -1px);
    bottom: var(--step-line-end, -1px);
    left: max(66px, calc((100vw - var(--container)) / 2 - 76px));
    z-index: 0;
    width: 4px;
    border-radius: 999px;
    content: "";
    background:
      linear-gradient(180deg, rgba(19, 157, 247, 0.2), rgba(19, 157, 247, 0.52), rgba(111, 189, 139, 0.44), rgba(19, 157, 247, 0.22));
    box-shadow: 0 0 24px rgba(19, 157, 247, 0.18);
  }

  .section[data-step="10"]::after {
    background:
      linear-gradient(180deg, rgba(19, 157, 247, 0.2), rgba(19, 157, 247, 0.52), rgba(111, 189, 139, 0.44), rgba(19, 157, 247, 0));
  }
}

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

.section--alt {
  background:
    linear-gradient(180deg, rgba(201, 228, 255, 0.9), rgba(245, 250, 255, 0.74));
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 760px;
  font-size: 1.08rem;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--color-blue-light);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  --hero-panel-height: clamp(520px, 52vh, 620px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 82px);
  padding-bottom: clamp(52px, 6vw, 82px);
  background:
    linear-gradient(110deg, rgba(217, 237, 255, 0.95), rgba(255, 255, 255, 0.44) 46%, rgba(201, 228, 255, 0.66));
}

.hero::before {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 7%;
  z-index: 0;
  height: 48%;
  pointer-events: none;
  content: "";
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='1000' height='360' viewBox='0 0 1000 360' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='42 292 252 238 416 256 606 152 756 176 932 58' stroke='%2397d7ae' stroke-width='66' stroke-linecap='round' stroke-linejoin='round' opacity='.16'/%3E%3Cpath d='M852 42L948 44L924 138' stroke='%2397d7ae' stroke-width='66' stroke-linecap='round' stroke-linejoin='round' opacity='.16'/%3E%3Cpolyline points='42 292 252 238 416 256 606 152 756 176 932 58' stroke='%236fbd8b' stroke-width='30' stroke-linecap='round' stroke-linejoin='round' opacity='.28'/%3E%3Cpath d='M852 42L948 44L924 138' stroke='%236fbd8b' stroke-width='30' stroke-linecap='round' stroke-linejoin='round' opacity='.28'/%3E%3C/svg%3E");
  filter: blur(0.2px);
  transform: rotate(-2deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.68fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: stretch;
}

.hero__content {
  display: flex;
  min-height: var(--hero-panel-height);
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.hero__intro {
  max-width: 790px;
}

.hero__middle {
  display: grid;
  gap: clamp(34px, 4.4vw, 54px);
  max-width: 720px;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.06rem, 1.75vw, 1.24rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.hero__note {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--color-slate);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
}

.hero-card,
.glass-card,
.service-card,
.reference-card,
.price-card,
.about-card,
.contact-form,
.faq-list {
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, var(--color-surface-strong), rgba(232, 244, 255, 0.9));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-panel-height);
  padding: clamp(26px, 3.2vw, 38px);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 244, 255, 0.76));
  backdrop-filter: none;
}

.hero-card::before {
  position: absolute;
  inset: auto -42px -58px auto;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(8, 111, 209, 0.42), rgba(118, 87, 255, 0.24), rgba(40, 199, 210, 0.22));
  filter: blur(1px);
  transform: rotate(10deg);
}

.hero-card::after {
  display: none;
}

.hero-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: start;
  margin-bottom: 24px;
}

.honeycomb {
  position: absolute;
  width: 56px;
  height: 50px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  background: linear-gradient(135deg, rgba(8, 111, 209, 0.56), rgba(118, 87, 255, 0.32));
  box-shadow: 0 14px 28px rgba(126, 87, 255, 0.14);
}

.honeycomb--one {
  top: 22px;
  right: 38px;
}

.honeycomb--two {
  top: 68px;
  right: 78px;
  width: 42px;
  height: 38px;
  background: linear-gradient(135deg, rgba(8, 111, 209, 0.48), rgba(10, 35, 68, 0.22));
}

.honeycomb--three {
  left: 30px;
  bottom: 42px;
  width: 46px;
  height: 42px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.3), rgba(126, 87, 255, 0.28));
}

.hero-card__visual--portrait {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: white;
  box-shadow:
    0 20px 42px rgba(7, 22, 46, 0.14),
    0 0 0 1px rgba(10, 35, 68, 0.08),
    inset 0 0 0 1px rgba(7, 22, 46, 0.08);
}

.hero-card__visual--portrait::before,
.hero-card__visual--portrait::after {
  display: none;
}

.hero-card__visual--portrait::before {
  z-index: 0;
  inset: auto auto -10px -12px;
  width: 132px;
  height: 132px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(126, 87, 255, 0.62), rgba(45, 212, 191, 0.34));
  opacity: 0.48;
  transform: rotate(-13deg);
}

.hero-card__visual--portrait::after {
  z-index: 2;
  right: 2px;
  bottom: 30px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(10, 35, 68, 0.9), rgba(126, 87, 255, 0.72), rgba(22, 137, 238, 0.62));
  box-shadow: 0 16px 34px rgba(126, 87, 255, 0.22);
  transform: rotate(8deg);
}

.hero-card__portrait {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 18%;
}

.hero-card__label {
  margin-bottom: 8px;
  color: var(--color-blue-light);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-card h2 {
  max-width: 300px;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
}

.hero-card__role {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 24px 0 26px;
  overflow: hidden;
  padding: 20px 22px 20px 58px;
  border: 1px solid rgba(111, 189, 139, 0.36);
  border-radius: 20px;
  color: var(--color-slate);
  background:
    linear-gradient(135deg, rgba(240, 249, 243, 0.94), rgba(255, 255, 255, 0.82) 56%, rgba(217, 237, 255, 0.62)),
    radial-gradient(circle at 94% 12%, rgba(111, 189, 139, 0.22), transparent 9rem);
  box-shadow:
    0 18px 40px rgba(17, 58, 112, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.38;
}

.hero-card__role::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: white;
  content: "✓";
  background: linear-gradient(145deg, #8fe0a2, #2d9f63);
  box-shadow:
    0 0 0 6px rgba(111, 189, 139, 0.16),
    0 10px 22px rgba(45, 159, 99, 0.22);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
}

.hero-card__role::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border-radius: 38px;
  content: "";
  background: linear-gradient(135deg, rgba(19, 157, 247, 0.12), rgba(111, 189, 139, 0.12));
  transform: rotate(12deg);
}

.badge-list {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.badge-list span {
  position: relative;
  display: block;
  padding: 3px 0 3px 18px;
  color: var(--color-slate);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
}

.badge-list span::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: #6fbd8b;
  box-shadow: 0 0 0 4px rgba(111, 189, 139, 0.13);
}

.price-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(22, 137, 238, 0.16);
  border-radius: 999px;
  color: var(--color-slate);
  background: linear-gradient(145deg, var(--color-soft-blue), rgba(255, 255, 255, 0.82));
  font-size: 0.87rem;
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.glass-card,
.service-card,
.reference-card {
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius-md);
}

#weboldalkeszites .card-grid--four {
  perspective: 1100px;
}

#weboldalkeszites .card-grid--four .glass-card {
  transform-origin: center bottom;
  backface-visibility: hidden;
}

.section--problem .section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1fr);
  gap: clamp(18px, 2.2vw, 30px);
  align-items: center;
}

.section--problem .section-heading {
  margin-bottom: 0;
}

.section--problem .section-heading h2 {
  font-size: clamp(1.95rem, 3.2vw, 3.1rem);
}

.section--problem .section-heading p {
  font-size: clamp(0.95rem, 1vw, 1.06rem);
  line-height: 1.55;
}

.section--problem .card-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.section--problem .glass-card {
  min-height: 156px;
  padding: 20px;
}

.section--problem .glass-card h3 {
  font-size: 1.08rem;
}

.section--problem .glass-card p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-card,
.reference-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.reference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(19, 121, 216, 0.34);
  background: var(--color-surface-strong);
}

.service-examples {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(8, 111, 209, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(217, 237, 255, 0.58));
  box-shadow: 0 14px 36px rgba(17, 58, 112, 0.08);
}

.service-examples__label {
  margin-bottom: 14px;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.service-examples article {
  padding: 18px;
  border: 1px solid rgba(8, 111, 209, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.service-examples h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-examples p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.message-compare,
.visitor-path,
.section-cta {
  margin-top: 30px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8, 111, 209, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(217, 237, 255, 0.62));
  box-shadow: 0 14px 36px rgba(17, 58, 112, 0.08);
}

.section--problem .message-compare {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr) minmax(230px, 0.38fr);
  gap: 16px;
  align-items: center;
  margin-top: 0;
  padding: 20px;
}

.section--problem .message-compare__label {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-bottom: 0;
  z-index: 1;
}

.section--problem .message-compare h3 {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  margin-bottom: 0;
  padding-top: 26px;
  max-width: 340px;
  font-size: clamp(1.15rem, 1.35vw, 1.34rem);
}

.message-compare__label,
.visitor-path__label,
.reference-card__tag {
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.message-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.section--problem .message-compare__grid {
  grid-column: 2;
  grid-row: 1 / 3;
  margin-top: 0;
}

.message-compare__card {
  padding: 20px;
  border: 1px solid rgba(8, 111, 209, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
}

.section--problem .message-compare__card {
  min-height: 100%;
  padding: 17px;
}

.message-compare__card--strong {
  border-color: rgba(111, 189, 139, 0.32);
  background: rgba(240, 249, 243, 0.76);
}

.message-compare__tag {
  margin-bottom: 12px;
  color: var(--color-slate);
  font-size: 0.86rem;
  font-weight: 900;
}

.message-compare blockquote {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.28;
}

.section--problem .message-compare blockquote {
  font-size: 0.98rem;
}

.section--problem .message-compare__card p:last-child {
  font-size: 0.86rem;
  line-height: 1.42;
}

.inline-cta {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-blue);
  font-weight: 900;
}

.section--problem .inline-cta {
  position: relative;
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 176px;
  height: 176px;
  margin-top: 0;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(19, 157, 247, 0.32);
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(145deg, var(--color-slate), var(--color-blue));
  box-shadow:
    0 22px 48px rgba(8, 111, 209, 0.28),
    0 0 0 10px rgba(255, 255, 255, 0.46),
    0 0 0 11px rgba(19, 121, 216, 0.16);
  font-size: 1.04rem;
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 2px 14px rgba(3, 16, 38, 0.24);
  white-space: normal;
}

.section--problem .inline-cta::after {
  position: absolute;
  inset: -34%;
  content: "";
  background: conic-gradient(from 0deg, transparent 0 34%, rgba(255, 255, 255, 0.46) 42%, transparent 50% 100%);
  opacity: 0.72;
  pointer-events: none;
  animation: ctaOrbitSheen 3.8s linear infinite;
}

.audience-panel {
  display: block;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(8, 111, 209, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(217, 237, 255, 0.72)),
    linear-gradient(90deg, rgba(19, 157, 247, 0.1), transparent 54%);
  box-shadow: var(--shadow-soft);
}

.section--services .section__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 1fr);
  grid-template-areas:
    "heading audience"
    "services services";
  gap: 18px clamp(20px, 3vw, 34px);
  align-items: center;
}

.section--services .section-heading,
.section--services .audience-panel {
  margin-bottom: 0;
}

.section--services .section-heading {
  grid-area: heading;
}

.section--services .section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.section--services .section-heading p,
.section--services .audience-panel p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.section--services .service-grid {
  grid-area: services;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.section--services .service-card {
  padding: 20px;
}

.section--services .service-card h3 {
  font-size: 1.1rem;
}

.section--services .service-card p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.section--services .audience-panel {
  grid-area: audience;
  padding: 16px;
}

.section--services .audience-panel h3 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
}

.section--services .audience-fit {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.section--services .audience-fit article {
  padding: 14px;
}

.section--services .audience-fit h4 {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.section--services .audience-fit ul {
  gap: 4px;
  font-size: 0.8rem;
  line-height: 1.32;
}

.audience-panel h3 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.audience-panel p {
  margin-bottom: 0;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.audience-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(8, 111, 209, 0.18);
  border-radius: 999px;
  color: var(--color-slate);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-tags span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(8, 111, 209, 0.16);
  border-radius: 999px;
  color: var(--color-slate);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 850;
}

.audience-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.audience-fit article {
  padding: 22px;
  border: 1px solid rgba(8, 111, 209, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.audience-fit__dark {
  color: white;
  background: linear-gradient(145deg, rgba(10, 35, 68, 0.96), rgba(8, 111, 209, 0.86)) !important;
}

.audience-fit h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.audience-fit ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--color-muted);
}

.audience-fit__dark ul {
  color: rgba(236, 247, 255, 0.82);
}

.audience-panel__aside {
  align-self: stretch;
  padding: 22px;
  border: 1px solid rgba(10, 35, 68, 0.12);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(10, 35, 68, 0.96), rgba(8, 111, 209, 0.86));
  box-shadow: 0 18px 44px rgba(7, 22, 46, 0.16);
}

.audience-panel__aside p {
  color: rgba(236, 247, 255, 0.8);
  font-weight: 700;
}

.audience-panel__label {
  margin-bottom: 12px;
  color: white !important;
  font-size: 0.82rem;
  font-weight: 900 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.pillar-list {
  display: grid;
  gap: 16px;
}

.pillar {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(8, 111, 209, 0.24);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(217, 237, 255, 0.7));
  box-shadow: 0 12px 34px rgba(17, 35, 66, 0.07);
}

.visitor-path {
  position: relative;
  overflow: hidden;
}

.visitor-path::before {
  position: absolute;
  right: -8%;
  bottom: 18%;
  left: 8%;
  height: 44px;
  border: 10px solid rgba(111, 189, 139, 0.12);
  border-left: 0;
  border-radius: 999px;
  content: "";
  transform: rotate(-3deg);
}

.visitor-path__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.visitor-path__steps article {
  padding: 18px;
  border: 1px solid rgba(8, 111, 209, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.visitor-path__steps span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--color-slate), var(--color-blue));
  font-weight: 900;
}

.visitor-path__steps h4 {
  margin: 0 0 8px;
}

.visitor-path__steps p {
  margin: 0;
  font-size: 0.9rem;
}

.pillar span,
.timeline__item span,
.about-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--color-slate), var(--color-blue));
  font-weight: 900;
}

.timeline__item:nth-child(1) span {
  color: #0f5132;
  background: linear-gradient(145deg, #d8f7df, #a6e7b1);
}

.timeline__item:nth-child(2) span {
  color: #0f5132;
  background: linear-gradient(145deg, #b9efc4, #77d98e);
}

.timeline__item:nth-child(3) span {
  background: linear-gradient(145deg, #65cc83, #239c57);
}

.timeline__item:nth-child(4) span {
  background: linear-gradient(145deg, #2c9f5a, #0b6b3f);
}

.timeline__item:nth-child(5) span {
  color: white;
  background: linear-gradient(145deg, #ff6b5f, #c81e1e);
}

.reference-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-blue-light);
  font-weight: 900;
}

.reference-mockup {
  position: relative;
  height: 150px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(8, 111, 209, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(217,237,255,0.72));
}

.reference-mockup::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 26px;
  content: "";
  background: rgba(10, 35, 68, 0.86);
}

.reference-mockup span,
.reference-mockup i,
.reference-mockup b,
.reference-mockup em {
  position: absolute;
  display: block;
  border-radius: 12px;
  content: "";
}

.reference-mockup span {
  top: 42px;
  left: 18px;
  width: 46%;
  height: 40px;
  background: var(--color-slate);
}

.reference-mockup i {
  top: 96px;
  left: 18px;
  width: 34%;
  height: 16px;
  background: rgba(8, 111, 209, 0.28);
}

.reference-mockup b {
  top: 44px;
  right: 18px;
  width: 32%;
  height: 68px;
  background: rgba(111, 189, 139, 0.28);
}

.reference-mockup em {
  right: 18px;
  bottom: 16px;
  left: 18px;
  height: 20px;
  background: rgba(8, 111, 209, 0.14);
}

.reference-card--warm .reference-mockup b { background: rgba(173, 123, 63, 0.26); }
.reference-card--blue .reference-mockup b { background: rgba(8, 111, 209, 0.24); }
.reference-card--gift .reference-mockup b { background: rgba(126, 87, 255, 0.22); }

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-cta h3,
.section-cta p {
  margin-bottom: 0;
}

.section-cta--compact {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline__item {
  position: relative;
  min-height: 198px;
  padding: 18px;
  border: 1px solid rgba(8, 111, 209, 0.22);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(217, 237, 255, 0.76));
  box-shadow: 0 12px 34px rgba(17, 58, 112, 0.08);
}

.timeline__item h3 {
  margin-top: 22px;
  font-size: 1rem;
}

.timeline__item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.price-card--featured {
  border-color: rgba(8, 111, 209, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), var(--color-soft-blue)),
    linear-gradient(135deg, rgba(19, 121, 216, 0.08), transparent);
  box-shadow: var(--shadow-blue);
  transform: translateY(-12px);
}

.price-card h3 {
  margin-top: 18px;
  font-size: 1.7rem;
}

.price-card__price {
  display: inline-grid;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(8, 111, 209, 0.18);
  border-radius: 14px;
  color: var(--color-blue);
  background: linear-gradient(145deg, rgba(217, 237, 255, 0.9), rgba(255, 255, 255, 0.88));
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.price-card__price span {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--color-slate);
  font-weight: 800;
  text-align: center;
}

.price-card ul,
.about-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 28px;
  color: var(--color-muted);
  list-style: none;
}

.price-card li,
.about-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before,
.about-card li::before {
  position: absolute;
  left: 0;
  color: var(--color-blue-light);
  content: "✓";
  font-weight: 900;
}

.price-card .button {
  margin-top: auto;
}

.split--about {
  align-items: center;
}

.about-card {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.about-card span {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  font-size: 2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.proof-grid div {
  padding: 14px;
  border: 1px solid rgba(8, 111, 209, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.66);
}

.proof-grid strong,
.proof-grid small {
  display: block;
}

.proof-grid strong {
  color: var(--color-slate);
  font-size: 1.05rem;
  font-weight: 900;
}

.proof-grid small {
  margin-top: 4px;
  color: var(--color-muted);
  font-weight: 750;
  line-height: 1.25;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(19, 121, 216, 0.14);
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 24px 58px 24px 24px;
  border: 0;
  color: var(--color-text);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  position: absolute;
  right: 24px;
  content: "+";
  color: var(--color-blue-light);
  font-size: 1.5rem;
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item__answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__answer p {
  padding-bottom: 24px;
}

.contact-section {
  padding-bottom: clamp(88px, 10vw, 150px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.contact-details {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(8, 111, 209, 0.2);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(217, 237, 255, 0.72));
  box-shadow: 0 14px 38px rgba(17, 58, 112, 0.1);
}

.contact-details__photo {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 12px 28px rgba(17, 58, 112, 0.14);
}

.contact-details p {
  margin-bottom: 0;
}

.contact-details__label {
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details__name {
  margin-top: 8px;
  color: var(--color-text);
  font-size: 1.28rem;
  font-weight: 900;
}

.contact-details__phone {
  display: inline-flex;
  margin-top: 6px;
  color: var(--color-slate);
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-lg);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.18, 0.88, 0.28, 1),
    box-shadow 260ms ease;
}

.contact-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form-placeholder {
  min-height: 1px;
}

.form-focus-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 111, 209, 0.16), transparent 38rem),
    rgba(3, 16, 38, 0.68);
  opacity: 0;
  transition: opacity 260ms ease;
}

body.form-focus-active {
  overflow: hidden;
}

body.form-focus-active .form-focus-overlay {
  pointer-events: auto;
  opacity: 1;
}

body.form-focus-active .contact-form {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 90;
  width: min(820px, calc(100vw - 40px));
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(145deg, #ffffff, #eef8ff);
  box-shadow:
    0 34px 90px rgba(3, 16, 38, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    0 0 0 10px rgba(19, 157, 247, 0.08);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-slate);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 111, 209, 0.22);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  background: rgba(241, 248, 255, 0.95);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-blue-light);
  box-shadow: 0 0 0 4px rgba(19, 121, 216, 0.14);
}

.contact-form__wide,
.form-message {
  grid-column: 1 / -1;
}

.contact-form__trust {
  margin: -2px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(111, 189, 139, 0.22);
  border-radius: var(--radius-sm);
  color: var(--color-slate);
  background: rgba(240, 249, 243, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-message {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(22, 137, 238, 0.24);
  border-radius: var(--radius-sm);
  color: var(--color-slate);
  background: var(--color-soft-blue);
  font-weight: 800;
}

.form-message.is-error {
  border-color: rgba(200, 30, 30, 0.28);
  color: #7f1d1d;
  background: #fff1f1;
}

.form-message.is-visible {
  display: block;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(3, 16, 38, 0.98), rgba(8, 54, 119, 0.94) 48%, rgba(8, 111, 209, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  max-width: 620px;
}

.site-footer nav a {
  color: rgba(236, 247, 255, 0.78);
  transition: color 180ms ease;
}

.site-footer nav a:hover {
  color: white;
}

.site-footer .brand {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer .brand__word {
  color: var(--color-blue-light);
}

.site-footer .brand__word span {
  color: white;
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(236, 247, 255, 0.78);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 780ms cubic-bezier(0.18, 0.88, 0.28, 1.12);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--left {
  transform: translate3d(-56px, 18px, 0) scale(0.985);
}

.reveal--right {
  transform: translate3d(56px, 18px, 0) scale(0.985);
}

.hero-card.reveal {
  transform: translate3d(96px, 22px, 0) scale(0.965);
  transition:
    opacity 1500ms ease,
    transform 1700ms cubic-bezier(0.16, 0.84, 0.22, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 220ms);
}

.reveal--pop {
  transform: translate3d(0, 32px, 0) scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

#weboldalkeszites.cards-wave .card-grid--four .glass-card.is-visible {
  animation: cardKeyWave 980ms cubic-bezier(0.18, 0.86, 0.26, 1) both;
}

#weboldalkeszites.cards-wave .card-grid--four .glass-card:nth-child(1) {
  animation-delay: 0ms;
}

#weboldalkeszites.cards-wave .card-grid--four .glass-card:nth-child(2) {
  animation-delay: 110ms;
}

#weboldalkeszites.cards-wave .card-grid--four .glass-card:nth-child(3) {
  animation-delay: 220ms;
}

#weboldalkeszites.cards-wave .card-grid--four .glass-card:nth-child(4) {
  animation-delay: 330ms;
}

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

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

@keyframes haloSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes buttonSheen {
  0%,
  42% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes ctaOrbitSheen {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cardKeyWave {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
    box-shadow: 0 12px 30px rgba(17, 58, 112, 0.08);
  }

  22% {
    transform: translate3d(0, 12px, 0) rotateX(10deg) scale(0.985);
    box-shadow: 0 8px 18px rgba(17, 58, 112, 0.06);
  }

  48% {
    transform: translate3d(0, -7px, 0) rotateX(-4deg) scale(1.015);
    box-shadow: 0 20px 42px rgba(17, 58, 112, 0.12);
  }

  72% {
    transform: translate3d(0, 3px, 0) rotateX(2deg) scale(0.995);
  }

  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
    box-shadow: 0 12px 30px rgba(17, 58, 112, 0.08);
  }
}

@media (min-width: 1081px) {
  .section[data-step="6"] .section-heading,
  .section[data-step="8"] .section-heading,
  .section[data-step="9"] .section-heading {
    margin-bottom: 28px;
  }

  .section[data-step="6"] .section-heading p,
  .section[data-step="8"] .section-heading p,
  .section[data-step="9"] .section-heading p {
    margin-bottom: 0;
  }

  .section[data-step="6"] .reference-card {
    padding: 22px;
  }

  .section[data-step="6"] .reference-card p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .section[data-step="6"] .section-cta {
    margin-top: 24px;
    padding: 20px 24px;
  }

  .section[data-step="7"] .section-heading {
    margin-bottom: 34px;
  }

  .section[data-step="7"] .section-cta {
    margin-top: 24px;
    padding: 20px 24px;
  }

  .section[data-step="8"] .pricing-grid {
    gap: 16px;
  }

  .section[data-step="8"] .price-card {
    padding: 22px;
  }

  .section[data-step="8"] .price-card h3 {
    margin-top: 14px;
    font-size: 1.48rem;
  }

  .section[data-step="8"] .price-card p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .section[data-step="8"] .price-card__price {
    margin-bottom: 14px;
    padding: 10px 14px;
    font-size: clamp(1.05rem, 1.2vw, 1.26rem);
  }

  .section[data-step="8"] .price-card ul {
    gap: 7px;
    margin: 14px 0 20px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .section[data-step="8"] .price-card .button {
    min-height: 44px;
    padding: 11px 16px;
  }

  .section[data-step="8"] .pricing-note {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .section[data-step="9"] .faq-item button {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .section[data-step="9"] .section-cta {
    margin-top: 24px;
    padding: 18px 22px;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  .section--problem .section__inner,
  .section--services .section__inner {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .section--services .section-heading,
  .section--services .service-grid,
  .section--services .audience-panel {
    grid-area: auto;
  }

  .section--problem .message-compare {
    grid-template-columns: 1fr;
  }

  .section--problem .inline-cta {
    width: fit-content;
    min-height: 46px;
  }

  .card-grid--four,
  .timeline,
  .visitor-path__steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .timeline__item {
    min-height: 140px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .site-header .site-nav a:not(.nav-cta) {
    color: var(--color-slate);
  }

  .site-header .site-nav a:not(.nav-cta):hover {
    color: var(--color-blue);
  }

  .site-nav .nav-cta {
    margin-top: 8px;
  }

  .hero__grid,
  .split,
  .contact-grid,
  .audience-panel,
  .section--problem .section__inner,
  .section--services .section__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: clamp(58px, 8vw, 82px);
  }

  .hero__content {
    min-height: auto;
    gap: 28px;
    padding: 0;
  }

  .card-grid--three,
  .message-compare__grid,
  .audience-fit,
  .section--problem .card-grid--four,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card--featured {
    transform: none;
  }
}

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

  .site-header {
    padding: 13px 14px;
  }

  .brand__word {
    font-size: 1.18rem;
  }

  .brand__tagline {
    display: none;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero__actions,
  .button,
  .nav-cta {
    width: 100%;
  }

  .reveal--left,
  .reveal--right,
  .hero-card.reveal {
    transform: translate3d(0, 24px, 0) scale(0.985);
  }

  .card-grid--four,
  .section--problem .card-grid--four,
  .timeline,
  .service-grid,
  .section--services .service-grid,
  .visitor-path__steps,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section--problem .message-compare,
  .section--problem .message-compare__grid,
  .section--services .audience-fit {
    grid-template-columns: 1fr;
  }

  .section--problem .message-compare__label,
  .section--problem .message-compare h3,
  .section--problem .message-compare__grid,
  .section--problem .inline-cta {
    grid-column: auto;
    grid-row: auto;
  }

  .message-compare,
  .visitor-path,
  .section-cta {
    padding: 20px;
  }

  .section--problem .inline-cta {
    width: 100%;
    justify-content: center;
  }

  .message-compare blockquote {
    font-size: 1rem;
  }

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

  .audience-panel {
    padding: 22px;
  }

  .audience-tags span {
    width: 100%;
  }

  .contact-form__wide,
  .form-message {
    grid-column: auto;
  }

  .footer__inner {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-card__visual--portrait,
  .hero-card__visual--portrait::before {
    animation: none;
  }
}
