﻿/* =========================
   BASE új css fájl, a régi style.css helyett
========================= */

:root {
  --color-ink: #0f172a;
  --color-muted: #64748b;
  --color-line: #e2e8f0;
  --color-bg: #f8fafc;
  --color-card: #ffffff;
  --color-teal: #14b8a6;
  --color-blue: #3b82f6;
  --color-rose: #b85c7a;
  --color-blush: #fff4f6;
  --color-warm: #fffaf7;
  --color-gold: #d6b66a;
  --eyebrow-light: #475569;
  --eyebrow-dark: #67e8f9;
  --aura-dot-dark:
    radial-gradient(circle at 25% 20%, rgba(45, 212, 191, .42), transparent 46%),
    linear-gradient(135deg, #132238 0%, #123436 52%, #0f172a 100%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 70px rgba(15, 23, 42, .10);
  --container-narrow: 860px;
  --tap-target: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(88px + env(safe-area-inset-top, 0px));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  min-width: 0;
}

.page-hero,
.hero-section,
.section-padding,
.site-footer {
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
}

button,
.btn,
input,
select,
textarea,
summary {
  min-height: var(--tap-target);
}

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

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

/* =========================
   SKIP LINK
========================= */

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  z-index: 9999;
  background: var(--color-ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* =========================
   HEADER / NAVBAR
   alap = mobil
========================= */

.site-header {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  right: 0;
  left: 0;
  z-index: 1000;

  background: rgba(248, 250, 252, .88);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(226, 232, 240, .8);

  transition:
    background .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.site-header + main {
  padding-top: 4.75rem;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 252, .96);
  border-bottom-color: rgba(226, 232, 240, .95);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.navbar {
  padding: .75rem 0;
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .22rem;
  text-transform: uppercase;

  color: var(--color-ink) !important;
  text-decoration: none;

  transition: opacity .2s ease;
}

.navbar-brand:hover {
  opacity: .75;
}

.navbar-collapse {
  margin-top: .85rem;
}

.navbar-nav {
  gap: .15rem;
}

.nav-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  width: 100%;

  font-weight: 700;
  color: var(--color-ink) !important;

  text-decoration: none;

  padding: .55rem 0;
}

.nav-link:hover,
.nav-link:focus {
  color: #0d9488 !important;
}



.nav-link.active::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;
  bottom: .15rem;

  width: 2.25rem;
  height: 2px;

  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
}

/* =========================
   HASZNOS MOBIL ALMENÜ
========================= */

.nav-mobile-label {
  display: block;

  padding: .75rem 0 .25rem;

  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: var(--color-ink);
  opacity: 1;
}

.nav-sub-link {
  margin: .18rem 0;
  padding: .72rem .95rem .72rem 1.15rem;
  border-radius: 14px;
  color: var(--color-ink) !important;
  font-size: .95rem;
  font-weight: 800;
  background:
    radial-gradient(circle at 94% 20%, rgba(124, 58, 237, .07), transparent 34%),
    linear-gradient(90deg, rgba(20, 184, 166, .09), rgba(255, 255, 255, .50) 68%, transparent);
}

.nav-sub-link::before {
  content: "";
  display: inline-block;
  width: .46rem;
  height: .46rem;
  margin-right: .52rem;
  border-radius: 999px;
  background: var(--aura-dot-dark);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .08);
  font-weight: 900;
}

.nav-link.nav-sub-link.active {
  color: #0d9488 !important;
}

.nav-link.nav-sub-link.active::after {
  display: none;
}

/* =========================
   DROPDOWN DESKTOP ALAP STÍLUS
========================= */

.dropdown-menu {
  margin-top: .65rem;
  min-width: 220px;

  padding: .45rem;

  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 1rem;

  background:
    radial-gradient(circle at 92% 12%, rgba(20, 184, 166, .13), transparent 36%),
    radial-gradient(circle at 12% 92%, rgba(124, 58, 237, .09), transparent 34%),
    rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);

  box-shadow:
    0 18px 40px rgba(15, 23, 42, .08),
    0 4px 14px rgba(15, 23, 42, .05);
}

.dropdown-item {
  border-radius: .75rem;
  padding: .7rem .9rem;

  font-size: .95rem;
  font-weight: 600;

  color: var(--color-ink);

  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(20, 184, 166, .05);
  color: var(--color-teal);
  transform: translateX(2px);
}

.dropdown-item.active,
.dropdown-item:active {
  color: #0d9488;
  background: rgba(20, 184, 166, .12);
}

.dropdown-toggle::after {
  margin-left: .45rem;
  vertical-align: .15rem;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 800;
  padding: .78rem 1.25rem;
  text-align: center;
  white-space: normal;

  transition:
    color .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    transform .28s ease;
}

.btn-primary {
  color: #0f172a;
  border: 1px solid rgba(20, 184, 166, .24);
  background:
    radial-gradient(circle at 18% 0%, rgba(45, 212, 191, .32), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(235, 252, 249, .78) 54%, rgba(240, 247, 255, .82));
  backdrop-filter: blur(14px) saturate(1.18);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, .12),
    0 0 0 1px rgba(255, 255, 255, .54) inset,
    inset 0 1px 0 rgba(255, 255, 255, .90);
}

.btn-primary:hover {
  color: #0f172a;
  transform: translateY(-1px);
  border-color: rgba(20, 184, 166, .36);
  background:
    radial-gradient(circle at 18% 0%, rgba(45, 212, 191, .42), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(224, 252, 247, .84) 54%, rgba(239, 246, 255, .90));
  box-shadow:
    0 18px 40px rgba(15, 23, 42, .14),
    0 0 0 5px rgba(20, 184, 166, .08),
    0 0 0 1px rgba(255, 255, 255, .68) inset,
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.btn-outline-dark {
  color: #0f172a;
  border-color: rgba(15, 23, 42, .14);
  background: rgba(255, 255, 255, .44);
  backdrop-filter: blur(12px) saturate(1.12);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, .06),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.btn-outline-dark:hover {
  color: #0f172a;
  border-color: rgba(20, 184, 166, .24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(240, 253, 250, .68));
  box-shadow:
    0 14px 30px rgba(15, 23, 42, .09),
    0 0 0 4px rgba(20, 184, 166, .06),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  transform: translateY(-1px);
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 992px) {
  .navbar-brand {
    font-size: 1.15rem;
    letter-spacing: .28rem;
  }

  .navbar-collapse {
    margin-top: 0;
  }

  .navbar-nav {
    gap: .5rem;
  }

  .nav-link {
    width: auto;
    padding: .5rem 0;
  }

  .nav-link.active::after {
    width: 100%;
    bottom: .05rem;
  }
}

/* =========================
   HERO
   alap = mobil
========================= */

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 3.05rem 0 2.9rem;

  background:
    radial-gradient(circle at 84% 10%, rgba(0, 210, 255, .16), transparent 30%),
    radial-gradient(circle at 92% 42%, rgba(157, 80, 187, .08), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(59, 130, 246, .11), transparent 34%),
    radial-gradient(circle at 10% 88%, rgba(184, 92, 122, .06), transparent 28%),
    linear-gradient(115deg, #fbfdff 0%, #f4f9fb 52%, #f1fffb 100%);
}

.hero-section::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
    radial-gradient(circle at 18% 24%, rgba(20, 184, 166, .13), transparent 14rem),
    radial-gradient(circle at 78% 38%, rgba(124, 58, 237, .10), transparent 18rem);
  background-size:
    86px 86px,
    86px 86px,
    auto,
    auto;

  opacity: .52;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  pointer-events: none;

  animation: heroLayerDrift 22s ease-in-out infinite alternate;
}

.hero-section::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, .36) 48%, transparent 62%);

  opacity: .42;
  transform: translateX(-22%);

  animation: heroAuraSweep 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-section .eyebrow {
  align-items: center;

  font-size: 1.12rem;
  letter-spacing: .06em;
  line-height: 1.1;
}

.hero-section .eyebrow::before {
  width: .55em;
  height: .55em;

  background: var(--aura-dot-dark);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, .05);

  transform: translateY(-.02em);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  margin-bottom: 1rem;

  color: var(--eyebrow-light);

  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  flex: 0 0 auto;

  width: .65rem;
  height: .65rem;

  border-radius: 50%;

  background: var(--aura-dot-dark);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, .05);
}

h1,
h2,
h3 {
  font-family: "Montserrat", "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--color-ink);
  text-wrap: balance;
}

h1 {
  max-width: 780px;

  margin-bottom: 1.2rem;

  font-size: 2.35rem;
  font-weight: 700;
}

.hero-section h1 {
  font-size: 2.18rem;
}

.hero-title-accent {
  color: inherit;
}

.hero-lead {
  max-width: 680px;

  margin-bottom: 1.25rem;

  color: #334155;

  font-size: 1.06rem;
  line-height: 1.64;
}

.hero-actions {
  display: grid;
  gap: .65rem;

  margin: 1.35rem 0 0;
}

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

.hero-mobile-motifs {
  display: none;
}

.hero-section .hero-actions .btn-primary {
  color: #fff;
  border-color: rgba(20, 184, 166, .30);
  background:
    radial-gradient(circle at 18% 0%, rgba(45, 212, 191, .34), transparent 34%),
    linear-gradient(135deg, #132238 0%, #123436 52%, #0f172a 100%);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, .22),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.hero-section .hero-actions .btn-primary:hover {
  color: #fff;
  border-color: rgba(45, 212, 191, .42);
  background:
    radial-gradient(circle at 18% 0%, rgba(45, 212, 191, .44), transparent 36%),
    linear-gradient(135deg, #172a43 0%, #123f40 54%, #111827 100%);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, .24),
    0 0 0 4px rgba(20, 184, 166, .08),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.hero-section .hero-actions .btn-outline-dark {
  color: #0f172a;
  border-color: rgba(15, 23, 42, .18);
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.hero-section .hero-actions .btn-outline-dark:hover {
  color: #0f172a;
  border-color: rgba(20, 184, 166, .28);
  background:
    linear-gradient(135deg, rgba(240, 253, 250, .86), rgba(255, 255, 255, .76));
  box-shadow:
    0 14px 30px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .88);
}

.hero-mobile-preview {
  position: relative;
  isolation: isolate;

  display: grid;
  gap: .62rem;

  margin-top: 1.8rem;
  margin-inline: auto;
  padding: .72rem;
  width: min(17.5rem, 100%);
  min-height: 24rem;

  overflow: hidden;

  border: 1px solid rgba(20, 184, 166, .18);
  border-radius: 30px;

  background:
    radial-gradient(circle at 82% 14%, rgba(34, 211, 238, .17), transparent 34%),
    radial-gradient(circle at 18% 92%, rgba(124, 58, 237, .10), transparent 36%),
    linear-gradient(145deg, rgba(15, 23, 42, .96), rgba(15, 118, 110, .86));

  color: #fff;
  box-shadow:
    0 24px 52px rgba(15, 23, 42, .20),
    inset 0 1px 0 rgba(255, 255, 255, .10);
}

.hero-mobile-preview::before {
  content: "";
  position: absolute;
  inset: -45% auto -35% -24%;
  z-index: -1;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  transform: rotate(14deg);
  animation: heroAuraSweep 8.5s ease-in-out infinite alternate;
}

.hero-mobile-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;

  color: rgba(226, 232, 240, .82);
  font-size: .66rem;
  font-weight: 900;
}

.hero-mobile-preview__top strong {
  padding: .32rem .55rem;
  border: 1px solid rgba(103, 232, 249, .22);
  border-radius: 999px;
  color: #67e8f9;
  font-size: .58rem;
}

.hero-mobile-preview__screen {
  display: grid;
  align-content: start;
  gap: .52rem;
  min-height: 19.5rem;
  padding: 1rem .88rem;

  border: 1px solid rgba(226, 232, 240, .12);
  border-radius: 22px;

  background: rgba(2, 6, 23, .30);
}

.hero-mobile-preview__status {
  display: flex;
  gap: .28rem;
  margin-bottom: .15rem;
  padding: 0;
}

.hero-mobile-preview__status i {
  display: block;
  width: .34rem;
  height: .34rem;
  border-radius: 999px;
  background: rgba(226, 232, 240, .42);
}

.hero-mobile-preview__status i:first-child {
  background: #67e8f9;
}

.hero-mobile-preview__screen > span {
  color: #67e8f9;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-mobile-preview__screen h2 {
  max-width: 12rem;
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.12;
}

.hero-mobile-preview__screen p {
  margin: 0;
  color: rgba(226, 232, 240, .78);
  font-size: .82rem;
  line-height: 1.5;
}

.hero-mobile-preview__screen strong {
  justify-self: start;
  min-height: 2rem;
  padding: .46rem .68rem;
  border-radius: 999px;
  color: #06111f;
  background: linear-gradient(135deg, #22d3ee, #60a5fa);
  font-size: .7rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(34, 211, 238, .20);
}

.hero-mobile-preview__lines {
  display: grid;
  gap: .34rem;
  margin-top: .7rem;
  padding: .78rem;
  border: 1px solid rgba(226, 232, 240, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

.hero-mobile-preview__lines i {
  display: block;
  height: .55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 232, 249, .70), rgba(255, 255, 255, .12));
}

.hero-mobile-preview__lines i:nth-child(2) {
  width: 78%;
}

.hero-mobile-preview__lines i:nth-child(3) {
  width: 54%;
}

.hero-mobile-preview__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .34rem;
  margin-top: auto;
}

.hero-mobile-preview__tabs b {
  min-height: 1.45rem;
  border: 1px solid rgba(103, 232, 249, .14);
  border-radius: 999px;
  background: rgba(15, 23, 42, .34);
}

.hero-mobile-preview__tabs b:first-child {
  background: rgba(103, 232, 249, .18);
}

@media (max-width: 575.98px) {
  .site-header--home {
    position: fixed;
    top: env(safe-area-inset-top, 0px);
    right: 0;
    left: 0;

    padding: .9rem .78rem .6rem;

    background:
      linear-gradient(180deg, rgba(3, 6, 7, .98), rgba(3, 6, 7, .82) 72%, transparent);
    border-bottom: 0;
    backdrop-filter: none;
  }

  .site-header--home + main {
    padding-top: 5.75rem;
    background: #030607;
  }

  .site-header--home.is-scrolled {
    background: #030607;
    border-bottom-color: transparent;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .26);
  }

  .site-header--home .navbar {
    position: relative;

    padding: .62rem 1.2rem;

    border: 2px solid rgba(0, 213, 255, .92);
    border-radius: 999px;

    background:
      radial-gradient(circle at 50% 120%, rgba(0, 213, 255, .10), transparent 42%),
      rgba(0, 0, 0, .88);

    box-shadow:
      0 0 34px rgba(0, 213, 255, .10),
      inset 0 1px 0 rgba(255, 255, 255, .06);
  }

  .site-header--home .navbar > .container {
    position: static;
    padding-inline: 0;
  }

  .site-header--home .navbar-brand {
    color: #fff !important;
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-header--home .navbar-brand span:last-child {
    background: linear-gradient(90deg, #00d5ff 0%, #497cff 50%, #d24cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .site-header--home .navbar-toggler {
    position: relative;

    width: 2.55rem;
    height: 2.55rem;
    padding: 0;

    border: 0;
    border-radius: 999px;
    box-shadow: none;
  }

  .site-header--home .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 213, 255, .20);
  }

  .site-header--home .navbar-toggler-icon {
    position: relative;

    width: 1.95rem;
    height: 1.45rem;

    background-image: none;
    filter: none;
  }

  .site-header--home .navbar-toggler-icon::before,
  .site-header--home .navbar-toggler-icon::after,
  .site-header--home .navbar-toggler-icon {
    transition:
      transform .28s ease,
      opacity .28s ease,
      background-color .28s ease;
  }

  .site-header--home .navbar-toggler-icon::before,
  .site-header--home .navbar-toggler-icon::after {
    content: "";

    position: absolute;
    right: 0;
    left: 0;

    height: 3px;
    border-radius: 999px;

    background: #fff;
  }

  .site-header--home .navbar-toggler-icon {
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }

  .site-header--home .navbar-toggler-icon::before {
    top: calc(50% - 1.5px);
  }

  .site-header--home .navbar-toggler-icon::after {
    display: none;
  }

  .site-header--home .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
  }

  .site-header--home .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    background: #00d5ff;
    transform: rotate(45deg);
  }

  .site-header--home .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    display: block;
    top: calc(50% - 1.5px);
    background: #00d5ff;
    transform: rotate(-45deg);
  }

  .site-header--home .navbar-collapse {
    position: absolute;
    top: calc(100% + 1.05rem);
    right: 0;
    left: 0;
    z-index: 20;

    margin-top: 0;
    padding: 2.05rem 1.4rem;

    border: 1px solid rgba(0, 213, 255, .58);
    border-radius: 24px;

    background:
      radial-gradient(circle at 50% 0%, rgba(0, 213, 255, .12), transparent 42%),
      rgba(0, 0, 0, .88);
    backdrop-filter: blur(14px) saturate(1.08);

    box-shadow:
      0 26px 70px rgba(0, 0, 0, .42),
      inset 0 1px 0 rgba(255, 255, 255, .06);
  }

  .site-header--home .navbar-nav {
    align-items: center;
    gap: .58rem;
  }

  .site-header--home .nav-link,
  .site-header--home .nav-sub-link {
    justify-content: center;
    width: auto;
    margin: 0;
    padding: .35rem .5rem;

    color: #fff !important;
    background: transparent;

    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
  }

  .site-header--home .nav-link.active::after,
  .site-header--home .nav-sub-link::before,
  .site-header--home .nav-mobile-label {
    display: none;
  }

  .site-header--home .nav-link:hover,
  .site-header--home .nav-link:focus {
    color: #00d5ff !important;
  }

  .site-header--home .navbar-nav .nav-item:last-child .nav-link {
    margin-top: .55rem;
    padding: .72rem 1.55rem;

    border: 1px solid rgba(0, 213, 255, .92);
    border-radius: 999px;

    color: #fff !important;
    background: rgba(0, 0, 0, .22);

    font-weight: 900;
  }

  .hero-section {
    padding: 4.65rem 0 2.65rem;

    background:
      radial-gradient(circle at 50% -4%, rgba(0, 213, 255, .20), transparent 13rem),
      radial-gradient(circle at 86% 26%, rgba(239, 68, 168, .18), transparent 15rem),
      radial-gradient(circle at 10% 74%, rgba(0, 213, 255, .035), transparent 16rem),
      linear-gradient(180deg, #030607 0%, #020304 56%, #050710 100%);

    color: #fff;
  }

  .hero-section::before {
    background: none;
    opacity: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-section::after {
    background: none;
    opacity: 0;
    transform: none;
    animation: none;
  }

  .hero-section .eyebrow {
    display: none;
  }

  .hero-section .eyebrow::before {
    background: #67e8f9;
    box-shadow:
      0 0 0 3px rgba(103, 232, 249, .10),
      0 0 22px rgba(103, 232, 249, .28);
  }

  .hero-section h1 {
    max-width: 22rem;
    margin-inline: auto;
    margin-bottom: 1.35rem;

    color: #fff;

    font-size: clamp(2.35rem, 11.2vw, 3rem);
    line-height: 1.04;
    text-align: left;
  }

  .hero-title-accent {
    background: linear-gradient(90deg, #00d5ff 0%, #d24cff 48%, #ff4f7b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-lead {
    max-width: 21.5rem;
    margin-inline: auto;

    color: rgba(226, 232, 240, .68);

    font-size: 1.2rem;
    line-height: 1.72;
    text-align: left;
  }

  .hero-actions {
    animation: mobileHeroCtaIn 1.65s cubic-bezier(.16, 1, .3, 1) .36s both;
  }

  .hero-section .hero-actions .btn-primary {
    border-color: rgba(255, 255, 255, .22);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06)),
      radial-gradient(circle at 18% 0%, rgba(103, 232, 249, .24), transparent 36%),
      rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px) saturate(1.14);
    box-shadow:
      0 18px 42px rgba(2, 6, 23, .32),
      inset 0 1px 0 rgba(255, 255, 255, .24);
  }

  .hero-mobile-motifs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .72rem;

    margin-top: 1.2rem;
  }

  .hero-mobile-motifs span {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: grid;
    place-items: center;
    gap: .35rem;

    min-height: 5.65rem;
    padding: .82rem .48rem;

    border: 1px solid rgba(0, 213, 255, .22);
    border-radius: 22px;

    background:
      linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .03)),
      rgba(8, 10, 14, .84);
    backdrop-filter: blur(12px) saturate(1.12);

    box-shadow:
      0 16px 36px rgba(0, 0, 0, .30),
      inset 0 1px 0 rgba(255, 255, 255, .10);
  }

  .hero-mobile-motifs span::before {
    content: "";

    position: absolute;
    inset: auto -12% -34%;
    z-index: -1;

    height: 70%;

    background: radial-gradient(circle, rgba(0, 213, 255, .18), transparent 66%);
    pointer-events: none;
  }

  .hero-mobile-motifs span:nth-child(2)::before {
    background: radial-gradient(circle, rgba(73, 124, 255, .18), transparent 66%);
  }

  .hero-mobile-motifs span:nth-child(3)::before {
    background: radial-gradient(circle, rgba(239, 68, 168, .18), transparent 66%);
  }

  .hero-mobile-motifs i {
    display: inline-grid;
    place-items: center;

    width: 2.05rem;
    height: 2.05rem;

    border-radius: 999px;

    color: #00d5ff;
    background: rgba(0, 213, 255, .10);

    font-size: 1rem;
    line-height: 1;
  }

  .hero-mobile-motifs b {
    color: rgba(248, 250, 252, .92);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
  }

  .hero-mobile-preview {
    display: none;
  }

  .proof-section.section-dark {
    padding-top: 3.15rem;
    padding-bottom: 3.9rem;

    background:
      radial-gradient(circle at 86% -22%, rgba(239, 68, 168, .08), transparent 17rem),
      radial-gradient(circle at 50% -34%, rgba(0, 213, 255, .12), transparent 16rem),
      linear-gradient(180deg, #050710 0%, #030607 44%, #030607 100%);
  }

  .proof-section.section-dark::before {
    background: none;
    opacity: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .proof-section .section-heading {
    position: relative;

    max-width: 22rem;
    margin-inline: auto;
    margin-bottom: 2.25rem;
    padding-left: 1.15rem;
  }

  .proof-section .section-heading::after {
    content: "";

    position: absolute;
    top: .18rem;
    bottom: .22rem;
    left: 0;

    width: 3px;

    border-radius: 999px;
    background: linear-gradient(180deg, #00d5ff, rgba(239, 68, 168, .36));
    box-shadow: 0 0 18px rgba(0, 213, 255, .14);
  }

  .proof-section .section-heading h2 {
    color: #fff;
    font-size: 2.02rem;
    line-height: 1.08;
    text-align: left;
  }

  .proof-section .section-heading p {
    color: rgba(226, 232, 240, .68);
    font-size: 1.04rem;
    line-height: 1.72;
    text-align: left;
  }

  .service-proof {
    gap: 1rem;
    margin-top: 2.1rem;
  }

  .proof-section.section-dark .proof-card {
    padding: 1.15rem 0 1.15rem 1.35rem;

    border: 0;
    border-radius: 0;

    background: transparent;
    backdrop-filter: none;

    box-shadow: none;
  }

  .proof-section.section-dark .proof-card::before {
    content: "";
    top: 1.25rem;
    bottom: 1.25rem;
    left: 0;

    width: 3px;
    height: auto;

    border-radius: 999px;
    background: linear-gradient(180deg, #00d5ff, rgba(239, 68, 168, .46));
    box-shadow: 0 0 18px rgba(0, 213, 255, .16);
  }

  .proof-section.section-dark .proof-card strong {
    padding-top: 0;
    margin-bottom: .42rem;

    color: #fff;
    font-size: 1.24rem;
    line-height: 1.22;
  }

  .proof-section.section-dark .proof-card span {
    color: rgba(226, 232, 240, .68);
    font-size: 1rem;
    line-height: 1.72;
  }
}

.trust-list {
  display: grid;
  gap: .55rem;

  padding: 0;
  margin: 0;

  list-style: none;

  color: var(--color-muted);

  font-size: .94rem;
  font-weight: 700;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
}

.trust-list li::before {
  content: "✓";

  color: #0d9488;
  font-weight: 900;
}

.trust-list--desktop {
  gap: .45rem;

  margin-top: .85rem;
}

.hero-showcase {
  position: relative;

  min-height: 0;
  padding: 1.1rem 0 0;

  isolation: isolate;
}

.hero-showcase::before {
  content: "";

  position: absolute;
  inset: 2.5rem -1rem auto auto;
  z-index: -1;

  width: min(380px, 90%);
  height: 380px;

  border-radius: 48px;

  background:
    radial-gradient(circle at 35% 35%, rgba(20, 184, 166, .34), transparent 34%),
    radial-gradient(circle at 72% 72%, rgba(59, 130, 246, .30), transparent 36%);

  filter: blur(4px);
  opacity: .9;

  animation: heroGlowDrift 10s ease-in-out infinite alternate;
}

.hero-showcase--laptop {
  display: none;
  gap: 1rem;

  padding-top: 0;

  perspective: 1200px;
}

.hero-showcase--laptop::before {
  inset: -1.15rem -1.35rem auto auto;

  width: min(560px, 104%);
  height: 500px;

  border-radius: 42% 58% 48% 52%;

  background:
    radial-gradient(circle at 34% 30%, rgba(20, 184, 166, .30), transparent 36%),
    radial-gradient(circle at 74% 64%, rgba(59, 130, 246, .20), transparent 38%),
    radial-gradient(circle at 48% 82%, rgba(219, 39, 119, .10), transparent 33%);

  filter: blur(7px);
  opacity: .82;
}

.laptop-stage {
  position: relative;

  display: grid;
  place-items: center;

  min-height: 430px;
  padding: .5rem 0 1.4rem;

  transform-style: preserve-3d;
}

.laptop-device {
  position: relative;
  z-index: 2;

  width: min(560px, 100%);

  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(-8deg);

  filter: drop-shadow(0 32px 34px rgba(15, 23, 42, .18));

  animation: laptopFloat 7.4s ease-in-out infinite;
}

.laptop-screen {
  position: relative;

  overflow: hidden;

  aspect-ratio: 16 / 10;
  padding: .9rem .9rem 0.9rem;

  border: 1px solid rgba(148, 163, 184, .42);
  border-radius: 30px;

  background:
    linear-gradient(145deg, rgba(2, 6, 23, .98), rgba(15, 23, 42, .95));

  box-shadow:
    0 46px 110px rgba(15, 23, 42, .34),
    0 22px 54px rgba(20, 184, 166, .20),
    inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.laptop-screen::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(118deg, transparent 0 38%, rgba(255, 255, 255, .18) 44%, transparent 52%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .14), transparent 24%);

  pointer-events: none;
  opacity: .72;

  animation: laptopScreenPulse 7s ease-in-out infinite;
}

.laptop-site {
  position: relative;

  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: .62rem;

  overflow: hidden;
  height: 100%;
  min-height: 0;
  padding: .82rem;

  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;

  background:
    radial-gradient(circle at 78% 18%, rgba(236, 72, 153, .20), transparent 32%),
    radial-gradient(circle at 16% 90%, rgba(34, 197, 94, .14), transparent 32%),
    linear-gradient(135deg, #fff5fa 0%, #fff 46%, #eefbf2 100%);

  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, .04),
    inset 0 18px 44px rgba(255, 255, 255, .62);
}

.laptop-site--nails::before {
  content: "";

  position: absolute;
  right: -12%;
  bottom: -22%;

  width: 46%;
  aspect-ratio: 1;

  border-radius: 999px;

  background: radial-gradient(circle, rgba(244, 114, 182, .28), transparent 68%);

  pointer-events: none;
}

.nails-preview__nav {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;

  min-width: 0;

  color: #2f2a2d;

  font-size: .72rem;
  font-weight: 800;
}

.nails-preview__nav strong {
  min-width: 0;

  overflow: hidden;

  white-space: nowrap;
  text-overflow: ellipsis;
}

.nails-preview__nav strong span {
  color: #c02668;
}

.nails-preview__nav em {
  flex: 0 0 auto;

  padding: .28rem .58rem;

  border-radius: 999px;

  color: #8a244d;
  background: rgba(244, 114, 182, .14);

  font-size: .58rem;
  font-style: normal;
  font-weight: 800;
}

.nails-preview__hero {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(118px, .88fr);
  align-items: center;
  gap: .68rem;

  overflow: hidden;
  min-height: 0;
  padding: .82rem;

  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 20px;

  background:
    radial-gradient(circle at 72% 28%, rgba(244, 114, 182, .09), transparent 32%),
    rgba(255, 255, 255, .78);

  box-shadow:
    0 20px 52px rgba(121, 85, 99, .15),
    inset 0 0 0 1px rgba(255, 255, 255, .58);
}

.nails-preview__hero::after {
  content: "";

  position: absolute;
  inset: -42% auto -42% -28%;

  width: 30%;

  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .54), transparent);

  transform: rotate(16deg);

  pointer-events: none;

  animation: nailsPreviewSweep 8s ease-in-out infinite;
}

.nails-preview__copy,
.nails-preview__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.nails-preview__copy span {
  display: block;

  margin-bottom: .36rem;

  color: #8a244d;

  font-size: .52rem;
  font-weight: 800;
}

.nails-preview__copy h2 {
  max-width: 13.2rem;
  margin: 0 0 .44rem;

  color: #251f23;

  font-size: 1.02rem;
  line-height: 1.07;
}

.nails-preview__copy p {
  max-width: 13.2rem;
  margin: 0 0 .58rem;

  color: #6f5d62;

  font-size: .64rem;
  line-height: 1.42;
}

.nails-preview__copy strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 26px;
  padding: .36rem .68rem;

  border-radius: 999px;

  color: #fff;
  background: linear-gradient(135deg, #db2777, #f97316);

  font-size: .58rem;
  font-weight: 800;

  box-shadow: 0 12px 24px rgba(219, 39, 119, .22);
}

.nails-preview__visual {
  align-self: stretch;

  overflow: hidden;

  min-height: 150px;

  border: 5px solid rgba(255, 255, 255, .86);
  border-radius: 18px;

  background: #173b21;

  box-shadow:
    0 24px 48px rgba(39, 69, 43, .28),
    0 0 0 1px rgba(76, 43, 54, .10);
}

.nails-preview__visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 42% center;

  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.05);
}

.nails-preview__visual::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, transparent 38%, rgba(20, 29, 20, .38)),
    radial-gradient(circle at 38% 42%, transparent 0 42%, rgba(0, 0, 0, .12) 100%);

  pointer-events: none;
}

.nails-preview__pill {
  position: absolute;
  z-index: 1;
  left: .55rem;

  max-width: calc(100% - 1.1rem);
  padding: .34rem .5rem;

  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;

  color: #4c2b36;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);

  font-size: .54rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nails-preview__pill--top {
  top: .55rem;
}

.nails-preview__pill--bottom {
  bottom: .55rem;
}

.nails-preview__strip {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .42rem;
}

.nails-preview__strip span {
  min-width: 0;
  padding: .42rem .46rem;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;

  color: #654650;
  background: rgba(255, 255, 255, .66);

  font-size: .56rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.laptop-hinge {
  width: 78%;
  height: 14px;
  margin: .1rem auto;

  border-radius: 999px;

  background:
    linear-gradient(90deg, rgba(15, 23, 42, .18), rgba(15, 23, 42, .72) 45% 55%, rgba(15, 23, 42, .18)),
    #334155;

  box-shadow: 0 12px 24px rgba(15, 23, 42, .24);
}

.laptop-base {
  position: relative;

  width: 92%;
  height: 170px;
  margin: -7px auto 0;

  border: 1px solid rgba(148, 163, 184, .36);
  border-radius: 4px 4px 22px 22px;

  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .94), transparent 48%),
    linear-gradient(180deg, rgba(250, 252, 254, .98) 0%, rgba(232, 237, 243, .94) 58%, rgba(211, 220, 230, .95) 100%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    inset 0 -18px 34px rgba(15, 23, 42, .08),
    0 28px 46px rgba(15, 23, 42, .18);

  overflow: hidden;

  transform: perspective(780px) rotateX(61deg);
  transform-origin: top center;
}

.laptop-base::before {
  content: "";

  position: absolute;
  inset: 7px 18px auto;

  height: 92px;

  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 8px;

  background:
    linear-gradient(180deg, rgba(15, 23, 42, .035), rgba(255, 255, 255, .08));

  box-shadow:
    inset 0 1px 3px rgba(15, 23, 42, .10),
    inset 0 -1px 0 rgba(255, 255, 255, .42);
}

.laptop-base::after {
  content: "";

  position: absolute;
  right: 16%;
  bottom: -2px;
  left: 16%;

  height: 9px;

  border-radius: 0 0 999px 999px;

  background: rgba(148, 163, 184, .75);
}

.laptop-keyboard {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  gap: 2.1px;

  width: 88%;
  margin: 14px auto 0;
  padding: 5px 7px 6px;

  border: 1px solid rgba(100, 116, 139, .16);
  border-radius: 7px;

  background:
    linear-gradient(180deg, rgba(15, 23, 42, .055), rgba(255, 255, 255, .12));

  box-shadow:
    inset 0 2px 5px rgba(15, 23, 42, .12),
    inset 0 -1px 0 rgba(255, 255, 255, .58);
}

.keyboard-row {
  display: flex;
  gap: 3.7px;
  justify-content: center;
}

.key {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 21px;
  height: 10.5px;
  padding: 0 2px;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 4.4px;
  font-weight: 650;
  color: rgba(30, 41, 59, .46);

  background: linear-gradient(180deg, rgba(250, 252, 254, .96), rgba(211, 220, 230, .86));
  border: 1px solid rgba(100, 116, 139, .22);
  border-radius: 2px;

  box-shadow:
    0 1px 0 rgba(100, 116, 139, .28),
    inset 0 1px 0 rgba(255, 255, 255, .86),
    inset 0 -1px 0 rgba(15, 23, 42, .08);
}

.key--back {
  min-width: 31px;
  font-size: 5.2px;
}

.key--tab {
  min-width: 30px;
  font-size: 4px;
}

.key--caps {
  min-width: 36px;
  font-size: 4px;
}

.key--enter {
  min-width: 38px;
  font-size: 4px;
}

.key--shift {
  min-width: 44px;
  font-size: 4px;
}

.key--fn,
.key--ctrl {
  min-width: 23px;
  font-size: 3.5px;
}

.key--win {
  min-width: 21px;
  font-size: 5px;
}

.key--alt,
.key--altgr {
  min-width: 23px;
  font-size: 3.5px;
}

.key--space {
  flex: 1;
  max-width: 128px;
}

.key--arrow {
  min-width: 21px;
  height: 10.5px;
  font-size: 4.5px;
  padding: 0;
}

.key--arrow-ud {
  display: flex;
  flex-direction: column;
  min-width: 21px;
  height: 10.5px;
  padding: 0;
  gap: 0;
  background: linear-gradient(180deg, rgba(250, 252, 254, .96), rgba(211, 220, 230, .86));
  border: 1px solid rgba(100, 116, 139, .22);
  border-radius: 2px;
}

.key--arrow-ud span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8px;
  height: 50%;
  color: rgba(30, 41, 59, .46);
}

.laptop-trackpad {
  position: relative;
  z-index: 1;

  width: 32%;
  height: 30px;
  margin: 11px auto 0;

  border: 1px solid rgba(148, 163, 184, .42);
  border-radius: 12px;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(226, 232, 240, .38));

  box-shadow:
    inset 0 1px 3px rgba(15, 23, 42, .08),
    0 1px 0 rgba(255, 255, 255, .48);
}

.laptop-shadow {
  position: absolute;
  right: 4%;
  bottom: 1.2rem;
  left: 8%;
  z-index: 1;

  height: 68px;

  border-radius: 50%;

  background: radial-gradient(ellipse, rgba(15, 23, 42, .28), rgba(15, 23, 42, 0) 70%);

  filter: blur(2px);

  animation: laptopShadowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .78;
  }

  100% {
    transform: translate3d(-18px, 14px, 0) scale(1.06);
    opacity: .96;
  }
}

@keyframes heroLayerDrift {
  from {
    background-position:
      0 0,
      0 0,
      center,
      center;
    opacity: .42;
  }

  to {
    background-position:
      24px 10px,
      -18px 22px,
      center,
      center;
    opacity: .62;
  }
}

@keyframes mobileHeroCtaIn {
  from {
    opacity: 0;
    transform: translateY(.45rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceMobileHeroButtonIn {
  from {
    opacity: 0;
    transform: translateY(.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroAuraSweep {
  0% {
    opacity: .18;
    transform: translateX(-26%);
  }

  50% {
    opacity: .42;
  }

  100% {
    opacity: .22;
    transform: translateX(18%);
  }
}

@keyframes laptopFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(-18deg) rotateZ(0deg);
  }

  50% {
    transform: translateY(-10px) rotateY(-18deg) rotateZ(.35deg);
  }
}

@keyframes laptopScreenPulse {
  0%,
  100% {
    opacity: .58;
  }

  50% {
    opacity: .86;
  }
}

@keyframes laptopShadowPulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: .86;
  }

  50% {
    transform: scaleX(.92);
    opacity: .66;
  }
}

@keyframes laptopSlideIn {
  0% {
    transform: translateY(120px) rotateX(12deg) rotateY(-25deg) scale(0.92);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  70% {
    transform: translateY(-8px) rotateX(-1deg) rotateY(-15deg) scale(1.01);
  }

  85% {
    transform: translateY(3px) rotateX(0.5deg) rotateY(-19deg) scale(1);
  }

  100% {
    transform: translateY(0) rotateX(0) rotateY(-18deg) scale(1);
    opacity: 1;
  }
}

@keyframes laptopShadowIn {
  0% {
    transform: translateY(60px) scaleX(.5) scaleY(.3);
    opacity: 0;
  }

  40% {
    opacity: .4;
  }

  70% {
    transform: translateY(-4px) scaleX(1.03) scaleY(1.03);
    opacity: .85;
  }

  85% {
    transform: translateY(2px) scaleX(.98) scaleY(.98);
  }

  100% {
    transform: translateY(0) scaleX(1) scaleY(1);
    opacity: .86;
  }
}

@keyframes nailsPreviewSweep {
  0%,
  55% {
    transform: translateX(0) rotate(16deg);
    opacity: 0;
  }

  66% {
    opacity: .72;
  }

  82%,
  100% {
    transform: translateX(560%) rotate(16deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::before,
  .hero-section::after,
  .hero-showcase::before,
  .laptop-device,
  .laptop-screen::before,
  .nails-preview__hero::after,
  .aura-preview__hero::after,
  .hero-section h1,
  .hero-lead,
  .hero-actions,
  .page-hero--services-mobile .hero-actions .btn,
  .laptop-shadow {
    animation: none !important;
  }
}

/* tablet */

@media (min-width: 576px) {
  .hero-mobile-preview {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0 4.35rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-lead {
    margin-bottom: 1.65rem;

    font-size: 1.16rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;

    margin-bottom: 1.35rem;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 136px;
  }

  .trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
  }

  .trust-list--desktop {
    margin-top: 0;
  }

  .trust-list li {
    align-items: center;
  }

  .hero-showcase {
    min-height: 0;
  }

  .laptop-stage {
    min-height: 500px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .hero-showcase--laptop {
    display: grid;

    max-width: 650px;
    margin-inline: auto;
  }

  .laptop-stage {
    min-height: 500px;
  }

  .laptop-device {
    width: min(560px, 94%);
  }

  .laptop-screen {
    aspect-ratio: 4 / 3;
    padding: .95rem;

    border-width: 10px;
    border-radius: 36px;

    transform: rotateY(-7deg) rotateX(2deg);
  }

  .laptop-screen::after {
    content: "";

    position: absolute;
    top: 50%;
    right: .42rem;
    bottom: auto;
    left: auto;
    z-index: 2;

    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: rgba(148, 163, 184, .45);
    opacity: 1;
    transform: translateY(-50%);
  }

  .laptop-hinge,
  .laptop-base {
    display: none;
  }

  .laptop-site {
    gap: .72rem;
    padding: .95rem;
  }

  .nails-preview__hero {
    gap: .9rem;
    padding: 1rem;
  }

  .nails-preview__copy h2 {
    max-width: 15.6rem;

    font-size: 1.18rem;
  }

  .nails-preview__copy p {
    max-width: 15rem;

    font-size: .74rem;
  }

  .aura-preview__hero {
    gap: .9rem;
    padding: 1rem;
  }

  .aura-preview__copy h2 {
    max-width: 15.6rem;

    font-size: 1.18rem;
  }

  .aura-preview__copy p {
    max-width: 15rem;

    font-size: .74rem;
  }

  .aura-preview__panel strong {
    font-size: .7rem;
  }

  .laptop-shadow {
    right: 14%;
    bottom: 1.8rem;
    left: 14%;
  }

}

/* desktop */

@media (min-width: 992px) {
  .hero-section {
    padding: 5.85rem 0 4.85rem;
  }

  h1 {
    font-size: 3.8rem;
  }

  .hero-section h1 {
    font-size: 3.8rem;
  }

  .hero-lead {
    font-size: 1.28rem;
  }

  .hero-showcase {
    margin-top: 0;
  }

  .hero-showcase--laptop {
    display: grid;

    transform: translateX(.5rem);
  }

  .laptop-stage {
    min-height: 512px;
  }

  .laptop-device {
    width: min(600px, 105%);
  }

  .laptop-screen {
    width: 91%;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
    padding: .78rem;

    border-radius: 26px;
    transform: rotateY(-4deg);
    transform-origin: center bottom;

    box-shadow:
      0 34px 82px rgba(15, 23, 42, .30),
      0 18px 42px rgba(20, 184, 166, .10),
      inset 0 0 0 1px rgba(255, 255, 255, .06);
  }

  .laptop-hinge {
    width: 72%;
    height: 13px;
    margin: -1px auto 0;
  }

  .laptop-base {
    margin-top: -8px;
  }

  /* Laptop beúszás animáció */
  .hero-showcase--laptop.is-laptop-opened .laptop-device {
    animation: laptopSlideIn 2.4s cubic-bezier(.25, .1, .25, 1) .2s both;
  }

  .laptop-site {
    gap: .58rem;
    padding: .86rem;
  }

  .nails-preview__hero {
    grid-template-columns: minmax(0, .98fr) minmax(116px, .9fr);
    gap: .56rem;
    padding: .68rem;
    border-radius: 18px;
  }

  .nails-preview__copy span {
    margin-bottom: .28rem;

    font-size: .48rem;
  }

  .nails-preview__copy h2 {
    max-width: 13.1rem;
    margin-bottom: .36rem;

    font-size: .94rem;
    line-height: 1.06;
  }

  .nails-preview__copy p {
    max-width: 12.4rem;
    margin-bottom: .48rem;

    font-size: .56rem;
    line-height: 1.38;
  }

  .nails-preview__copy strong {
    min-height: 24px;
    padding: .32rem .58rem;

    font-size: .5rem;
  }

  .nails-preview__visual {
    min-height: 126px;

    border-width: 4px;
    border-radius: 16px;
  }

  .nails-preview__pill {
    left: .44rem;

    max-width: calc(100% - .88rem);
    padding: .28rem .42rem;

    font-size: .48rem;
  }

  .nails-preview__pill--top {
    top: .44rem;
  }

  .nails-preview__pill--bottom {
    bottom: .44rem;
  }

  .nails-preview__strip {
    gap: .34rem;
  }

  .nails-preview__strip span {
    padding: .34rem .38rem;

    font-size: .48rem;
  }

  .aura-preview__hero {
    grid-template-columns: minmax(0, .98fr) minmax(116px, .9fr);
    gap: .56rem;
    padding: .68rem;
    border-radius: 18px;
  }

  .aura-preview__copy span {
    margin-bottom: .28rem;

    font-size: .46rem;
  }

  .aura-preview__copy h2 {
    max-width: 13.1rem;
    margin-bottom: .36rem;

    font-size: .92rem;
    line-height: 1.06;
  }

  .aura-preview__copy p {
    max-width: 12.4rem;
    margin-bottom: .48rem;

    font-size: .55rem;
    line-height: 1.38;
  }

  .aura-preview__copy strong {
    min-height: 24px;
    padding: .32rem .58rem;

    font-size: .5rem;
  }

  .aura-preview__panel {
    gap: .38rem;
    padding-left: .54rem;
  }

  .aura-preview__panel div {
    padding-bottom: .34rem;
  }

  .aura-preview__panel span {
    font-size: .42rem;
  }

  .aura-preview__panel strong {
    font-size: .54rem;
  }

  .aura-preview__strip {
    gap: .34rem;
  }

  .aura-preview__strip span {
    padding: .34rem .38rem;

    font-size: .48rem;
  }

  .hero-showcase--laptop.is-laptop-opened .laptop-shadow {
    animation:
      laptopShadowIn 2.4s cubic-bezier(.25, .1, .25, 1) .2s both,
      laptopShadowPulse 8s ease-in-out 1.8s infinite;
  }
}

/* =========================
   ÁLTALÁNOS SECTION
   alap = mobil
========================= */

.section-padding {
  padding: 3.75rem 0;
  background: #fff;
}

.section-heading {
  max-width: var(--container-narrow);
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 1rem;

  font-size: 1.95rem;
  line-height: 1.08;
}

.section-heading p {
  max-width: 720px;

  color: var(--color-muted);

  font-size: 1.05rem;
  line-height: 1.75;
}

/* =========================
   SERVICE PROOF
   alap = mobil
========================= */

.proof-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding-top: 3.2rem;
  padding-bottom: 3.4rem;

  background:
    radial-gradient(circle at 86% 0%, rgba(103, 232, 249, .13), transparent 28rem),
    radial-gradient(circle at 10% 100%, rgba(20, 184, 166, .06), transparent 24rem),
    linear-gradient(
      180deg,
      #f4fbfd 0%,
      #fbfdff 48%,
      #ffffff 100%
    );
}

.proof-section::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 36%);

  pointer-events: none;
}

.proof-section .container {
  position: relative;
  z-index: 1;
}

.proof-section .section-heading {
  max-width: 820px;
}

.proof-section .section-heading::before {
  content: none;
}

.service-proof {
  display: grid;
  gap: 1rem;

  margin-top: 2.5rem;
}

.proof-card {
  position: relative;
  overflow: hidden;

  padding: 1.2rem 1rem 1.2rem 1.1rem;

  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0;

  background:
    linear-gradient(90deg, rgba(255, 255, 255, .56), rgba(255, 255, 255, 0.30) 62%, transparent 100%);
  backdrop-filter: blur(8px) saturate(1.04);

  transition:
    opacity 2.15s cubic-bezier(.2, .65, .2, 1),
    transform 2.15s cubic-bezier(.2, .65, .2, 1),
    border-color .45s ease,
    background .45s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.proof-section.section-dark .proof-card {
  padding-left: 1.35rem;
  border-top-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.proof-section.section-dark .proof-card::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(103, 232, 249, .95), rgba(45, 212, 191, .62), rgba(168, 85, 247, .28));
  opacity: .9;
}

.proof-section.section-dark .proof-card::after {
  content: none;
}

.proof-card::before {
  content: none;
}

.proof-card::after {
  content: "";

  position: absolute;
  top: -1px;
  left: 0;

  width: min(78%, 18rem);
  height: 1px;

  background:
    linear-gradient(90deg, #0f172a, rgba(20, 184, 166, .55), rgba(157, 80, 187, .22), transparent);

  opacity: .72;
  transform: scaleX(.72);
  transform-origin: left center;

  pointer-events: none;

  transition:
    opacity .7s ease,
    transform 1s cubic-bezier(.22, 1, .36, 1);
}

.proof-card:hover {
  transform: none;
  box-shadow: none;
}

.proof-card.reveal-ready {
  opacity: 0;
  transform: translateY(1rem);
}

.proof-card.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
  border-color: rgba(15, 23, 42, .09);
}

.proof-section.section-dark .proof-card.reveal-ready.is-visible {
  border-color: transparent;
}

.proof-card.reveal-ready::before {
  opacity: .72;
  transform: translateY(.2rem);

  transition:
    opacity 1.25s ease,
    transform 1.45s cubic-bezier(.2, .65, .2, 1),
    border-color .45s ease;
  transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.proof-card.reveal-ready.is-visible::before {
  opacity: 1;
  transform: none;
}

.proof-card.reveal-ready::after {
  opacity: 0;
  transform: scaleX(.22);
}

.proof-card.reveal-ready.is-visible::after {
  opacity: .72;
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .proof-card:hover {
    border-color: rgba(15, 23, 42, .14);
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .72), rgba(240, 253, 250, .26) 58%, transparent 100%);
  }

  .proof-section.section-dark .proof-card:hover {
    border-color: transparent;
    background: transparent;
  }

  .proof-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

.proof-card strong {
  position: relative;
  z-index: 1;

  display: block;

  margin-bottom: .42rem;

  color: var(--color-ink);

  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.22;
}

.proof-section.section-dark .proof-card strong {
  color: #fff;
}

.proof-card span {
  position: relative;
  z-index: 1;

  display: block;

  color: var(--color-ink);

  font-size: .98rem;
  line-height: 1.68;
}

.proof-section.section-dark .proof-card span {
  color: rgba(226, 232, 240, .78);
}

.proof-section.section-dark {
  background:
    radial-gradient(circle at 78% 8%, rgba(103, 232, 249, .16), transparent 26rem),
    radial-gradient(circle at 8% 84%, rgba(20, 184, 166, .11), transparent 24rem),
    linear-gradient(135deg, #101827 0%, #142033 52%, #0f1724 100%);
}

.proof-section.section-dark::before {
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(103, 232, 249, .075) 24% 24.16%, transparent 24.16% 100%),
    linear-gradient(115deg, transparent 0 58%, rgba(124, 58, 237, .055) 58% 58.14%, transparent 58.14% 100%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .08), transparent 18rem);
  opacity: .9;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

/* tablet */

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }

  .proof-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading h2 {
    font-size: 2.4rem;
  }

  .section-heading p {
    font-size: 1.12rem;
  }

  .service-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;

    gap: clamp(1.15rem, 2.4vw, 2rem);
    margin-top: 2.7rem;
  }

  .proof-card {
    padding: 1.25rem 1.15rem 1.25rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .section-padding {
    padding: 6rem 0;
  }

  .proof-section {
    padding-top: 4.65rem;
    padding-bottom: 3.6rem;
  }

  .section-heading h2 {
    font-size: 2.8rem;
  }

  .service-proof {
    max-width: 1120px;
  }

  .proof-card strong {
    font-size: 1.25rem;
  }

}

/* közös kártya alap */

.feature-card {
  height: 100%;

  padding: 1.2rem 0;

  border: 0;
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;

  background: transparent;
}

.feature-card h3,
.process-item h3 {
  margin-bottom: .55rem;

  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.feature-card p,
.process-item p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .feature-card {
    padding: 1.35rem 0;
  }

  .feature-card h3,
  .process-item h3 {
    font-size: 1.18rem;
  }
}

/* =========================
   SERVICE DETAIL SECTION
   alap = mobil
========================= */

.service-detail-section {
  position: relative;
  isolation: isolate;

  padding-top: 3.35rem;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 58%,
      #ffffff 100%
    );

  overflow: hidden;
}

.service-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 12%, rgba(20, 184, 166, .10) 12% 12.2%, transparent 12.2% 100%),
    linear-gradient(180deg, transparent 0 18%, rgba(37, 99, 235, .07) 18% 18.16%, transparent 18.16% 100%);
  background-size:
    96px 96px,
    96px 96px,
    min(74vw, 920px) 260px,
    min(74vw, 920px) 260px;
  background-position:
    center top,
    center top,
    center 4rem,
    center 4rem;
  opacity: .34;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  pointer-events: none;
}

.service-detail-section::after {
  content: none;
}

.service-detail-section .container {
  position: relative;
  z-index: 1;
}

.service-detail-section .row {
  row-gap: 1rem;
}

.service-detail-section .section-heading {
  margin-bottom: 1.55rem;
}

.service-build-layout {
  position: relative;
  isolation: isolate;

  padding-top: .4rem;
}

.service-build-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 1.1rem;
}

.feature-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1rem;
  align-items: start;

  padding: 1.15rem 0 1.15rem 1.35rem;

  border: 0;
  border-radius: 0;

  background: transparent;

  transition:
    opacity 1.75s cubic-bezier(.2, .65, .2, 1),
    transform 1.75s cubic-bezier(.2, .65, .2, 1);
}

.service-build-list .feature-card {
  grid-template-columns: minmax(0, 1fr);
}

.feature-card.reveal-ready {
  opacity: 0;
  transform: translateY(1.6rem);
}

.feature-card.is-visible {
  opacity: 1;
  transform: none;
}

.feature-card::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: .45rem;

  width: 1px;

  background: linear-gradient(180deg, rgba(20, 184, 166, .16), rgba(37, 99, 235, .12));
}

.feature-card::after {
  content: "";

  position: absolute;
  top: 1.2rem;
  right: 0;
  left: 4rem;

  height: 1px;

  background: linear-gradient(90deg, rgba(20, 184, 166, .34), transparent 72%);

  opacity: .35;
  transform: scaleX(.42);
  transform-origin: left;
  transition:
    opacity .55s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.feature-card:hover::after,
.feature-card:focus-within::after {
  opacity: .75;
  transform: scaleX(1);
}

.feature-number {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 2.15rem;
  height: 1.5rem;
  margin-top: .08rem;
  margin-bottom: 0;
  padding-inline: .42rem;

  border: 1px solid rgba(20, 184, 166, .20);
  border-radius: 999px;

  color: #0d9488;
  background: rgba(240, 253, 250, .62);

  font-size: .7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;

  box-shadow: 0 0 0 6px rgba(255, 255, 255, .88);

  transition:
    color .45s ease,
    background-color .45s ease,
    border-color .45s ease,
    box-shadow .45s ease,
    transform .45s ease;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin: 0 0 .55rem;

  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;

  transition: color .45s ease;
}

.feature-card p {
  grid-column: 2;
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

.service-build-list .feature-card p {
  grid-column: 1;
}

.feature-card:hover .feature-number,
.feature-card:focus-within .feature-number {
  color: #ffffff;
  border-color: rgba(20, 184, 166, .32);
  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
  box-shadow:
    0 0 0 6px rgba(240, 253, 250, .95),
    0 16px 34px rgba(20, 184, 166, .18);
  transform: translateY(-.12rem);
}

.feature-card:hover h3,
.feature-card:focus-within h3 {
  color: #0d9488;
}

.feature-card[data-build-step="message"] {
  --step-shift: 0rem;
}

.feature-card[data-build-step="design"] {
  --step-shift: .5rem;
}

.feature-card[data-build-step="development"] {
  --step-shift: 1rem;
}

.feature-card[data-build-step="support"] {
  --step-shift: 1.5rem;
}

/* tablet */

@media (min-width: 768px) {
  .service-detail-section {
    padding-top: 3.85rem;
  }

  .feature-card {
    padding-block: 1.35rem;
  }

  .feature-card h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .service-detail-section {
    padding-top: 3.9rem;
  }

  .service-detail-section .section-heading,
  .portfolio-section .section-heading {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
    column-gap: clamp(2.5rem, 5vw, 5rem);
    align-items: end;

    max-width: none;
    margin-bottom: 2.6rem;
  }

  .service-detail-section .section-heading .eyebrow,
  .portfolio-section .section-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .service-detail-section .section-heading h2,
  .portfolio-section .section-heading h2 {
    margin-bottom: 0;
  }

  .service-detail-section .section-heading p,
  .portfolio-section .section-heading p {
    margin-bottom: .15rem;
  }

  .service-detail-section .service-build-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 1.7rem);

    padding: 1.1rem 0 0;

    border-top: 1px solid rgba(20, 184, 166, .18);
  }

  .service-detail-section .service-build-list::before {
    content: "";

    position: absolute;
    top: 1.1rem;
    right: 0;
    left: 0;

    height: 1px;

    background: linear-gradient(90deg, rgba(20, 184, 166, .24), rgba(37, 99, 235, .14), transparent);
  }

  .feature-card {
    min-height: 17.5rem;
    padding: 2.2rem 0 0;

    transform: translateY(var(--step-shift));
  }

  .feature-card.reveal-ready {
    opacity: 0;
    transform: translateY(calc(var(--step-shift) + 1.8rem));
  }

  .feature-card.reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(var(--step-shift));
  }

  .feature-card::before {
    top: 0;
    bottom: auto;
    left: 1.05rem;

    width: 1px;
    height: 2rem;
  }

  .feature-card::after {
    top: 1.05rem;
    left: 2.65rem;
  }

  .feature-card h3,
  .feature-card p {
    grid-column: 1 / -1;
  }
}

.outcome-panel {
  position: relative;

  display: grid;
  gap: 1.4rem;

  margin-top: 3rem;
  padding: 1.35rem;

  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 18px;

  background:
    radial-gradient(circle at 88% 12%, rgba(20, 184, 166, .22), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(124, 58, 237, .12), transparent 36%),
    linear-gradient(135deg, #0f172a 0%, #162033 52%, #102f32 100%);

  box-shadow:
    0 24px 70px rgba(15, 23, 42, .10);

  overflow: hidden;

  transition:
    opacity 1.55s cubic-bezier(.2, .65, .2, 1),
    transform 1.55s cubic-bezier(.2, .65, .2, 1),
    box-shadow .25s ease;
}

.outcome-panel::before {
  content: "";

  position: absolute;
  inset: -48% -38%;
  z-index: 0;

  background:
    linear-gradient(
      105deg,
      transparent 39%,
      rgba(103, 232, 249, .06) 48%,
      rgba(59, 130, 246, .045) 54%,
      transparent 63%
    );

  opacity: .4;
  transform: translateX(-34%) rotate(7deg);

  animation: outcome-sheen 14s ease-in-out infinite;
  pointer-events: none;
}

.outcome-panel > * {
  position: relative;
  z-index: 1;
}

.outcome-panel.reveal-ready {
  opacity: 1;
  transform: none;
}

.outcome-panel::after {
  content: none;
}

.outcome-panel.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes outcome-sheen {
  0%,
  100% {
    opacity: .18;
    transform: translateX(-34%) rotate(7deg);
  }

  45%,
  55% {
    opacity: .42;
    transform: translateX(26%) rotate(7deg);
  }
}

.outcome-panel__copy {
  max-width: 560px;
  padding: .25rem;
}

.outcome-panel__copy .eyebrow,
.outcome-panel__copy h3 {
  color: #fff;
}

.outcome-panel__copy .eyebrow::before {
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}

.outcome-panel__copy h3 {
  margin-bottom: .85rem;

  font-size: 1.55rem;
  line-height: 1.12;
}

.outcome-panel__copy p:last-child {
  margin: 0;

  color: rgba(226, 232, 240, .82);
  line-height: 1.75;
}

.outcome-flow {
  display: grid;
  gap: .62rem;
}

.outcome-flow span {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 3.65rem;
  padding: .85rem 1rem;

  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 14px;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(240, 253, 250, .82)),
    #fff;
  color: #0f172a;

  font-weight: 900;

  box-shadow:
    0 14px 32px rgba(2, 6, 23, .12),
    inset 0 1px 0 rgba(255, 255, 255, .9);

  transition:
    opacity 1.85s cubic-bezier(.2, .65, .2, 1),
    transform 1.85s cubic-bezier(.2, .65, .2, 1),
    border-color .42s ease,
    box-shadow .42s ease;
}

.outcome-flow span::after {
  content: "";

  width: .75rem;
  height: .75rem;

  border-radius: 999px;

  background: #0d9488;
  box-shadow: 0 0 0 3px rgba(103, 232, 249, .10);

  animation: outcome-dot-pulse 6.2s ease-in-out infinite;
}

.outcome-panel.reveal-ready .outcome-flow span {
  opacity: 0;
  transform: translateY(1.35rem);
}

.outcome-panel.reveal-ready.is-visible .outcome-flow span {
  opacity: 1;
  transform: translateY(0);
}

.outcome-panel.reveal-ready.is-visible .outcome-flow span:nth-child(1) {
  transition-delay: 320ms;
}

.outcome-panel.reveal-ready.is-visible .outcome-flow span:nth-child(2) {
  transition-delay: 640ms;
}

.outcome-panel.reveal-ready.is-visible .outcome-flow span:nth-child(3) {
  transition-delay: 960ms;
}

.outcome-panel.reveal-ready.is-visible .outcome-flow span:nth-child(4) {
  transition-delay: 1280ms;
}

@keyframes outcome-dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, .22);
  }

  50% {
    box-shadow: 0 0 0 .38rem rgba(20, 184, 166, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-card,
  .proof-card.reveal-ready,
  .proof-card.reveal-ready::before,
  .outcome-panel,
  .outcome-panel.reveal-ready,
  .outcome-flow span,
  .outcome-panel.reveal-ready .outcome-flow span {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .outcome-panel::before,
  .outcome-flow span::after,
  .proof-card:hover::after,
  .fit-item--note.reveal-ready.is-visible::after {
    animation: none;
  }

  .fit-item,
  .fit-item.reveal-ready,
  .fit-item.reveal-ready::before,
  .fit-item.reveal-ready::after,
  .plain-list article,
  .plain-list article.reveal-ready,
  .process-item,
  .process-item.reveal-ready,
  .deliverables-section .feature-number,
  .deliverables-section .feature-number.reveal-ready,
  .home-faq-item,
  .home-faq-item.reveal-ready,
  .faq-section--services-mobile .faq-list details,
  .faq-section--services-mobile .faq-list details.reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 575.98px) {
  .service-detail-section {
    padding-top: 4.75rem;
  }

  .service-detail-section::after {
    content: "";

    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    z-index: 0;

    height: 4.05rem;

    background:
      linear-gradient(180deg, #030607 0%, #050710 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    pointer-events: none;
  }

  .outcome-panel {
    gap: 1.15rem;
    padding: 1.25rem;
    border-color: rgba(255, 255, 255, .13);
    border-radius: 18px;
    background:
      radial-gradient(circle at 88% 10%, rgba(0, 213, 255, .16), transparent 38%),
      radial-gradient(circle at 12% 92%, rgba(210, 76, 255, .12), transparent 42%),
      linear-gradient(145deg, #050710 0%, #0b111d 52%, #06141a 100%);
    box-shadow:
      0 22px 52px rgba(2, 6, 23, .22),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .outcome-panel::before {
    opacity: .38;
  }

  .outcome-panel__copy .eyebrow,
  .outcome-panel__copy h3 {
    color: #fff;
  }

  .outcome-panel__copy p:last-child {
    color: rgba(226, 232, 240, .72);
  }

  .outcome-panel__copy h3 {
    font-size: 1.42rem;
  }

  .outcome-flow {
    gap: .55rem;
  }

  .outcome-flow span {
    min-height: 3.35rem;
    padding: .72rem .85rem;
    border-color: rgba(255, 255, 255, .14);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)),
      rgba(15, 23, 42, .28);
    color: #f8fafc;
    box-shadow:
      0 14px 32px rgba(2, 6, 23, .18),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .outcome-flow span::after {
    background: #00d5ff;
  }
}

@media (min-width: 768px) {
  .outcome-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    align-items: center;

    padding: 1.85rem;
  }

  .outcome-panel__copy {
    padding: 1rem;
  }

  .outcome-panel__copy h3 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .outcome-panel {
    margin-top: 4rem;
    padding: 2.4rem;

    background:
      radial-gradient(circle at 92% 8%, rgba(20, 184, 166, .16), transparent 30%),
      linear-gradient(135deg, #0f172a 0%, #172033 57%, #f8fafc 57.2%, #ffffff 100%);
  }

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

/* =========================
   FIT SECTION
   alap = mobil
========================= */

.fit-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  background:
    radial-gradient(circle at 88% 18%, rgba(20, 184, 166, .055), transparent 24rem),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 58%,
      #ffffff 100%
    );
}

.fit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(20, 184, 166, .18) 28% 28.18%, transparent 28.18% 100%),
    linear-gradient(120deg, transparent 0 50%, rgba(37, 99, 235, .11) 50% 50.16%, transparent 50.16% 100%),
    linear-gradient(120deg, transparent 0 72%, rgba(124, 58, 237, .08) 72% 72.14%, transparent 72.14% 100%),
    radial-gradient(circle at 18% 30%, rgba(20, 184, 166, .12), transparent 18rem),
    radial-gradient(circle at 82% 78%, rgba(124, 58, 237, .09), transparent 20rem);
  opacity: .58;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  pointer-events: none;
}

.fit-section::after {
  content: "";
  position: absolute;
  top: 10%;
  right: clamp(1rem, 8vw, 8rem);
  z-index: 0;
  width: min(38rem, 72vw);
  height: min(20rem, 42vw);
  border: 1px solid rgba(20, 184, 166, .16);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(20, 184, 166, .12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, .055) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(103, 232, 249, .16), transparent 30%);
  background-size: 88px 88px, 88px 88px, auto;
  opacity: .36;
  transform: rotate(-4deg);
  pointer-events: none;
}

.fit-section .container {
  position: relative;
  z-index: 1;
}

.fit-list {
  display: grid;
  gap: .85rem;

  margin-top: 2rem;
}

.fit-item {
  position: relative;
  isolation: isolate;

  display: grid;
  gap: .45rem;

  min-height: 0;
  padding: 1.1rem 0;

  border-bottom: 1px solid var(--color-line);

  transition:
    opacity 1.85s cubic-bezier(.2, .65, .2, 1),
    transform 1.85s cubic-bezier(.2, .65, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.fit-item::before {
  content: none;
}

.fit-item::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;

  height: 1px;

  background:
    linear-gradient(90deg, rgba(20, 184, 166, .66), rgba(103, 232, 249, .22), rgba(157, 80, 187, .10), transparent);

  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;

  pointer-events: none;

  transition:
    opacity .95s ease,
    transform 1.22s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 220ms);
}

.fit-item.reveal-ready {
  opacity: 0;
  transform: translateY(1.55rem);
}

.fit-item.reveal-ready::before {
  opacity: .68;
  transform: scale(.92);
}

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

.fit-item.reveal-ready.is-visible::before {
  opacity: 1;
  transform: scale(1);
}

.fit-item.reveal-ready.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.fit-item h3 {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--color-ink);

  font-size: 1.12rem;
  line-height: 1.3;

  transition: color .36s ease;
}

.fit-item p {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

.fit-item--note {
  overflow: hidden;

  padding: 1.25rem;
  margin-top: .55rem;

  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;

  background:
    radial-gradient(circle at 92% 20%, rgba(20, 184, 166, .10), transparent 28%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.fit-item--note::before {
  content: none;
  counter-increment: none;
}

.fit-item.fit-item--note::after {
  top: 0;
  bottom: 0;
  left: -38%;

  width: 34%;
  height: auto;

  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .76), transparent);

  transform: translateX(0) skewX(-17deg);
  transform-origin: center;
}

.fit-item.fit-item--note.reveal-ready.is-visible::after {
  opacity: 0;
  transform: translateX(0) skewX(-17deg);
  animation: fit-note-sheen 11s ease-in-out 1.8s infinite;
}

@keyframes fit-note-sheen {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translateX(0) skewX(-17deg);
  }

  66% {
    opacity: .68;
  }

  78% {
    opacity: 0;
    transform: translateX(430%) skewX(-17deg);
  }
}

@media (hover: hover) and (pointer: fine) {
  .fit-item:not(.fit-item--note):hover h3 {
    color: #0d9488;
  }

}

/* tablet */

@media (min-width: 768px) {
  .fit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;

    border-top: 0;
  }

  .fit-item {
    padding: 1.35rem 0 0;

    border-top: 1px solid var(--color-line);
    border-bottom: 0;
  }

  .fit-item::after {
    top: -1px;
    bottom: auto;
    left: 0;
  }

  .fit-item::before {
    top: 1rem;
  }

  .fit-item--note {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: minmax(0, .45fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;

    padding: 1.35rem;
    margin-top: .25rem;

    border-top: 1px solid rgba(15, 23, 42, .10);
  }
}

@media (min-width: 992px) {
  .fit-section .container {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
    align-items: center;
    column-gap: clamp(3rem, 5vw, 6rem);
    row-gap: 1.8rem;
  }

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

  .fit-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: .25rem;

    border-top: 1px solid var(--color-line);
  }

  .fit-item {
    min-height: 8.2rem;
    padding: 1.35rem 0;

    border-top: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .fit-item::after {
    top: auto;
    bottom: -1px;
    left: 0;
  }

  .fit-item::before {
    top: 1.45rem;

    min-width: 2.35rem;
    height: 1.7rem;
  }

  .fit-item--note {
    grid-column: 1 / -1;

    min-height: 0;
    margin-top: 1.35rem;
    padding: 1.45rem 1.65rem;

    border-bottom: 1px solid rgba(15, 23, 42, .10);
  }
}

/* =========================
   LAPTOP AURA PREVIEW
========================= */

.laptop-site--aura {
  grid-template-rows: auto minmax(0, 1fr) auto;

  background:
    radial-gradient(circle at 82% 16%, rgba(0, 210, 255, .24), transparent 34%),
    radial-gradient(circle at 18% 92%, rgba(157, 80, 187, .18), transparent 36%),
    linear-gradient(135deg, #07111f 0%, #101827 54%, #07111f 100%);

  border-color: rgba(103, 232, 249, .18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .055),
    inset 0 18px 44px rgba(103, 232, 249, .035);
}

.laptop-site--aura::before {
  content: "";

  position: absolute;
  inset: -45% -30% auto auto;

  width: 58%;
  aspect-ratio: 1;

  border-radius: 999px;

  background: radial-gradient(circle, rgba(103, 232, 249, .20), transparent 68%);

  filter: blur(3px);
  pointer-events: none;
}

.aura-preview__nav {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;

  color: rgba(226, 232, 240, .86);

  font-size: .7rem;
  font-weight: 900;
}

.aura-preview__nav strong {
  min-width: 0;

  overflow: hidden;

  white-space: nowrap;
  text-overflow: ellipsis;
}

.aura-preview__nav strong span {
  color: #67e8f9;
}

.aura-preview__nav em {
  flex: 0 0 auto;

  padding: .28rem .58rem;

  border: 1px solid rgba(103, 232, 249, .24);
  border-radius: 999px;

  color: #67e8f9;
  background: rgba(15, 23, 42, .48);

  font-size: .56rem;
  font-style: normal;
  font-weight: 900;
}

.aura-preview__hero {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(116px, .78fr);
  align-items: stretch;
  gap: .68rem;

  min-height: 0;
  padding: .82rem;

  overflow: hidden;

  border: 1px solid rgba(103, 232, 249, .13);
  border-radius: 20px;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));

  box-shadow:
    0 20px 52px rgba(2, 6, 23, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.aura-preview__hero::after {
  content: "";

  position: absolute;
  inset: -40% auto -40% -28%;

  width: 30%;

  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, .18), transparent);

  transform: rotate(16deg);
  pointer-events: none;

  animation: nailsPreviewSweep 9.5s ease-in-out infinite;
}

.aura-preview__copy,
.aura-preview__panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.aura-preview__copy span {
  display: block;

  margin-bottom: .42rem;

  color: #67e8f9;

  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aura-preview__copy h2 {
  max-width: 13.6rem;
  margin: 0 0 .5rem;

  color: #fff;

  font-size: 1.04rem;
  line-height: 1.07;
}

.aura-preview__copy p {
  max-width: 13.2rem;
  margin: 0 0 .62rem;

  color: rgba(226, 232, 240, .74);

  font-size: .64rem;
  line-height: 1.42;
}

.aura-preview__copy strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 26px;
  padding: .36rem .68rem;

  border-radius: 999px;

  color: #06111f;
  background: linear-gradient(135deg, #22d3ee, #60a5fa);

  font-size: .58rem;
  font-weight: 900;

  box-shadow: 0 12px 24px rgba(34, 211, 238, .18);
}

.aura-preview__panel {
  display: grid;
  align-content: center;
  gap: .48rem;

  padding-left: .68rem;

  border-left: 1px solid rgba(103, 232, 249, .18);
}

.aura-preview__panel div {
  display: grid;
  gap: .12rem;

  padding-bottom: .45rem;

  border-bottom: 1px solid rgba(226, 232, 240, .10);
}

.aura-preview__panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.aura-preview__panel span {
  color: #67e8f9;

  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.aura-preview__panel strong {
  color: rgba(248, 250, 252, .92);

  font-size: .62rem;
  font-weight: 900;
  line-height: 1.18;
}

.aura-preview__strip {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .42rem;
}

.aura-preview__strip span {
  min-width: 0;
  padding: .42rem .46rem;

  overflow: hidden;

  border: 1px solid rgba(103, 232, 249, .18);
  border-radius: 999px;

  color: rgba(226, 232, 240, .86);
  background: rgba(15, 23, 42, .42);

  font-size: .55rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* =========================
   PROCESS SECTION
   alap = mobil
========================= */

.process-section {
  position: relative;

  padding-top: clamp(5.25rem, 12vw, 8rem);

  background: #030607;
  color: #fff;

  overflow: hidden;
}

.process-section::before {
  content: "";

  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 0;

  height: clamp(4.6rem, 10vw, 7.25rem);

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 58%,
      #ffffff 100%
    );
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.process-section::after {
  content: none;
}

@media (max-width: 575.98px) {
  .process-section--services {
    padding-top: 3.75rem;
  }

  .process-section--services::before {
    content: none;
  }
}

@media (min-width: 576px) {
  .process-section {
    padding-top: 3.75rem;
    background:
      radial-gradient(circle at 18% 18%, rgba(20, 184, 166, .13), transparent 32%),
      radial-gradient(circle at 84% 78%, rgba(59, 130, 246, .11), transparent 36%),
      linear-gradient(135deg, #101827 0%, #162233 52%, #0f1724 100%);
  }

  .process-section::before {
    content: none;
  }

  .home-faq-section::before {
    background:
      radial-gradient(circle at 18% 18%, rgba(20, 184, 166, .13), transparent 32%),
      radial-gradient(circle at 84% 78%, rgba(59, 130, 246, .11), transparent 36%),
      linear-gradient(135deg, #101827 0%, #162233 52%, #0f1724 100%);
  }
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section h2,
.process-section h3 {
  color: #fff;
}

.process-section .eyebrow {
  color: #fff;
}

.process-section .eyebrow::before,
.dark-split-section .eyebrow::before {
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}

.process-list {
  position: relative;
  --process-line-x: calc(1.15rem + 1.35rem);
  --process-accent-a: #22d3ee;
  --process-accent-b: #a855f7;

  display: grid;
  gap: 0;

  margin-top: 2rem;
  padding-left: 1.15rem;
}

.process-list::before {
  content: "";

  position: absolute;
  top: .45rem;
  bottom: .45rem;
  left: var(--process-line-x);

  width: 2px;

  background:
    linear-gradient(
      180deg,
      rgba(34, 211, 238, .10),
      rgba(34, 211, 238, .46) 34%,
      rgba(168, 85, 247, .50) 68%,
      rgba(168, 85, 247, .12)
    );
  box-shadow: 0 0 18px rgba(34, 211, 238, .12);
}

.process-item {
  position: relative;
  isolation: isolate;

  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;

  padding: 0 0 1.55rem;

  border: 0;
  border-radius: 0;

  background: transparent;

  transition:
    transform .72s cubic-bezier(.22, 1, .36, 1);
}

.process-item.reveal-ready {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 1.65s cubic-bezier(.2, .65, .2, 1),
    transform 1.65s cubic-bezier(.2, .65, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.process-item.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

.process-item::before {
  content: "";

  position: absolute;
  inset: -.75rem -1rem .75rem 2.15rem;
  z-index: 0;

  width: auto;

  border-radius: 18px;

  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07), transparent 64%);

  opacity: 0;

  transition: opacity .45s ease;
  pointer-events: none;
}

.process-item > * {
  position: relative;
  z-index: 1;
}

.process-item span {
  position: relative;

  display: inline-grid;
  place-items: center;

  width: 2.7rem;
  height: 2.7rem;

  border-radius: 999px;

  border: 1px solid transparent;

  background:
    linear-gradient(#071014, #071014) padding-box,
    linear-gradient(135deg, var(--process-accent-a), var(--process-accent-b)) border-box;
  color: #fff;

  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;

  transition:
    transform .72s cubic-bezier(.22, 1, .36, 1),
    color .72s ease,
    background .72s ease,
    border-color .72s ease,
  box-shadow .72s ease;
}

.process-item span::after {
  content: "";

  position: absolute;
  inset: -.45rem;

  border-radius: inherit;

  border: 1px solid rgba(34, 211, 238, .18);

  opacity: 0;

  transition: opacity .72s ease;
}

.process-item h3 {
  margin-bottom: .45rem;

  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.process-item p {
  margin: 0;

  color: #cbd5e1;
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  .process-item:hover {
    transform: translateX(.28rem);
  }

  .process-item:hover::before {
    opacity: 1;
  }

  .process-item:hover span {
    transform: translateY(-1px) scale(1.03);

    border-color: rgba(34, 211, 238, .46);
    background:
      linear-gradient(135deg, rgba(34, 211, 238, .20), rgba(168, 85, 247, .16)),
      rgba(255, 255, 255, .06);
    color: #fff;

    box-shadow:
      0 14px 30px rgba(0, 0, 0, .22),
      0 0 24px rgba(34, 211, 238, .12);
  }

  .process-item:hover span::after {
    opacity: 1;
  }
}

/* tablet */

@media (min-width: 768px) {
  .process-section {
    padding-top: 5rem;
  }

  .process-item {
    padding-bottom: 1.75rem;
  }

  .process-item h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .process-section {
    padding-top: 6rem;
  }

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

    margin-top: 3rem;
    padding: 0;
  }

  .process-list::before {
    top: 1.35rem;
    right: 0;
    bottom: auto;
    left: 0;

    width: auto;
    height: 1px;

    background:
      linear-gradient(
        90deg,
        rgba(34, 211, 238, .10),
        rgba(34, 211, 238, .48),
        rgba(168, 85, 247, .48),
        rgba(168, 85, 247, .10)
      );
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 1.35rem;

    padding: 0 1.5rem 0 0;
  }

  .process-item::before {
    inset: 3.7rem 1rem -1.1rem -1rem;

    background:
      linear-gradient(180deg, rgba(255, 255, 255, .055), transparent 72%);
  }

  .process-item span {
    width: 2.75rem;
    height: 2.75rem;
  }

  .process-item h3 {
    max-width: 14rem;
  }
}

@keyframes processSectionGlow {
  from {
    opacity: .22;
    transform: translateX(-36%);
  }

  to {
    opacity: .48;
    transform: translateX(12%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-section::before {
    animation: none;
    transform: none;
  }
}

/* =========================
   TRUST SECTION
   alap = mobil
========================= */

.trust-section {
  background: #fff;
}

.trust-box {
  display: grid;
  gap: 1.25rem;

  padding: 1.35rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(20, 184, 166, .14),
      transparent 32%
    ),
    #f8fafc;
}

.trust-box h2 {
  margin-bottom: 1rem;

  font-size: 1.85rem;
  line-height: 1.08;
}

.trust-box p {
  margin-bottom: 0;

  color: var(--color-muted);
  line-height: 1.75;
}

.trust-highlight {
  padding: 1.25rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: #fff;

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.trust-highlight strong {
  display: block;

  margin-bottom: .5rem;

  font-size: 1.1rem;
}

.contact-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 3.25rem 0;

  background:
    radial-gradient(circle at 88% 18%, rgba(0, 210, 255, .18), transparent 30%),
    radial-gradient(circle at 16% 86%, rgba(157, 80, 187, .12), transparent 34%),
    linear-gradient(135deg, #0f172a 0%, #172033 100%);
}

.contact-strip::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(90deg, transparent 0 34%, rgba(255, 255, 255, .04) 48%, transparent 62%);

  opacity: .46;
  transform: translateX(-28%);

  animation: processSectionGlow 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-strip__inner {
  display: grid;
  gap: 1.2rem;
  align-items: center;

  padding-top: 0;

  border-top: 0;
}

.contact-strip__inner p {
  margin: 0;

  color: #fff;

  font-size: clamp(1.45rem, 4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
}

.contact-strip .btn {
  justify-self: start;

  box-shadow: 0 16px 36px rgba(20, 184, 166, .20);
}

/* tablet */

@media (min-width: 768px) {
  .trust-box {
    gap: 1.75rem;
    padding: 2rem;
  }

  .trust-box h2 {
    font-size: 2.2rem;
  }

  .trust-highlight {
    padding: 1.35rem;
  }

  .contact-strip__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* desktop */

@media (min-width: 992px) {
  .trust-box {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 2rem;
    align-items: center;

    padding: 3rem;
  }

  .trust-box h2 {
    font-size: 2.4rem;
  }
}

/* =========================
   ABOUT SECTION
   alap = mobil
========================= */

.about-section {
  background: #fff;
}

.about-section .row {
  row-gap: 1.5rem;
}

.large-text {
  margin: 0;

  color: #334155;

  font-size: 1.08rem;
  line-height: 1.8;
}

/* tablet */

@media (min-width: 768px) {
  .large-text {
    font-size: 1.16rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .about-section .row {
    row-gap: 0;
  }

  .large-text {
    font-size: 1.25rem;
  }
}

/* =========================
   PORTFOLIO SECTION
   alap = mobil
========================= */

.portfolio-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  background:
    radial-gradient(circle at 88% 18%, rgba(20, 184, 166, .055), transparent 24rem),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 58%,
      #ffffff 100%
    );
}

.portfolio-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, .32) 50%, transparent 62%);

  opacity: .25;
  transform: translateX(-28%);

  pointer-events: none;
}

.portfolio-section::after {
  content: none;
}

.portfolio-section .container {
  position: relative;
  z-index: 1;
}

.summary-package {
  display: grid;
  gap: 1.35rem;

  margin-top: 2rem;
}

.summary-package__price {
  position: relative;
  isolation: isolate;

  display: grid;
  gap: .9rem;
  align-content: start;

  padding: 1.45rem;
  overflow: hidden;

  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 22px;

  background:
    radial-gradient(circle at 16% 18%, rgba(45, 212, 191, .18), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(157, 80, 187, .12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(248, 250, 252, .46));
  backdrop-filter: blur(12px) saturate(1.08);

  box-shadow:
    0 20px 60px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .86);
}

.summary-package__price::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 1px;

  background: linear-gradient(90deg, #0f172a, rgba(20, 184, 166, .48), rgba(157, 80, 187, .18), transparent);
  pointer-events: none;
}

.summary-package__price > span {
  width: fit-content;
  padding: .36rem .56rem;

  border: 1px solid rgba(20, 184, 166, .16);
  border-radius: 999px;

  color: #0f766e;
  background: rgba(240, 253, 250, .62);

  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.summary-package__price strong {
  color: var(--color-ink);

  font-size: clamp(2.2rem, 8vw, 3.25rem);
  line-height: .98;
  letter-spacing: 0;
}

.summary-package__price p,
.summary-package__content p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

.summary-package__price .btn {
  justify-self: start;
  margin-top: .25rem;
}

.summary-package__content {
  display: grid;
  gap: 1rem;
}

.summary-package__content h3 {
  margin: 0;

  color: var(--color-ink);

  font-size: 1.35rem;
  line-height: 1.15;
}

.summary-package__content ul {
  display: grid;
  gap: .7rem;

  padding: 0;
  margin: .2rem 0 0;

  list-style: none;
}

.summary-package__content li {
  position: relative;

  padding: .82rem 0 .82rem 1.35rem;

  border-top: 1px solid rgba(15, 23, 42, .09);

  color: #334155;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .18) 62%, transparent 100%);

  font-weight: 750;
  line-height: 1.45;
}

.summary-package__content li::before {
  content: "";

  position: absolute;
  top: 1.2rem;
  left: 0;

  width: .42rem;
  height: .42rem;

  border-radius: 999px;

  background: var(--aura-dot-dark);
  box-shadow:
    0 0 0 4px rgba(20, 184, 166, .055),
    0 0 18px rgba(20, 184, 166, .12);
}

.portfolio-grid {
  display: grid;
  gap: 1.25rem;

  margin-top: 2rem;
}

.project-card {
  position: relative;
  isolation: isolate;

  overflow: hidden;

  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: calc(var(--radius-lg) + 2px);

  background:
    linear-gradient(180deg, #fff 0%, #fbfdfd 100%);

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .06),
    0 1px 0 rgba(255, 255, 255, .92) inset;

  transition:
    transform 1.05s cubic-bezier(.16, 1, .3, 1),
    box-shadow 1.05s cubic-bezier(.16, 1, .3, 1),
    border-color .9s ease,
    background .9s ease;
}

.project-card::before {
  content: "";

  position: absolute;
  inset: -32% auto -32% -56%;
  z-index: 2;

  width: 46%;

  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .72) 50%, transparent 100%);

  opacity: 0;
  pointer-events: none;

  transform: translateX(-110%) rotate(9deg);
}

.project-card::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(135deg, rgba(103, 232, 249, .10), transparent 32%, rgba(157, 80, 187, .055) 100%);

  opacity: 0;

  transition: opacity .9s ease;
  pointer-events: none;
}

.project-card > * {
  position: relative;
  z-index: 1;
}

.project-preview {
  position: relative;

  min-height: 230px;
  padding: 1rem;

  overflow: hidden;

  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, .34), transparent 24%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.project-preview--site {
  height: 252px;
  padding: 0;

  background: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, .22);
}

.project-preview--site img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: top center;

  filter: saturate(1.04) contrast(1.04) brightness(1.02);

  transform: scale(1.012);

  transition:
    transform 1.25s cubic-bezier(.16, 1, .3, 1),
    filter 1.25s ease;
}

.project-preview--site::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(180deg, rgba(15, 23, 42, .04) 0%, rgba(15, 23, 42, .18) 54%, rgba(15, 23, 42, .56) 100%),
    radial-gradient(circle at 88% 12%, rgba(103, 232, 249, .24), transparent 31%),
    radial-gradient(circle at 12% 86%, rgba(157, 80, 187, .16), transparent 34%);
}

.project-preview::after {
  content: "";

  position: absolute;
  inset: auto -10% -32% 28%;

  height: 64%;

  border-radius: 50%;

  background: rgba(255, 255, 255, .10);

  transform: rotate(-9deg);
}

.project-preview--site::after {
  inset: 0 0 auto;
  z-index: 2;

  height: 2.15rem;

  border-radius: 0;

  background:
    radial-gradient(circle at 1rem 1.04rem, rgba(248, 113, 113, .9) 0 3px, transparent 3.8px),
    radial-gradient(circle at 1.78rem 1.04rem, rgba(251, 191, 36, .92) 0 3px, transparent 3.8px),
    radial-gradient(circle at 2.56rem 1.04rem, rgba(45, 212, 191, .9) 0 3px, transparent 3.8px),
    linear-gradient(180deg, rgba(15, 23, 42, .66), rgba(15, 23, 42, .16));

  transform: none;
  pointer-events: none;
}

.project-preview__overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .85rem;
  flex-wrap: wrap;

  padding: .9rem 1rem;

  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;

  background: rgba(15, 23, 42, .78);
  color: #fff;

  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, .22);
}

.project-preview__overlay span {
  display: inline-flex;
  align-items: center;

  padding: .34rem .55rem;

  border: 1px solid rgba(94, 234, 212, .20);
  border-radius: 999px;

  background: rgba(20, 184, 166, .12);
  color: #99f6e4;

  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.project-preview__overlay strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.project-preview__overlay--light {
  border-color: rgba(255, 255, 255, .78);

  background: rgba(255, 255, 255, .86);
  color: #0f172a;
}

.project-preview__overlay--light span {
  border-color: rgba(20, 184, 166, .18);

  background: rgba(20, 184, 166, .10);
  color: #0f766e;
}

.project-preview--cleaning {
  background:
    radial-gradient(circle at 84% 18%, rgba(20, 184, 166, .30), transparent 26%),
    linear-gradient(135deg, #0f172a 0%, #164e63 100%);
}

.project-preview--nails {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .42), transparent 26%),
    linear-gradient(135deg, #3b2140 0%, #b85c7a 100%);
}

.project-preview__chrome {
  position: relative;
  z-index: 1;

  display: flex;
  gap: .4rem;

  margin-bottom: 1rem;
}

.project-preview__chrome span {
  width: .55rem;
  height: .55rem;

  border-radius: 999px;

  background: rgba(255, 255, 255, .55);
}

.project-preview__hero {
  position: relative;
  z-index: 1;

  max-width: 360px;
  padding: 1.2rem;

  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;

  background: rgba(255, 255, 255, .12);

  backdrop-filter: blur(12px);
}

.project-preview__hero span {
  display: inline-flex;

  margin-bottom: .65rem;

  color: rgba(255, 255, 255, .78);

  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-preview__hero strong {
  display: block;

  max-width: 290px;

  color: #fff;

  font-size: 1.45rem;
  line-height: 1.08;
}

.project-preview__rows,
.project-preview__tiles {
  position: relative;
  z-index: 1;

  display: grid;
  gap: .55rem;

  max-width: 300px;
  margin-top: 1rem;
}

.project-preview__rows span,
.project-preview__tiles span {
  display: block;

  border-radius: 999px;

  background: rgba(255, 255, 255, .62);
}

.project-preview__rows span {
  height: .62rem;
}

.project-preview__rows span:nth-child(2) {
  width: 78%;
}

.project-preview__rows span:nth-child(3) {
  width: 56%;
}

.project-preview__tiles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 340px;
}

.project-preview__tiles span {
  height: 4.6rem;

  border-radius: 18px;

  background: rgba(255, 255, 255, .20);
}

.project-card-content {
  padding: 1.35rem;

  background:
    linear-gradient(180deg, #fff 0%, #fbfffe 100%);
}

.project-label {
  display: inline-flex;

  margin-bottom: 1rem;
  padding: .38rem .56rem;

  border: 1px solid rgba(20, 184, 166, .14);
  border-radius: 999px;

  background: rgba(20, 184, 166, .08);
  color: #0d9488;

  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: .85rem;

  font-size: 1.5rem;
  line-height: 1.08;
}

.project-card p {
  margin-bottom: 1.15rem;

  color: var(--color-muted);
  line-height: 1.75;
}

.project-points {
  display: grid;
  gap: .55rem;

  padding: 0;
  margin: 0 0 1.35rem;

  list-style: none;

  color: #334155;

  font-weight: 700;
}

.project-points li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.project-points li::before {
  content: "✓";

  display: inline-grid;
  place-items: center;
  flex: 0 0 1.25rem;

  width: 1.25rem;
  height: 1.25rem;

  border-radius: 999px;

  background: rgba(20, 184, 166, .09);
  color: #0d9488;

  font-size: .78rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;

  color: #0f766e;

  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "→";

  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

@keyframes project-card-sheen {
  0% {
    opacity: 0;
    transform: translateX(-110%) rotate(9deg);
  }

  18% {
    opacity: .34;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) rotate(9deg);
  }
}

@media (hover: hover) and (pointer: fine) {
  .project-card:hover {
    transform: translateY(-.42rem);

    border-color: rgba(20, 184, 166, .28);

    box-shadow:
      0 34px 86px rgba(15, 23, 42, .12),
      0 1px 0 rgba(255, 255, 255, .96) inset;
  }

  .project-card:hover::before {
    animation: project-card-sheen 1.9s cubic-bezier(.16, 1, .3, 1) both;
  }

  .project-card:hover::after {
    opacity: 1;
  }

  .project-card:hover .project-preview--site img {
    filter: saturate(1.08) contrast(1.06) brightness(1.04);

    transform: scale(1.042);
  }
}

/* tablet */

@media (min-width: 768px) {
  .summary-package {
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 2rem;
  }

  .summary-package__price {
    position: sticky;
    top: 108px;
  }

  .summary-package__content {
    gap: 1.1rem;
  }

  .summary-package__content li {
    padding: .9rem 0 .9rem 1.45rem;
  }

  .portfolio-grid {
    gap: 1.35rem;
  }

  .project-card-content {
    padding: 1.6rem;
  }

  .project-preview--site {
    height: 272px;
  }

  .project-card h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* desktop */

@media (min-width: 992px) {
  .summary-package {
    gap: clamp(2.4rem, 5vw, 4.5rem);
  }

  .summary-package__price {
    padding: 1.75rem;
  }

  .summary-package__content h3 {
    font-size: 1.55rem;
  }

  .portfolio-grid {
    gap: 1.5rem;
  }

  .project-card-content {
    padding: 2rem;
  }

  .project-preview--site {
    height: 286px;
  }

.project-card h3 {
    font-size: 1.9rem;
  }
}

/* =========================
   FIRST MESSAGE SECTION
   alap = mobil
========================= */

.first-message-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 86% 12%, rgba(20, 184, 166, .12), transparent 26rem),
    radial-gradient(circle at 8% 90%, rgba(157, 80, 187, .07), transparent 26rem),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.first-message-box {
  position: relative;
  isolation: isolate;

  display: grid;
  gap: 1.35rem;
  align-items: center;

  padding: 1.45rem;
  overflow: hidden;

  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 24px;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(240, 253, 250, .44) 58%, rgba(255, 255, 255, .72));
  backdrop-filter: blur(12px) saturate(1.08);

  box-shadow:
    0 22px 64px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.first-message-box::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 1px;

  background: linear-gradient(90deg, #0f172a, rgba(20, 184, 166, .48), rgba(157, 80, 187, .18), transparent);
  pointer-events: none;
}

.first-message-box h2 {
  max-width: 760px;
  margin-bottom: .85rem;

  font-size: clamp(1.8rem, 5vw, 2.55rem);
}

.first-message-box p:last-child {
  max-width: 720px;
  margin: 0;

  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.first-message-box .btn {
  justify-self: start;
}

@media (min-width: 768px) {
  .first-message-box {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    padding: 1.8rem;
  }
}

/* =========================
   HOME FAQ SECTION
   alap = mobil
========================= */

.home-faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding-top: clamp(5.4rem, 12vw, 8rem);

  background:
    radial-gradient(circle at 14% 10%, rgba(20, 184, 166, .08), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #f8fbfb 100%);
}

.home-faq-section::before {
  content: none;
}

.home-faq-section .container {
  position: relative;
  z-index: 1;
}

.home-faq-section .section-heading {
  margin-bottom: 2rem;
}

.home-faq-list {
  position: relative;

  display: grid;
  gap: .75rem;
  align-items: start;

  max-width: 920px;
}

.home-faq-item {
  border: 1px solid rgba(148, 163, 184, .26);
  border-radius: var(--radius-md);

  background:
    linear-gradient(180deg, #fff 0%, #fbfdfd 100%);

  transition:
    opacity 1.65s cubic-bezier(.2, .65, .2, 1),
    transform .75s cubic-bezier(.16, 1, .3, 1),
    border-color .75s ease,
    box-shadow .75s ease,
    background .75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.home-faq-item.reveal-ready {
  opacity: 0;
  transform: translateY(.9rem);
}

.home-faq-item.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

.home-faq-item[open] {
  border-color: rgba(20, 184, 166, .24);

  box-shadow:
    0 16px 38px rgba(15, 23, 42, .055);
}

.home-faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;

  min-height: var(--tap-target);
  padding: 1rem;

  color: var(--color-ink);

  font-weight: 800;
  line-height: 1.35;

  cursor: pointer;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";

  display: inline-grid;
  place-items: center;

  width: 1.75rem;
  height: 1.75rem;

  border-radius: 999px;

  background: #f1f5f9;
  color: var(--color-ink);

  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;

  transition:
    transform .75s cubic-bezier(.16, 1, .3, 1),
    background .75s ease,
    color .75s ease;
}

.home-faq-item[open] summary::after {
  content: "-";

  background: rgba(240, 253, 250, .9);
  color: #0f766e;

  transform: rotate(180deg);
}

.home-faq-item p {
  padding: 0 1rem 1rem;
  margin: 0;

  color: var(--color-muted);
  line-height: 1.75;
}

/* tablet */

@media (min-width: 768px) {
  .home-faq-list {
    gap: 1rem;
  }

  .home-faq-item summary {
    padding: 1.15rem 1.25rem;

    font-size: 1.05rem;
  }

  .home-faq-item p {
    padding: 0 1.25rem 1.25rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .home-faq-section .section-heading {
    max-width: 760px;
    margin-bottom: 2.75rem;
  }

  .home-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;

    max-width: 1180px;
  }

  .home-faq-item {
    border-radius: var(--radius-md);
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-faq-item:hover {
    transform: translateY(-.16rem);

    border-color: rgba(20, 184, 166, .22);

    box-shadow:
      0 16px 38px rgba(15, 23, 42, .055);
  }
}

/* =========================
   FOOTER
   alap = mobil
========================= */

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 2.95rem 0 0;

  background:
    radial-gradient(circle at 88% 8%, rgba(20, 184, 166, .16), transparent 26rem),
    radial-gradient(circle at 12% 92%, rgba(59, 130, 246, .12), transparent 28rem),
    var(--color-ink);
  color: #fff;
}

.site-footer::after {
  content: none;
}

.footer-main {
  position: relative;
  z-index: 1;

  display: grid;
  gap: 2.25rem;

  padding-top: 1.1rem;
}

@media (max-width: 575.98px) {
  .site-footer {
    background: #030607;
  }
}

.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 620px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1rem;

  color: #fff;

  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand p,
.footer-contact-text {
  margin: 0;

  color: #cbd5e1;

  font-size: 1.02rem;
  line-height: 1.8;
}

.footer-columns {
  display: grid;
  gap: 2rem;
}

.footer-col {
  display: grid;
  gap: .72rem;
  align-content: start;
}

.footer-title {
  margin: 0 0 .2rem;

  color: rgba(255, 255, 255, .66);

  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-col a:not(.btn) {
  width: fit-content;

  color: #e2e8f0;

  font-weight: 700;
  text-decoration: none;

  transition:
    color .25s ease,
    transform .25s ease;
}

.footer-col a:not(.btn):hover {
  color: #fff;

  transform: translateX(2px);
}

.footer-contact {
  max-width: 360px;
}

.footer-phone {
  display: inline-flex;
  width: fit-content;
  margin-top: .75rem;

  color: #fff;

  font-weight: 850;
  text-decoration: none;
}

.footer-phone:hover {
  color: #fff;
}

.footer-contact .btn {
  width: fit-content;
  margin-top: .35rem;
}

.site-footer .btn-light {
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .24);

  color: #f8fafc;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .055)),
    rgba(255, 255, 255, .065);
  backdrop-filter: blur(14px) saturate(1.18);

  font-weight: 800;

  box-shadow:
    0 16px 34px rgba(2, 6, 23, .18),
    inset 0 1px 0 rgba(255, 255, 255, .26);
}

.site-footer .btn-light::after {
  content: "";

  position: absolute;
  inset: -42% auto -42% -38%;

  width: 32%;

  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);

  transform: skewX(-18deg);
  transition: left .75s ease;
  pointer-events: none;
}

.site-footer .btn-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .09);
  box-shadow:
    0 18px 38px rgba(2, 6, 23, .24),
    0 0 0 4px rgba(255, 255, 255, .06),
    inset 0 1px 0 rgba(255, 255, 255, .32);
  transform: translateY(-1px);
}

.site-footer .btn-light:hover::after {
  left: 112%;
}

/* =========================
   PAGE HERO / SERVICES HERO
   alap = mobil
========================= */

.page-hero {
  padding: 3.75rem 0 4rem;

  background:
    radial-gradient(circle at 85% 12%, rgba(20, 184, 166, .13), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(59, 130, 246, .12), transparent 34%),
    var(--color-bg);
}

.page-hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 960px;

  font-size: clamp(2.12rem, 9.2vw, 2.35rem);
  line-height: 1.08;
}

.page-hero .hero-lead {
  max-width: 900px;
}

.page-hero .eyebrow {
  align-items: center;

  font-size: 1.12rem;
  letter-spacing: .06em;
  line-height: 1.1;
}

.page-hero .eyebrow::before {
  width: .55em;
  height: .55em;

  transform: translateY(-.02em);
}

.dark-split-section .eyebrow,
#kinek .eyebrow,
.process-section .eyebrow,
.faq-section .eyebrow {
  font-size: 1.12rem;
  letter-spacing: .08em;
  line-height: 1.75;
}

.dark-split-section .eyebrow::before,
#kinek .eyebrow::before,
.process-section .eyebrow::before,
.faq-section .eyebrow::before {
  width: .65rem;
  height: .65rem;

  transform: none;
}

.service-hero-visual {
  display: none;
}

@media (max-width: 575.98px) {
  .page-hero--services-mobile {
    padding: 4.65rem 0 3.35rem;

    background:
      radial-gradient(circle at 50% -4%, rgba(0, 213, 255, .20), transparent 13rem),
      radial-gradient(circle at 86% 26%, rgba(239, 68, 168, .18), transparent 15rem),
      radial-gradient(circle at 10% 74%, rgba(0, 213, 255, .035), transparent 16rem),
      linear-gradient(180deg, #030607 0%, #020304 56%, #050710 100%);

    color: #fff;
  }

  .page-hero--services-mobile .eyebrow {
    display: none;
  }

  .page-hero--services-mobile h1 {
    max-width: 22rem;
    margin-inline: auto;
    margin-bottom: 1.35rem;

    color: #fff;

    font-size: clamp(2.35rem, 11.2vw, 3rem);
    line-height: 1.04;
    text-align: left;
  }

  .page-hero--services-mobile .hero-lead {
    max-width: 21.5rem;
    margin-inline: auto;

    color: rgba(226, 232, 240, .68);

    font-size: 1.2rem;
    line-height: 1.72;
    text-align: left;
  }

  .page-hero--services-mobile .hero-actions {
    max-width: 21.5rem;
    margin-inline: auto;
    animation: none;
  }

  .page-hero--services-mobile .hero-actions .btn {
    width: 100%;
    animation: serviceMobileHeroButtonIn 1.75s cubic-bezier(.16, 1, .3, 1) both;
  }

  .page-hero--services-mobile .hero-actions .btn:nth-child(1) {
    animation-delay: .28s;
  }

  .page-hero--services-mobile .hero-actions .btn:nth-child(2) {
    animation-delay: .58s;
  }

  .page-hero--services-mobile .hero-actions .btn-primary,
  .page-hero--services-mobile .hero-actions .btn-outline-dark {
    border-color: rgba(255, 255, 255, .22);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06)),
      radial-gradient(circle at 18% 0%, rgba(103, 232, 249, .24), transparent 36%),
      rgba(255, 255, 255, .07);
    color: #fff;
    backdrop-filter: blur(14px) saturate(1.14);
    box-shadow:
      0 18px 42px rgba(2, 6, 23, .32),
      inset 0 1px 0 rgba(255, 255, 255, .24);
  }
}

/* tablet */

@media (min-width: 768px) {
  .page-hero {
    padding: 5rem 0;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .page-hero-grid {
    gap: 3rem;
  }

}

/* desktop */

@media (min-width: 992px) { 
  .page-hero {
    padding: 6.5rem 0 7rem;
  }

  .page-hero h1 {
    font-size: 3.8rem;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  }

  .service-hero-visual {
    position: relative;

    display: block;

    min-height: 440px;

    perspective: 1200px;
  }

  .service-hero-visual::before {
    content: "";

    position: absolute;
    inset: 2.5rem .5rem;

    border-radius: 999px;

    background:
      radial-gradient(circle at 28% 30%, rgba(20, 184, 166, .20), transparent 42%),
      radial-gradient(circle at 74% 72%, rgba(59, 130, 246, .18), transparent 42%);

    filter: blur(34px);
  }

  .service-system-card {
    position: absolute;
    inset: 0 0 auto auto;

    width: min(520px, 100%);
    padding: 1.1rem;

    border: 1px solid rgba(226, 232, 240, .78);
    border-radius: 28px;

    background:
      linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 253, 252, .82));

    backdrop-filter: blur(18px);

    box-shadow:
      0 34px 92px rgba(15, 23, 42, .13),
      0 1px 0 rgba(255, 255, 255, .92) inset;

    overflow: hidden;

    transform: rotateX(4deg) rotateY(-8deg) translateY(0);

    animation:
      service-system-in 1.15s cubic-bezier(.16, 1, .3, 1) both,
      service-system-float 8.4s ease-in-out 1.15s infinite;
  }

  .service-system-card::before {
    content: "";

    position: absolute;
    inset: -45% auto -45% -62%;

    width: 42%;

    background:
      linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .68) 50%, transparent 100%);

    opacity: .42;

    transform: translateX(-110%) rotate(9deg);

    animation: service-system-sheen 7.8s ease-in-out 1.6s infinite;
    pointer-events: none;
  }

  .service-system-card__top {
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;

    padding: .85rem .9rem 1rem;
  }

  .service-system-card__top span {
    color: #0d9488;

    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
  }

  .service-system-card__top strong {
    max-width: 220px;

    color: var(--color-ink);

    font-size: 1.04rem;
    line-height: 1.25;
    text-align: right;
  }

  .service-flow {
    position: relative;
    z-index: 1;

    display: grid;
    gap: .75rem;
  }

  .service-flow::before {
    content: "";

    position: absolute;
    top: 1.35rem;
    bottom: 1.35rem;
    left: 2.1rem;
    z-index: -1;

    width: 2px;

    border-radius: 999px;

    background:
      linear-gradient(180deg, rgba(20, 184, 166, .18), rgba(59, 130, 246, .26), rgba(20, 184, 166, .18));
  }

  .service-flow__item {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    column-gap: .78rem;
    align-items: start;

    padding: .78rem .9rem;

    border: 1px solid rgba(226, 232, 240, .78);
    border-radius: 18px;

    background: rgba(255, 255, 255, .82);

    box-shadow:
      0 14px 36px rgba(15, 23, 42, .055);

    transform: translateX(1rem);
    opacity: 0;

    animation: service-flow-in 1s cubic-bezier(.16, 1, .3, 1) both;
  }

  .service-flow__item:nth-child(1) {
    animation-delay: .28s;
  }

  .service-flow__item:nth-child(2) {
    animation-delay: .44s;
  }

  .service-flow__item:nth-child(3) {
    animation-delay: .60s;
  }

  .service-flow__item:nth-child(4) {
    animation-delay: .76s;
  }

  .service-flow__item span {
    display: inline-grid;
    place-items: center;
    grid-row: span 2;

    width: 2.1rem;
    height: 2.1rem;

    border-radius: 999px;

    background:
      linear-gradient(135deg, rgba(20, 184, 166, .14), rgba(59, 130, 246, .12));
    color: #0f766e;

    font-size: .72rem;
    font-weight: 900;
  }

  .service-flow__item strong {
    display: block;

    color: var(--color-ink);

    font-size: 1rem;
    line-height: 1.25;
  }

  .service-flow__item p {
    margin: .2rem 0 0;

    color: var(--color-muted);

    font-size: .9rem;
    line-height: 1.52;
  }

  .service-system-card__footer {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .45rem;

    margin-top: .8rem;
  }

  .service-system-card__footer span {
    display: inline-flex;
    justify-content: center;

    min-width: 0;
    padding: .5rem .35rem;

    border-radius: 999px;

    background: rgba(15, 23, 42, .045);
    color: #334155;

    font-size: .74rem;
    font-weight: 900;
  }

  @keyframes service-system-in {
    from {
      opacity: 0;
      transform: rotateX(7deg) rotateY(-13deg) translate(2.2rem, 1.2rem);
    }

    to {
      opacity: 1;
      transform: rotateX(4deg) rotateY(-8deg) translateY(0);
    }
  }

  @keyframes service-system-float {
    0%,
    100% {
      transform: rotateX(4deg) rotateY(-8deg) translateY(0);
    }

    50% {
      transform: rotateX(4deg) rotateY(-8deg) translateY(-.48rem);
    }
  }

  @keyframes service-system-sheen {
    0%,
    54% {
      opacity: 0;
      transform: translateX(-110%) rotate(9deg);
    }

    64% {
      opacity: .38;
    }

    100% {
      opacity: 0;
      transform: translateX(390%) rotate(9deg);
    }
  }

  @keyframes service-flow-in {
    from {
      opacity: 0;
      transform: translateX(1rem);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-system-card,
  .service-system-card::before,
  .service-flow__item {
    animation: none;
  }

  .service-system-card {
    opacity: 1;
    transform: rotateX(4deg) rotateY(-8deg) translateY(0);
  }

  .service-flow__item {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   DELIVERABLES SECTION
   alap = mobil
========================= */

.deliverables-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 58%,
      #ffffff 100%
    );
}

.deliverables-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 12%, rgba(20, 184, 166, .10) 12% 12.2%, transparent 12.2% 100%),
    linear-gradient(180deg, transparent 0 18%, rgba(37, 99, 235, .07) 18% 18.16%, transparent 18.16% 100%);
  background-size:
    96px 96px,
    96px 96px,
    min(74vw, 920px) 260px,
    min(74vw, 920px) 260px;
  background-position:
    center top,
    center top,
    center 4rem,
    center 4rem;
  opacity: .34;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  pointer-events: none;
}

.deliverables-section .container {
  position: relative;
  z-index: 1;
}

.deliverables-section .section-heading {
  margin-bottom: 2.25rem;
}

.service-grid {
  display: grid;
  gap: 0;

  padding-left: 1.1rem;
  border-top: 0;
}

.service-card {
  position: relative;

  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  column-gap: .9rem;
  align-items: start;

  min-height: auto;

  padding: 1.15rem 0 1.15rem 1.35rem;

  border-bottom: 0;
  border-radius: 0;

  background: transparent;

  transition:
    background-color .24s ease,
    border-color .24s ease;
}

.service-card::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: .45rem;

  width: 1px;

  background:
    linear-gradient(180deg, rgba(20, 184, 166, .16), rgba(37, 99, 235, .12));

  opacity: 1;

  transition: opacity .24s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(20, 184, 166, .22);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: "";

  position: absolute;
  top: 1.2rem;
  right: 0;
  left: 4rem;

  height: 1px;

  background: linear-gradient(90deg, rgba(20, 184, 166, .34), transparent 72%);
  opacity: .35;
  transform: scaleX(.42);
  transform-origin: left;
  transition:
    opacity .55s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: .75;
  transform: scaleX(1);
}

.deliverables-section .feature-number {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1 / span 2;

  width: 2.1rem;
  height: 2.1rem;

  border: 1px solid rgba(20, 184, 166, .18);
  border-radius: 12px;

  color: #0d9488;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, .10), rgba(37, 99, 235, .07)),
    rgba(255, 255, 255, .70);

  font-size: .95rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 10px 26px rgba(15, 23, 42, .05),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.deliverables-section .feature-number i {
  line-height: 1;
}

.deliverables-section .feature-number::after {
  content: none;
}

@media (max-width: 575.98px) {
  .deliverables-section .feature-number.reveal-ready {
    opacity: 0;
    transform: translateY(.8rem) scale(.96);
    transition:
      opacity 1.35s cubic-bezier(.2, .65, .2, 1),
      transform 1.35s cubic-bezier(.2, .65, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .deliverables-section .feature-number.reveal-ready.is-visible {
    opacity: 1;
    transform: none;
  }
}

.service-card h3 {
  position: relative;
  z-index: 1;

  margin-bottom: .45rem;

  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .deliverables-section {
    background: #fff;
  }

  .deliverables-section::before {
    content: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.4rem;
    row-gap: 0;

    border-top: 0;
    padding-left: 0;
  }

  .service-card {
    grid-template-columns: 3.6rem minmax(0, 1fr);
    column-gap: 1rem;

    padding: 1.55rem 0;
    min-height: 0;
  }

  .service-card::before {
    inset: 0 auto 0 0;
    width: 100%;
    background:
      linear-gradient(90deg, rgba(20, 184, 166, .055), transparent 54%);
    opacity: 0;
  }

  .service-card::after {
    content: none;
  }

  .service-card--featured {
    grid-column: 1 / -1;
  }

  .service-card h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 5rem;

    max-width: 1120px;
  }

  .service-card {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    padding: 1.75rem 0;
  }

  .service-card--featured {
    grid-column: 1 / -1;
    grid-template-columns: 4.25rem minmax(0, .72fr);
    padding-top: 0;
  }

  .service-card--featured h3 {
    font-size: 1.5rem;
  }

  .service-card:last-child {
    grid-column: auto;
  }
}

/* =========================
   DARK SPLIT SECTION
   alap = mobil
========================= */

.dark-split-section {
  position: relative;

  background:
    radial-gradient(circle at 14% 16%, rgba(20, 184, 166, .14), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(59, 130, 246, .10), transparent 38%),
    linear-gradient(135deg, #101827 0%, #162233 48%, #0f1724 100%);
  color: #fff;

  overflow: hidden;
}

.dark-split-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, .045) 48%, transparent 58%);

  opacity: .5;
  transform: translateX(-36%);

  animation: darkSectionGlow 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.dark-split-section::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background:
    linear-gradient(90deg, transparent, rgba(103, 232, 249, .26), transparent);

  pointer-events: none;
}

.dark-split-section .container {
  position: relative;
  z-index: 1;
}

.dark-split-section .row {
  row-gap: 2rem;
}

.dark-split-section h2,
.dark-split-section h3 {
  color: #fff;
}

.dark-split-section .eyebrow {
  color: var(--eyebrow-dark);
}

.plain-list {
  display: grid;
  gap: .85rem;
}

.plain-list article {
  position: relative;

  padding: 1.15rem 0 1.15rem 1rem;

  border: 0;
  border-left: 1px solid rgba(20, 184, 166, .30);
  border-bottom: 1px solid rgba(226, 232, 240, .12);
  border-radius: 0;

  background:
    linear-gradient(90deg, rgba(20, 184, 166, .055), transparent 62%);

  transition:
    border-color .3s ease,
    background-color .3s ease,
    transform .3s ease;
}

.plain-list article:hover {
  border-left-color: rgba(103, 232, 249, .78);
  background-color: rgba(255, 255, 255, .025);
}

.plain-list h3 {
  margin-bottom: .55rem;

  font-size: 1.12rem;
  line-height: 1.25;
}

.plain-list p {
  margin: 0;

  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 575.98px) {
  .dark-split-section {
    padding-top: 3.15rem;
    padding-bottom: 3.9rem;

    background:
      radial-gradient(circle at 86% -22%, rgba(239, 68, 168, .08), transparent 17rem),
      radial-gradient(circle at 50% -34%, rgba(0, 213, 255, .12), transparent 16rem),
      linear-gradient(180deg, #050710 0%, #030607 44%, #030607 100%);
  }

  .dark-split-section::before,
  .dark-split-section::after {
    content: none;
  }

  .dark-split-section .row {
    row-gap: 2.25rem;
  }

  .dark-split-section .col-lg-5 {
    position: relative;
    max-width: 22rem;
    margin-inline: auto;
    padding-left: 1.15rem;
  }

  .dark-split-section .col-lg-5::after {
    content: "";

    position: absolute;
    top: .18rem;
    bottom: .22rem;
    left: 0;

    width: 3px;

    border-radius: 999px;
    background: linear-gradient(180deg, #00d5ff, rgba(239, 68, 168, .36));
    box-shadow: 0 0 18px rgba(0, 213, 255, .14);
  }

  .dark-split-section .eyebrow {
    display: none;
  }

  .dark-split-section h2 {
    color: #fff;
    font-size: 2.02rem;
    line-height: 1.08;
    text-align: left;
  }

  .plain-list {
    gap: 1rem;
    margin-top: .15rem;
  }

  .plain-list article {
    padding: 1.15rem 0 1.15rem 1.35rem;

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;
  }

  .plain-list article::before {
    content: "";

    position: absolute;
    top: 1.25rem;
    bottom: 1.25rem;
    left: 0;

    width: 3px;

    border-radius: 999px;
    background: linear-gradient(180deg, #00d5ff, rgba(239, 68, 168, .46));
    box-shadow: 0 0 18px rgba(0, 213, 255, .16);
  }

  .plain-list article.reveal-ready {
    opacity: 0;
    transform: translateY(1rem);
    transition:
      opacity 1.65s cubic-bezier(.2, .65, .2, 1),
      transform 1.65s cubic-bezier(.2, .65, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .plain-list article.reveal-ready.is-visible {
    opacity: 1;
    transform: none;
  }

  .plain-list h3 {
    color: #fff;
    font-size: 1.24rem;
    line-height: 1.22;
  }

  .plain-list p {
    color: rgba(226, 232, 240, .68);
    font-size: 1rem;
    line-height: 1.72;
  }
}

/* tablet */

@media (min-width: 768px) {
  .plain-list article {
    padding: 1.3rem 0 1.3rem 1.25rem;
  }

  .plain-list h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .dark-split-section .row {
    row-gap: 0;
  }
}

@keyframes darkSectionGlow {
  from {
    opacity: .26;
    transform: translateX(-42%);
  }

  to {
    opacity: .54;
    transform: translateX(14%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dark-split-section::before {
    animation: none;
    transform: none;
  }
}

#kinek {
  position: relative;

  background:
    radial-gradient(circle at 86% 14%, rgba(20, 184, 166, .10), transparent 28rem),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 100%
    );

  overflow: hidden;
}

#kinek::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: min(1120px, calc(100% - 1.5rem));
  height: 1px;

  background:
    linear-gradient(90deg, transparent, rgba(20, 184, 166, .28), transparent);

  transform: translateX(-50%);
  pointer-events: none;
}

#kinek .container {
  position: relative;
  z-index: 1;
}

#kinek .trust-box {
  position: relative;

  padding: 0;

  border: 0;
  border-radius: 0;

  background: transparent;
}

#kinek .trust-box::before {
  content: "";

  position: absolute;
  inset: -1.8rem -1rem auto auto;

  width: min(260px, 48vw);
  height: min(260px, 48vw);

  border-radius: 999px;

  background:
    radial-gradient(circle, rgba(20, 184, 166, .10), transparent 62%);

  pointer-events: none;
}

#kinek .trust-box h2 {
  max-width: 760px;
}

#kinek .trust-box p {
  max-width: 720px;
}

#kinek .trust-highlight {
  padding: 0;

  border: 0;
  border-radius: 0;

  background: transparent;
  box-shadow: none;
}

#kinek .trust-highlight > strong {
  margin-bottom: 1rem;

  color: var(--color-ink);

  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-fit-list {
  counter-reset: service-fit;

  display: grid;
  gap: 0;

  padding: 0;
  margin: 0;

  list-style: none;

  border-top: 1px solid rgba(148, 163, 184, .28);
}

.service-fit-list li {
  position: relative;

  padding: 1rem 0 1rem 3.4rem;

  border-bottom: 1px solid rgba(148, 163, 184, .24);

  color: #334155;

  font-weight: 700;
  line-height: 1.55;
}

.service-fit-list li::before {
  counter-increment: service-fit;
  content: "0" counter(service-fit);

  position: absolute;
  top: 1rem;
  left: 0;

  display: inline-grid;
  place-items: center;

  width: 2.15rem;
  height: 2.15rem;

  border-radius: 999px;

  background:
    linear-gradient(135deg, rgba(20, 184, 166, .12), rgba(59, 130, 246, .10));
  color: #0f766e;

  font-size: .72rem;
  font-weight: 900;
}

.fit-note {
  margin-top: 1.15rem;
  padding: .95rem 0 0 3.4rem;

  border-top: 1px solid rgba(148, 163, 184, .20);
  border-left: 0;

  color: var(--color-muted);

  font-size: .96rem;
}

@media (min-width: 768px) {
  #kinek .trust-box {
    gap: 2.4rem;
  }

  .service-fit-list li {
    padding-block: 1rem;
  }
}

@media (min-width: 992px) {
  #kinek .trust-box {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 4.5rem;
    align-items: start;
  }

  #kinek .trust-box::after {
    content: "";

    position: absolute;
    top: .15rem;
    bottom: .15rem;
    left: calc(50% + .45rem);

    width: 1px;

    background:
      linear-gradient(180deg, transparent, rgba(148, 163, 184, .34), transparent);

    pointer-events: none;
  }
}

/* =========================
   FAQ SECTION
   alap = mobil
========================= */

.faq-section {
  background:
    radial-gradient(circle at 14% 10%, rgba(20, 184, 166, .08), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #f8fbfb 100%);
}

.faq-list {
  display: grid;
  align-items: start;

  gap: .75rem;

  max-width: 920px;

  margin-top: 2rem;
}

.faq-list details {
  border: 1px solid rgba(148, 163, 184, .26);
  border-radius: var(--radius-md);

  background:
    linear-gradient(180deg, #fff 0%, #fbfdfd 100%);

  transition:
    border-color .45s ease,
    box-shadow .45s ease,
    background .45s ease;
}

.faq-list details[open] {
  border-color: rgba(20, 184, 166, .24);

  box-shadow:
    0 16px 38px rgba(15, 23, 42, .055);
}

.faq-list summary {
  position: relative;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;

  min-height: var(--tap-target);
  padding: 1rem;

  list-style: none;

  cursor: pointer;

  color: var(--color-ink);

  font-weight: 800;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";

  display: inline-grid;
  place-items: center;

  width: 1.75rem;
  height: 1.75rem;

  border-radius: 999px;

  background: #f1f5f9;
  color: var(--color-ink);

  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;

  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    background .45s ease,
    color .45s ease;
}

.faq-list details[open] summary::after {
  content: "-";

  background: rgba(240, 253, 250, .9);
  color: #0f766e;

  transform: rotate(180deg);
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;

  border-radius: 8px;
}

.faq-list p {
  padding: 0 1rem 1rem;
  margin: 0;

  color: var(--color-muted);

  line-height: 1.75;
}

/* tablet */

@media (min-width: 768px) {
  .faq-list {
    gap: 1rem;
  }

  .faq-list summary {
    padding: 1.15rem 1.25rem;

    font-size: 1.05rem;
  }

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

  .faq-list p {
    padding: 0 1.25rem 1.25rem;
  }
}

@media (min-width: 992px) {
  .faq-section .section-heading {
    max-width: 760px;
    margin-bottom: 2.75rem;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;

    max-width: 1180px;
  }
}

@media (max-width: 575.98px) {
  .faq-section--services-mobile {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    background:
      radial-gradient(circle at 16% 8%, rgba(20, 184, 166, .08), transparent 24rem),
      linear-gradient(180deg, #fff 0%, #f8fbfb 100%);
  }

  .faq-section--services-mobile::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    background:
      linear-gradient(90deg, rgba(15, 23, 42, .038) 1px, transparent 1px),
      linear-gradient(180deg, rgba(15, 23, 42, .028) 1px, transparent 1px);
    background-size: 88px 88px;
    opacity: .28;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    pointer-events: none;
  }

  .faq-section--services-mobile .container {
    position: relative;
    z-index: 1;
  }

  .faq-section--services-mobile .section-heading {
    margin-bottom: 2rem;
  }

  .faq-section--services-mobile .faq-list {
    gap: .75rem;
    max-width: 920px;
    margin-top: 2rem;
  }

  .faq-section--services-mobile .faq-list details {
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: var(--radius-md);
    background:
      linear-gradient(180deg, #fff 0%, #fbfdfd 100%);
    transition:
      opacity 1.45s cubic-bezier(.2, .65, .2, 1),
      transform 1.45s cubic-bezier(.2, .65, .2, 1),
      border-color .55s ease,
      box-shadow .55s ease,
      background .55s ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

  .faq-section--services-mobile .faq-list details.reveal-ready {
    opacity: 0;
    transform: translateY(.9rem);
  }

  .faq-section--services-mobile .faq-list details.reveal-ready.is-visible {
    opacity: 1;
    transform: none;
  }

  .faq-section--services-mobile .faq-list details[open] {
    border-color: rgba(20, 184, 166, .24);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .055);
  }

  .faq-section--services-mobile .faq-list summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: var(--tap-target);
    padding: 1rem;
    color: var(--color-ink);
    font-weight: 800;
    line-height: 1.35;
  }

  .faq-section--services-mobile .faq-list summary::after {
    width: 1.75rem;
    height: 1.75rem;
    background: #f1f5f9;
    color: var(--color-ink);
    transition:
      transform .55s cubic-bezier(.16, 1, .3, 1),
      background .55s ease,
      color .55s ease;
  }

  .faq-section--services-mobile .faq-list details[open] summary::after {
    background: rgba(240, 253, 250, .9);
    color: #0f766e;
  }

  .faq-section--services-mobile .faq-list p {
    padding: 0 1rem 1rem;
    color: var(--color-muted);
    line-height: 1.75;
  }
}

/* =========================
   MUNKÁINK HERO
   alap = mobil
========================= */

.munkaink-hero {
  padding: 3.75rem 0 4.25rem;

  background:
    radial-gradient(circle at 80% 14%, rgba(20, 184, 166, .13), transparent 30%),
    radial-gradient(circle at 15% 88%, rgba(59, 130, 246, .12), transparent 32%),
    var(--color-bg);
}

.munkaink-hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.munkaink-hero-inner {
  max-width: 920px;
}

.munkaink-hero .eyebrow {
  font-size: 1.12rem;
  letter-spacing: .06em;
  line-height: 1.1;
}

.munkaink-hero .eyebrow::before {
  width: .55em;
  height: .55em;

  transform: translateY(-.02em);
}

.munkaink-hero-inner h1 {
  max-width: 900px;

  margin-bottom: 1.25rem;

  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.munkaink-lead {
  max-width: 900px;

  margin: 0;

  color: #334155;

  font-size: 1.06rem;
  line-height: 1.75;
}

.munkaink-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;

  margin-top: 1.55rem;
}

.munkaink-hero-actions .btn {
  min-height: 3rem;
}

.munkaink-hero-visual {
  position: relative;

  display: grid;
  min-height: 330px;

  isolation: isolate;
}

.munkaink-hero-visual::before {
  content: "";

  position: absolute;
  inset: 2rem 0 0;
  z-index: -1;

  border-radius: 999px;

  background:
    radial-gradient(circle at 30% 30%, rgba(20, 184, 166, .20), transparent 40%),
    radial-gradient(circle at 72% 64%, rgba(59, 130, 246, .16), transparent 42%);

  filter: blur(28px);
}

.work-preview {
  position: absolute;

  overflow: hidden;

  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: 22px;

  background: #fff;

  box-shadow:
    0 26px 70px rgba(15, 23, 42, .12);
}

.work-preview::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 34%),
    linear-gradient(0deg, rgba(15, 23, 42, .08), transparent 42%);

  pointer-events: none;
}

.work-preview img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;
}

.work-preview span {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  z-index: 1;

  padding: .42rem .62rem;

  border-radius: 999px;

  background: rgba(15, 23, 42, .82);
  color: #fff;

  font-size: .78rem;
  font-weight: 900;
}

.work-preview--primary {
  top: 0;
  right: 0;
  z-index: 2;

  width: min(440px, 88%);
  height: 260px;

  animation: work-preview-primary 1.05s cubic-bezier(.22, 1, .36, 1) both;
}

.work-preview--secondary {
  left: 0;
  bottom: 0;
  z-index: 1;

  width: min(310px, 62%);
  height: 185px;

  transform: translateY(.35rem);

  animation: work-preview-secondary 1.1s cubic-bezier(.22, 1, .36, 1) .16s both;
}

@keyframes work-preview-primary {
  from {
    opacity: 0;
    transform: translate3d(1.2rem, 1rem, 0) rotate(.6deg);
  }

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

@keyframes work-preview-secondary {
  from {
    opacity: 0;
    transform: translate3d(-1rem, 1.3rem, 0) rotate(-.8deg);
  }

  to {
    opacity: 1;
    transform: translateY(.35rem);
  }
}

/* tablet */

@media (min-width: 768px) {
  .munkaink-hero {
    padding: 5rem 0;
  }

  .munkaink-hero-inner h1 {
    font-size: 3rem;
  }

  .munkaink-hero-actions {
    margin-top: 1.8rem;
  }

  .munkaink-lead {
    font-size: 1.16rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .munkaink-hero {
    padding: 6.5rem 0 7rem;
  }

  .munkaink-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
    gap: 3rem;
  }

  .munkaink-hero-inner h1 {
    font-size: 3.8rem;
  }

  .munkaink-lead {
    font-size: 1.28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-preview--primary,
  .work-preview--secondary {
    animation: none;
  }
}

/* =========================
   CASE STUDY SECTION
   alap = mobil
========================= */

.case-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.case-study {
  display: grid;
  gap: 1.25rem;

  margin-bottom: 2rem;
  padding-bottom: 2rem;

  border-bottom: 1px solid rgba(148, 163, 184, .24);
}

.case-study:last-child {
  margin-bottom: 0;
}

.case-study-content {
  min-width: 0;
}

.case-study-visual {
  overflow: hidden;

  aspect-ratio: 16 / 10;

  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 24px 70px rgba(15, 23, 42, .10);
}

.case-study-visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;
}

.case-intro {
  max-width: 760px;

  margin-bottom: 0;

  color: var(--color-muted);

  font-size: 1.04rem;
  line-height: 1.75;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;

  margin: -.35rem 0 1.25rem;
}

.case-meta span {
  display: inline-flex;

  padding: .42rem .62rem;

  border: 1px solid rgba(20, 184, 166, .18);
  border-radius: 999px;

  background: rgba(240, 253, 250, .70);
  color: #0f766e;

  font-size: .78rem;
  font-weight: 900;
}

.case-grid {
  display: grid;
  gap: 1rem;

  margin-top: 2rem;
}

.case-box {
  padding: 1rem 0 1rem 1.15rem;

  border: 0;
  border-left: 1px solid rgba(20, 184, 166, .26);
  border-bottom: 1px solid rgba(148, 163, 184, .18);
  border-radius: 0;

  background: transparent;
}

.case-box strong {
  display: block;

  margin-bottom: .5rem;

  color: var(--color-ink);
}

.case-box p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .case-study {
    margin-bottom: 2rem;
  }

  .case-intro {
    font-size: 1.08rem;
  }

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

  .case-box {
    padding-right: 1rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .case-study {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 3rem;
    align-items: center;

    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }

  .case-study--building {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  }

  .case-study--building .case-study-visual {
    order: 2;
  }

  .case-study--building .case-study-content {
    order: 1;
  }

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

.work-note-section {
  background: #fff;
}

.work-note-box {
  display: grid;
  gap: 2rem;

  padding-top: 2.4rem;

  border-top: 1px solid rgba(148, 163, 184, .24);
}

.work-note-box h2 {
  margin-bottom: 1rem;

  font-size: 1.95rem;
}

.work-note-box p {
  max-width: 760px;

  color: var(--color-muted);
  line-height: 1.75;
}

.work-note-highlight {
  padding: 1.2rem 0 0;

  border-top: 1px solid rgba(20, 184, 166, .28);
}

.work-note-highlight strong {
  display: block;

  margin-bottom: .5rem;

  color: var(--color-ink);
}

@media (min-width: 992px) {
  .work-note-box {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    align-items: start;
  }
}


/* Áraink oldal */

.price-intro-section,
.maintenance-section,
.payment-section { background: #fff; }

.pricing-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  background:
    radial-gradient(circle at 88% 12%, rgba(20, 184, 166, .18), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(59, 130, 246, .14), transparent 34%),
    linear-gradient(135deg, #0f172a 0%, #172033 100%);
}

.pricing-section::before {
  content: "";

  position: absolute;
  inset: -30% -18% auto auto;
  z-index: -1;

  width: min(620px, 58vw);
  aspect-ratio: 1;

  border-radius: 999px;

  background: radial-gradient(circle, rgba(103, 232, 249, .12), transparent 68%);

  filter: blur(8px);
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-section .section-heading .eyebrow {
  color: var(--eyebrow-dark);
}

.pricing-section .section-heading .eyebrow::before {
  background: var(--aura-dot-dark);
}

.pricing-section .section-heading h2 {
  color: #fff;
}

.pricing-section .section-heading p {
  color: rgba(226, 232, 240, .80);
}

.price-clarity-box {
  display: grid;
  gap: 1.5rem;
  align-items: start;

  padding-top: 2.4rem;

  border-top: 1px solid rgba(148, 163, 184, .24);
}

.price-clarity-box h2 {
  margin-bottom: 1rem;

  font-size: 1.95rem;
}

.price-clarity-box p {
  max-width: 780px;

  color: var(--color-muted);
  line-height: 1.75;
}

.price-clarity-highlight {
  display: grid;
  gap: .45rem;

  padding: 1.15rem;

  border: 1px solid rgba(20, 184, 166, .22);
  border-radius: var(--radius-md);

  background:
    radial-gradient(circle at 92% 14%, rgba(20, 184, 166, .12), transparent 34%),
    #f8fafc;
}

.price-clarity-highlight strong {
  color: #0f766e;

  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.price-clarity-highlight span {
  color: var(--color-ink);

  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.price-clarity-highlight p {
  margin: 0;

  font-size: .96rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

  margin-top: 2rem;
}

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 1.35rem;

  background: rgba(255, 255, 255, .055);

  border: 1px solid rgba(226, 232, 240, .14);
  border-radius: 18px;

  box-shadow:
    0 18px 50px rgba(2, 6, 23, .12);

  overflow: hidden;

  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    box-shadow .45s cubic-bezier(.22, 1, .36, 1),
    border-color .45s cubic-bezier(.22, 1, .36, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);

  border-color: rgba(103, 232, 249, .22);

  box-shadow:
    0 24px 65px rgba(2, 6, 23, .24);
}

.pricing-card.reveal-ready,
.addon-item.reveal-ready {
  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1),
    box-shadow .45s cubic-bezier(.22, 1, .36, 1),
    border-color .45s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.pricing-card.reveal-ready.is-visible,
.addon-item.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card.reveal-ready.is-visible:hover {
    transform: translateY(-4px);
  }

  .addon-item.reveal-ready.is-visible:hover {
    transform: translateY(-3px);
  }
}

.pricing-card.featured {
  border-color: rgba(103, 232, 249, .32);

  box-shadow:
    0 28px 80px rgba(2, 6, 23, .28),
    0 16px 44px rgba(20, 184, 166, .12);
}

.pricing-card.featured::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(20, 184, 166, .08),
      transparent 38%
    );

  pointer-events: none;
}

.pricing-card--main {
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 184, 166, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 255, 253, .96) 100%);
}

.package-label {
  display: inline-flex;

  margin-bottom: 1rem;

  color: #0d9488;

  font-size: .78rem;
  font-weight: 900;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: .85rem;

  font-size: 1.45rem;
  line-height: 1.2;
}

.pricing-section .pricing-card:not(.pricing-card--main) h3 {
  color: #fff;
}

.price {
  margin: 0 0 .35rem;
}

.price span {
  display: block;

  font-size: 2rem;
  font-weight: 900;

  letter-spacing: 0;

  color: #fff;

  line-height: 1;
}

.pricing-card--main .price span {
  color: var(--color-ink);
}

.price small {
  display: inline-block;

  margin-top: .35rem;

  color: var(--color-muted);

  font-size: .92rem;
  font-weight: 700;
}

.price--soft span {
  font-size: 1.65rem;
}

.old-price {
  margin-bottom: 1rem;

  color: var(--color-muted);

  font-size: .95rem;
}

.package-desc {
  color: var(--color-muted);

  line-height: 1.7;
}

.pricing-card ul,
.mini-price-card ul {
  display: grid;
  gap: .7rem;

  padding: 0;
  margin: 1.35rem 0 0;

  list-style: none;
}

.pricing-card li,
.mini-price-card li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;

  color: #334155;

  font-weight: 700;
  line-height: 1.6;
}

.pricing-card li::before,
.mini-price-card li::before {
  content: "✓";

  flex-shrink: 0;

  color: #0d9488;

  font-weight: 900;
}

.pricing-note {
  max-width: 760px;

  margin-top: 1.5rem;

  color: var(--color-muted);

  font-size: .95rem;
  line-height: 1.7;
}

.pricing-section .package-label {
  color: #67e8f9;
}

.pricing-section .pricing-card--main .package-label {
  color: #0d9488;
}

.pricing-section .price small {
  color: rgba(226, 232, 240, .72);
}

.pricing-section .pricing-card--main .price small {
  color: var(--color-muted);
}

.pricing-section .package-desc {
  color: rgba(226, 232, 240, .78);
}

.pricing-section .pricing-card--main .package-desc {
  color: var(--color-muted);
}

.pricing-section .pricing-card li {
  color: rgba(226, 232, 240, .84);
}

.pricing-section .pricing-card--main li {
  color: #334155;
}

.pricing-section .pricing-note {
  color: rgba(226, 232, 240, .70);
}

.support-strip {
  position: relative;

  display: grid;
  gap: 2rem;
  align-items: start;

  padding: 2.1rem 0;

  border-top: 1px solid rgba(148, 163, 184, .24);
  border-bottom: 1px solid rgba(148, 163, 184, .24);
}

.support-strip::before {
  content: "";

  position: absolute;
  top: 2rem;
  right: 0;

  width: min(260px, 44vw);
  aspect-ratio: 1;

  border-radius: 999px;

  background: radial-gradient(circle, rgba(20, 184, 166, .10), transparent 68%);

  pointer-events: none;
}

.support-strip h2 {
  margin-bottom: .9rem;

  font-size: 2.05rem;
}

.support-strip p {
  max-width: 780px;

  color: var(--color-muted);
  line-height: 1.75;
}

.support-strip__list {
  position: relative;

  display: grid;
  gap: 0;

  border-top: 1px solid rgba(148, 163, 184, .24);
}

.support-strip__list div {
  display: grid;
  gap: .35rem;

  padding: 1rem 0;

  border-bottom: 1px solid rgba(148, 163, 184, .24);
}

.support-strip__list span {
  color: #0d9488;

  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
}

.support-strip__list strong {
  color: var(--color-ink);

  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}

.support-strip__list p {
  margin: 0;

  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.65;
}

@media (min-width: 768px) {

  .price-clarity-box {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
    gap: 2rem;
  }

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

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card--main {
    grid-column: 1 / -1;
  }

  .support-strip {
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 3rem;
  }
}

@media (min-width: 1200px) {

  .pricing-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(0, .92fr) minmax(0, .92fr);
    gap: 1.6rem;
    align-items: stretch;
  }

  .pricing-card--main {
    grid-column: auto;
  }

  .pricing-section .pricing-card:not(.pricing-card--main) {
    padding: 1.15rem 0 1.15rem 1.45rem;

    border: 0;
    border-left: 1px solid rgba(226, 232, 240, .18);
    border-radius: 0;

    background: transparent;
    box-shadow: none;
  }

  .pricing-section .pricing-card:not(.pricing-card--main):hover {
    transform: translateX(4px);

    border-color: rgba(103, 232, 249, .32);
    box-shadow: none;
  }
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

  margin-top: 2rem;
}

.mini-price-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 1.35rem;

  background: #f8fafc;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  overflow: hidden;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.mini-price-card:hover {
  transform: translateY(-4px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 22px 60px rgba(15, 23, 42, .08);
}

.mini-price-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(20, 184, 166, .06),
      transparent 42%
    );

  pointer-events: none;
}

.mini-price-card h3 {
  margin-bottom: .65rem;

  font-size: 1.35rem;
  line-height: 1.2;
}

.mini-price-card p {
  margin-bottom: 1rem;
}

.mini-price-card strong {
  display: inline-block;

  color: var(--color-ink);

  font-size: 1.35rem;
  font-weight: 900;

  letter-spacing: 0;
}

.mini-price-card ul {
  display: grid;
  gap: .7rem;

  padding: 0;
  margin: 0;

  list-style: none;
}

.mini-price-card li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;

  color: #334155;

  font-weight: 700;
  line-height: 1.6;
}

.mini-price-card li::before {
  content: "✓";

  flex-shrink: 0;

  color: #0d9488;

  font-weight: 900;
}

@media (min-width: 768px) {

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

  .mini-price-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1200px) {

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

.addon-section {
  background: #f8fafc;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;

  margin-top: 2rem;

  border-top: 1px solid rgba(148, 163, 184, .24);
}

.addon-item {
  display: grid;
  gap: .35rem;

  padding: 1.05rem 0;

  background: transparent;

  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, .24);
  border-radius: 0;

  transition:
    transform .2s ease,
    border-color .2s ease;
}

.addon-item:hover {
  transform: translateX(4px);

  border-color: rgba(20, 184, 166, .22);
}

.addon-item span {
  color: var(--color-muted);

  font-weight: 700;
}

.addon-item strong {
  color: var(--color-ink);

  font-size: 1.05rem;
  font-weight: 900;
}

/* tablet */

@media (min-width: 768px) {
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .addon-item strong {
    text-align: right;
  }
}

/* desktop */

@media (min-width: 1200px) {
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.payment-section .trust-highlight strong {
  color: #0f172a;
}

.payment-section .trust-highlight p {
  margin-bottom: 0;
}

/* Rolunk oldal */
.story-section {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;

  align-items: start;
}

.story-text p {
  color: var(--color-muted);

  margin-bottom: 1rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-card {
  padding: 1.35rem;

  background: #f8fafc;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .06);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.story-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 24px 60px rgba(15, 23, 42, .08);
}

.story-card strong {
  display: block;

  margin-bottom: 1rem;

  color: var(--color-ink);

  font-size: 1.1rem;
  font-weight: 800;
}

.story-card ul {
  display: grid;
  gap: .8rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.story-card li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;

  color: #334155;

  font-weight: 700;
  line-height: 1.6;
}

.story-card li::before {
  content: "✓";

  flex-shrink: 0;

  color: #0d9488;

  font-weight: 900;
}

/* tablet */

@media (min-width: 768px) {

  .story-card {
    padding: 1.5rem;
  }
}

/* desktop */

@media (min-width: 992px) {

  .story-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr);
    gap: 2rem;
  }
}

.values-section {
  background: #f8fafc;
}

.values-section .section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.value-card {
  padding: 1.35rem;

  background: #fff;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.value-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.value-number {
  display: inline-flex;

  margin-bottom: 1.25rem;

  color: #0d9488;

  font-weight: 900;
  letter-spacing: .12em;
}

.value-card h3 {
  margin-bottom: .65rem;

  font-size: 1.15rem;
  line-height: 1.25;
}

.value-card p {
  margin-bottom: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .values-section .section-heading {
    margin-bottom: 2.5rem;
  }

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

  .value-card {
    padding: 1.5rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .values-section .section-heading {
    margin-bottom: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* =========================
   PERSONAL SECTION
   alap = mobil
========================= */

.personal-section {
  background: #fff;
}

.personal-box {
  display: grid;
  gap: 1.35rem;

  padding: 1.35rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(20, 184, 166, .14),
      transparent 32%
    ),
    #f8fafc;
}

.quote-box {
  padding: 1.35rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: #fff;

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.quote-box p {
  margin: 0;

  color: #334155;

  font-size: 1.05rem;
  line-height: 1.75;
}

/* tablet */

@media (min-width: 768px) {
  .personal-box {
    gap: 1.75rem;
    padding: 2rem;
  }

  .quote-box {
    padding: 1.5rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .personal-box {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 2rem;
    align-items: center;

    padding: 3rem;
  }
}

/* Hogyan dolgozunk oldal */
.about-detail-section {
  background: #fff;
}

.glossary-section,
.about-detail-section {
  background: #fff;
}

.glossary-grid,
.question-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

  margin-top: 2rem;
}

.glossary-card,
.question-card {
  padding: 1.25rem;

  background: #fff;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .05);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.glossary-card:hover,
.question-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 22px 60px rgba(15, 23, 42, .08);
}

.glossary-card h3,
.question-card h3 {
  margin-bottom: .65rem;

  font-size: 1.12rem;
  line-height: 1.25;
}

.glossary-card p,
.question-card p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .glossary-grid,
  .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glossary-card,
  .question-card {
    padding: 1.35rem;
  }

  .glossary-card h3,
  .question-card h3 {
    font-size: 1.18rem;
  }
}

@media (min-width: 992px) {
  .glossary-grid,
  .question-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Eléehetőség oldal */
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 18%, rgba(20, 184, 166, .14), transparent 25rem),
    radial-gradient(circle at 86% 70%, rgba(124, 58, 237, .09), transparent 27rem),
    linear-gradient(180deg, #ffffff 0%, #f3fbfa 46%, #ffffff 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 12% -12% auto;
  z-index: -1;
  height: 62%;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(15, 23, 42, .055) 28% 29%, transparent 29% 100%),
    linear-gradient(115deg, transparent 0 56%, rgba(20, 184, 166, .09) 56% 57%, transparent 57% 100%);
  opacity: .8;
  pointer-events: none;
}

.contact-layout {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-info,
.contact-form {
  padding: 1.35rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info::before {
  content: "";
  display: block;
  width: min(18rem, 72%);
  height: 1px;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, #0f172a, rgba(20, 184, 166, .7), rgba(124, 58, 237, .34), transparent);
}

.contact-info p,
.form-header p {
  color: var(--color-muted);
}

.contact-cards {
  display: grid;
  gap: 0;
  margin: 1.6rem 0 1rem;
  border-top: 1px solid rgba(15, 23, 42, .1);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(6.25rem, .42fr) minmax(0, 1fr);
  gap: .8rem;
  align-items: center;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, .1);
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.contact-card:hover {
  border-color: rgba(20, 184, 166, .4);
  transform: translateX(4px);
}

.contact-card span {
  color: #0f766e;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--color-ink);
  font-size: clamp(.98rem, 2.4vw, 1.06rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.small-note,
.form-note {
  color: var(--color-muted);
  font-size: .92rem;
  margin-bottom: 0;
}

.small-note {
  max-width: 34rem;
  padding-top: .45rem;
}

.contact-form {
  position: relative;
  overflow: hidden;
  padding: .25rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-form::before {
  content: none;
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, .75), rgba(124, 58, 237, .38), transparent);
}

.contact-form::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(20, 184, 166, .055) 48% 49%, transparent 49% 100%),
    linear-gradient(120deg, transparent 0 66%, rgba(124, 58, 237, .045) 66% 67%, transparent 67% 100%);
  pointer-events: none;
}

.form-header {
  position: relative;
  margin: 0 0 1.15rem;
  padding: 0 0 .85rem;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, .10);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form-header h2 {
  margin-bottom: .45rem;
  color: var(--color-ink);
}

.form-header p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: .48rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 800;
}

.contact-form label:not(.checkbox-row) {
  color: #172033;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .74);
  color: var(--color-ink);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 3.6rem;
  border-color: rgba(15, 23, 42, .1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(248, 250, 252, .82)),
    #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 12px 30px rgba(15, 23, 42, .045);
}

.contact-form textarea {
  min-height: 12rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(20, 184, 166, .72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .13);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 118, 110, .72);
  box-shadow:
    0 0 0 4px rgba(20, 184, 166, .14),
    0 18px 40px rgba(15, 118, 110, .08);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: .9rem 0 1.25rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .56);
  color: #334155;
}

.checkbox-row input {
  width: auto;
  margin-top: .35rem;
  accent-color: #0f766e;
}

.checkbox-row a {
  color: #0f766e;
  font-weight: 900;
}

.contact-form .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 3.45rem;
  padding-inline: 1.35rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a, #0f766e);
  border-color: rgba(15, 118, 110, .55);
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 118, 110, .24);
}

.contact-form .btn-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
  transform: skewX(-18deg);
  transition: left .75s ease;
  pointer-events: none;
}

.contact-form .btn-primary span {
  position: relative;
  z-index: 1;
}

.contact-form .d-none {
  display: none !important;
}

.contact-form .btn-primary:hover::after {
  left: 110%;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (max-width: 575.98px) {
  .contact-section {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .contact-layout {
    gap: .95rem;
  }

  .contact-info,
  .contact-form {
    padding-top: .65rem;
    padding-bottom: .65rem;
  }

  .contact-cards {
    margin: 1.1rem 0 .7rem;
  }

  .contact-card {
    grid-template-columns: minmax(5.2rem, .36fr) minmax(0, 1fr);
    gap: .55rem;
    padding: .72rem 0;
  }

  .small-note {
    font-size: .88rem;
  }

  .contact-form {
    padding: .25rem 0 0;
  }

  .form-header {
    margin-bottom: .95rem;
    padding: 0 0 .75rem;
  }

  .form-header h2 {
    font-size: 1.28rem;
  }

  .form-header p {
    font-size: .9rem;
  }

  .form-grid {
    gap: .72rem;
  }

  .form-group {
    gap: .35rem;
    margin-bottom: .74rem;
  }

  .contact-form label:not(.checkbox-row) {
    font-size: .76rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 3.05rem;
    padding: .72rem .85rem;
    border-radius: 15px;
  }

  .contact-form textarea {
    min-height: 8.8rem;
  }

  .checkbox-row {
    margin: .72rem 0 1rem;
    padding: .72rem .8rem;
    border-radius: 15px;
    font-size: .9rem;
    line-height: 1.45;
  }

  .contact-form .btn-primary {
    width: 100%;
    min-height: 3.15rem;
    border-radius: 16px;
  }
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    padding: .35rem 0 0;
  }
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
    gap: clamp(2rem, 5vw, 4.5rem);
  }
}

@media (min-width: 1200px) {
  .contact-form {
    padding: .35rem 0 0;
  }
}



/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  margin-top: 3.25rem;

  border-top: 1px solid rgba(226, 232, 240, .12);

  padding: 1.25rem 0;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card.reveal-ready,
  .addon-item.reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.footer-bottom .container {
  display: grid;
  gap: 1rem;
}

.footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: .9rem;

  align-items: flex-start;
}

.footer-legal-nav a,
.footer-cookie-button {
  padding: 0;

  border: 0;
  background: transparent;

  color: #cbd5e1;

  font-size: .95rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    color .2s ease,
    opacity .2s ease;
}

.footer-legal-nav a:hover,
.footer-cookie-button:hover {
  color: #fff;
}

.footer-cookie-button {
  cursor: pointer;
}

.footer-copy {
  margin: 0;

  color: #cbd5e1;

  font-size: .92rem;
  line-height: 1.5;
}
/* tablet */

@media (min-width: 768px) {
  .site-footer {
    padding: 3.6rem 0 0;
  }

  .footer-main {
    gap: 3rem;
  }

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

  .footer-bottom {
    margin-top: 3rem;
  }

  .footer-bottom .container {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .footer-legal-nav {
    flex-direction: row;
    flex-wrap: wrap;

    align-items: center;
    gap: 1.5rem;
  }

  .footer-copy {
    text-align: right;
  }
}

/* desktop */

@media (min-width: 992px) {
  .site-footer {
    padding: 3.8rem 0 0;
  }

  .site-footer::after {
    content: "AURA DIGITAL";

    position: absolute;
    right: max(2rem, calc((100vw - 1140px) / 2));
    bottom: 5.35rem;
    z-index: 0;

    color: rgba(255, 255, 255, .055);

    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(3.2rem, 7.6vw, 7.2rem);
    font-weight: 900;
    letter-spacing: .16em;
    line-height: .85;
    white-space: nowrap;

    pointer-events: none;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr);
    gap: clamp(3rem, 6vw, 7rem);
    align-items: end;
    padding-top: 1.9rem;
  }

  .footer-brand {
    align-self: start;
    padding-top: .3rem;
  }

  .footer-logo {
    font-size: 1.16rem;
  }

  .footer-brand p {
    font-size: 1.08rem;
  }
}


/* =========================
   LEGAL PAGES
   alap = mobil
========================= */

.legal-hero {
  padding: 3.75rem 0 4rem;

  background:
    radial-gradient(circle at 85% 14%, rgba(20, 184, 166, .13), transparent 30%),
    radial-gradient(circle at 15% 88%, rgba(59, 130, 246, .12), transparent 32%),
    var(--color-bg);
}

.legal-hero h1 {
  max-width: 900px;

  margin-bottom: 1rem;

  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-hero .hero-lead {
  max-width: 820px;

  color: #334155;

  font-size: 1.06rem;
  line-height: 1.75;
}

.legal-section {
  background: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;

  align-items: start;
}

.legal-toc {
  padding: 1.1rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  background: #f8fafc;
}

.legal-toc strong {
  display: block;

  margin-bottom: 1rem;

  color: var(--color-ink);
}

.legal-toc ol {
  display: grid;
  gap: .45rem;

  margin: 0;
  padding-left: 1.2rem;
}

.legal-toc a {
  color: #334155;

  font-weight: 700;
  text-decoration: none;
}

.legal-toc a:hover {
  color: #0d9488;
}

.legal-content {
  padding: 1.35rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  background: #fff;

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .06);
}

.legal-content section {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;

  border-bottom: 1px solid var(--color-line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;

  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 1rem;

  font-size: 1.45rem;
  line-height: 1.15;
}

.legal-content h3 {
  margin-top: 1.3rem;
  margin-bottom: .55rem;

  font-size: 1.12rem;
  line-height: 1.25;
}

.legal-content p,
.legal-content li,
.legal-content dd {
  color: #334155;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: .45rem;

  margin-bottom: 1rem;
}

.data-list {
  display: grid;
  gap: .75rem;
}

.data-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem;

  padding: .8rem 0;

  border-bottom: 1px solid var(--color-line);
}

.data-list dt {
  color: var(--color-ink);

  font-weight: 900;
}

.data-list dd {
  margin: 0;
}

.definition-list,
.rights-grid {
  display: grid;
  gap: 1rem;
}

.definition-list article,
.rights-grid article {
  padding: 1rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: #f8fafc;
}

.definition-list p,
.rights-grid p {
  margin: 0;
}

.legal-table {
  display: grid;

  margin: 1rem 0 1.5rem;

  overflow: hidden;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr;

  border-bottom: 1px solid var(--color-line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row span {
  padding: .9rem;

  color: #334155;

  border-bottom: 1px solid var(--color-line);
}

.table-row span:last-child {
  border-bottom: 0;
}

.table-head {
  background: #f8fafc;

  font-weight: 900;
}

/* tablet */

@media (min-width: 576px) {
  .data-list div {
    grid-template-columns: 170px 1fr;
    gap: 1rem;
  }
}

@media (min-width: 701px) {
  .table-row {
    grid-template-columns: 1fr 1.25fr 1.4fr;
  }

  .two-col .table-row {
    grid-template-columns: 1fr 1.8fr;
  }

  .table-row span {
    border-right: 1px solid var(--color-line);
    border-bottom: 0;
  }

  .table-row span:last-child {
    border-right: 0;
  }
}

@media (min-width: 768px) {
  .legal-hero {
    padding: 5rem 0;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  .legal-hero .hero-lead {
    font-size: 1.16rem;
  }

  .legal-layout {
    gap: 1.75rem;
  }

  .legal-content {
    padding: 2rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .legal-hero {
    padding: 6rem 0;
  }

  .legal-hero h1 {
    font-size: 3.6rem;
  }

  .legal-hero .hero-lead {
    font-size: 1.2rem;
  }

  .legal-layout {
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 2rem;
  }

  .legal-toc {
    position: sticky;
    top: 110px;

    max-height: calc(100vh - 140px);

    padding: 1.25rem;

    overflow: auto;
  }

  .legal-content {
    padding: 3rem;
  }
}


/* =========================
   COOKIE BANNER
   alap = mobil
========================= */

.cookie-banner {
  position: fixed;
  left: max(.85rem, env(safe-area-inset-left, 0px));
  right: max(.85rem, env(safe-area-inset-right, 0px));
  bottom: max(.85rem, env(safe-area-inset-bottom, 0px));
  z-index: 1100;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner__content {
  display: grid;
  gap: 1rem;

  max-width: 1120px;
  margin: 0 auto;

  padding: 1rem;

  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 22px;

  background: rgba(255, 255, 255, .96);

  box-shadow:
    0 24px 70px rgba(15, 23, 42, .16);

  backdrop-filter: blur(16px);
}

.cookie-banner strong {
  display: block;

  margin-bottom: .25rem;

  color: #0f172a;
  font-weight: 900;
}

.cookie-banner p {
  margin: 0;

  color: #64748b;

  font-size: .92rem;
  line-height: 1.65;
}

.cookie-banner a {
  display: inline-flex;

  margin-top: .45rem;

  color: #0f766e;

  font-weight: 800;
  text-decoration: none;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: grid;
  gap: .6rem;
}

.cookie-banner__actions .btn,
.cookie-modal__actions .btn {
  width: 100%;
}

/* =========================
   COOKIE MODAL
   alap = mobil
========================= */

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;

  display: grid;
  place-items: center;

  padding:
    max(.85rem, env(safe-area-inset-top, 0px))
    max(.85rem, env(safe-area-inset-right, 0px))
    max(.85rem, env(safe-area-inset-bottom, 0px))
    max(.85rem, env(safe-area-inset-left, 0px));
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(15, 23, 42, .55);

  backdrop-filter: blur(8px);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 1.7rem);

  overflow: auto;

  padding: 1.15rem;

  border: 1px solid #e2e8f0;
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 30px 90px rgba(15, 23, 42, .28);
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;

  margin-bottom: 1rem;
}

.cookie-modal__header h2 {
  margin: 0;

  color: #0f172a;
}

.cookie-modal__close {
  flex: 0 0 auto;

  width: 2.4rem;
  height: 2.4rem;

  border: 1px solid #e2e8f0;
  border-radius: 999px;

  background: #f8fafc;
  color: #0f172a;

  font-size: 1.5rem;
  line-height: 1;

  cursor: pointer;
}

.cookie-modal__lead {
  margin-bottom: 1.25rem;

  color: #64748b;
  line-height: 1.7;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;

  padding: 1rem 0;

  border-top: 1px solid #e2e8f0;
}

.cookie-option strong {
  display: block;

  margin-bottom: .25rem;

  color: #0f172a;
}

.cookie-option p {
  margin: 0;

  color: #64748b;

  font-size: .92rem;
  line-height: 1.6;
}

.cookie-option input[type="checkbox"] {
  width: 1.35rem;
  height: 1.35rem;

  accent-color: #14b8a6;
}

.cookie-modal__actions {
  margin-top: 1rem;
  padding-top: 1rem;

  border-top: 1px solid #e2e8f0;
}

/* tablet */

@media (min-width: 768px) {
  .cookie-banner {
    left: max(1rem, env(safe-area-inset-left, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner__content {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;

    padding: 1.1rem;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cookie-banner__actions .btn,
  .cookie-modal__actions .btn {
    width: auto;
  }

  .cookie-modal {
    padding:
      max(1rem, env(safe-area-inset-top, 0px))
      max(1rem, env(safe-area-inset-right, 0px))
      max(1rem, env(safe-area-inset-bottom, 0px))
      max(1rem, env(safe-area-inset-left, 0px));
  }

  .cookie-modal__panel {
    padding: 2rem;
    border-radius: 28px;
    max-height: min(760px, calc(100vh - 2rem));
  }
}

/* =========================
   BACK TO TOP
   alap = mobil
========================= */

.back-to-top {
  position: fixed;

  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(3rem, env(safe-area-inset-bottom, 0px));

  width: 2.75rem;
  height: 2.75rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;

  background: rgba(15, 23, 42, .94);
  color: #fff;

  font-size: 1rem;
  font-weight: 700;

  cursor: pointer;

  backdrop-filter: blur(10px);

  box-shadow:
    0 18px 38px rgba(15, 23, 42, .22),
    0 4px 12px rgba(15, 23, 42, .12);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease,
    background .25s ease,
    box-shadow .25s ease;

  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.back-to-top:hover {
  background: #0d9488;

  transform: translateY(-3px);

  box-shadow:
    0 22px 44px rgba(13, 148, 136, .28),
    0 8px 18px rgba(13, 148, 136, .18);
}

@media (max-width: 575.98px) {
  .back-to-top {
    right: max(.75rem, env(safe-area-inset-right, 0px));
    bottom: max(.75rem, env(safe-area-inset-bottom, 0px));

    width: 2.45rem;
    height: 2.45rem;

    font-size: .95rem;
  }
}

/* tablet */

@media (min-width: 768px) {
  .back-to-top {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));

    width: 2.9rem;
    height: 2.9rem;

    font-size: 1.02rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .back-to-top {
    right: max(1.1rem, env(safe-area-inset-right, 0px));
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));

    width: 3rem;
    height: 3rem;

    font-size: 1.05rem;
  }
}


/*  Szalon-oldal */

.landing-header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 1000;
  background: rgba(255, 249, 246, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.landing-header .navbar {
  min-height: 64px;
  padding:
    .65rem max(.75rem, env(safe-area-inset-right, 0px))
    .65rem max(.75rem, env(safe-area-inset-left, 0px));
}

.landing-header .navbar-brand {
  color: var(--color-ink);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.landing-contact {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.landing-contact a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-target);
  color: var(--color-ink);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: opacity .2s ease;
}

.landing-contact a:hover {
  opacity: .7;
}

.salon-hero {
  padding: clamp(3.4rem, 11vw, 5rem) 0 clamp(3rem, 10vw, 4.5rem);
  background:
    linear-gradient(180deg, var(--color-warm) 0%, #fff 100%);
}

.salon-hero-grid {
  display: grid;
  gap: clamp(1.25rem, 5vw, 2rem);
  align-items: center;
}

.salon-hero h1 {
  max-width: 850px;
  font-size: 2rem;
  line-height: 1.08;
  text-wrap: balance;
}

.salon-trust-list {
  display: grid;
  gap: .6rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: #475569;
  font-weight: 700;
}

.salon-trust-list li::before {
  content: "✓";
  flex: 0 0 auto;
  margin-right: .5rem;
  color: var(--color-rose);
  font-weight: 900;
}

.salon-hero .btn-primary,
.salon-price-card .btn-primary {
  background: var(--color-rose);
  box-shadow: 0 14px 34px rgba(184, 92, 122, .16);
}

.salon-hero .btn-outline-dark {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(184, 92, 122, .20);
}

.salon-hero-card,
.salon-card,
.salon-price-card {
  border: 1px solid rgba(231, 218, 222, .9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .07);
}

.salon-hero-card {
  overflow: hidden;
  padding: clamp(1.15rem, 5vw, 2.4rem);
}

.salon-preview {
  padding: 0;
}

.salon-preview__content {
  padding: clamp(1.15rem, 5vw, 1.6rem);
}

.salon-mockup {
  display: grid;
  gap: .8rem;
  margin-bottom: 1.25rem;
  padding: .85rem;
  border: 1px solid rgba(231, 218, 222, .9);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #fff, var(--color-warm));
}

.salon-mockup__bar,
.salon-mockup__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.salon-mockup__bar {
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(231, 218, 222, .9);
}

.salon-mockup__bar span,
.salon-mockup__cta strong {
  color: var(--color-ink);
  font-weight: 900;
}

.salon-mockup__bar small,
.salon-mockup__cta span,
.salon-mockup__eyebrow,
.salon-mockup__grid span {
  color: var(--color-muted);
  font-size: .78rem;
  font-weight: 800;
}

.salon-mockup__bar small,
.salon-mockup__cta strong {
  white-space: nowrap;
}

.salon-mockup__hero {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border-radius: 18px;
  background: #fff4f6;
}

.salon-mockup__hero strong {
  max-width: 18rem;
  color: var(--color-ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.salon-mockup__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.salon-mockup__grid div {
  display: grid;
  gap: .2rem;
  min-height: 82px;
  padding: .75rem;
  border: 1px solid rgba(231, 218, 222, .9);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
}

.salon-mockup__grid strong {
  color: var(--color-ink);
  font-size: .95rem;
  line-height: 1.25;
}

.salon-mockup__cta {
  min-height: 48px;
  padding: .7rem .85rem;
  border-radius: 999px;
  background: var(--color-rose);
}

.salon-mockup__cta span,
.salon-mockup__cta strong {
  color: #fff;
}

.salon-card-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-rose);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  line-height: 1.35;
}

.salon-hero-card h2 {
  font-size: 1.35rem;
  line-height: 1.16;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.salon-hero-card p,
.salon-card p,
.salon-list p,
.salon-offer-box p,
.salon-price-card p {
  color: var(--color-muted);
}

.salon-problems {
  background: #fff;
}

.salon-faq {
  background: #fff;
}

.salon-card-grid {
  display: grid;
  gap: 1rem;
}

.salon-card {
  padding: clamp(1.1rem, 4vw, 1.35rem);
}

.salon-problems .salon-card {
  border: 0;
  border-top: 1px solid rgba(244, 194, 211, .8);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.salon-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-rose);
  font-weight: 900;
}

.salon-card h3 {
  margin-bottom: .65rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.salon-services {
  background: var(--color-warm);
}

.salon-list {
  display: grid;
  gap: 1rem;
}

.salon-list article {
  padding: clamp(1.1rem, 4vw, 1.25rem);
  border: 1px solid rgba(231, 218, 222, .9);
  border-left: 4px solid var(--color-rose);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .04);
}

.salon-offer {
  background: #fff;
}

.salon-offer-box {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.15rem, 5vw, 3rem);
  border: 1px solid rgba(231, 218, 222, .9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, #fff, var(--color-warm));
}

.salon-problems .trust-box {
  border-color: rgba(231, 218, 222, .9);
  background:
    linear-gradient(180deg, #fff, var(--color-warm)),
    #fff;
  box-shadow: none;
}

.salon-problems .trust-highlight {
  border-color: rgba(231, 218, 222, .9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.salon-price-card {
  padding: clamp(1.15rem, 4vw, 1.35rem);
}

.salon-price-card span {
  display: block;
  margin-bottom: .5rem;
  color: var(--color-muted);
  font-weight: 800;
}

.salon-price-card strong {
  display: block;
  margin-bottom: .75rem;
  font-size: 1.35rem;
  color: var(--color-ink);
  line-height: 1.15;
}

.salon-price-list {
  display: grid;
  gap: .45rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
  color: #475569;
  font-size: .95rem;
  font-weight: 700;
}

.salon-price-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.salon-price-list li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--color-rose);
  font-weight: 900;
}

.salon-next-step {
  background: var(--color-warm);
}

.salon-next-grid {
  display: grid;
  gap: 1rem;
}

.salon-next-grid article {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(231, 218, 222, .9);
}

.salon-next-grid span {
  display: inline-flex;
  margin-bottom: .7rem;
  color: var(--color-rose);
  font-weight: 900;
  letter-spacing: .08em;
}

.salon-next-grid h3 {
  margin-bottom: .55rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.salon-next-grid p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.salon-message-help {
  margin-top: 2rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(231, 218, 222, .9);
}

.salon-message-help strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--color-ink);
  font-size: 1.05rem;
}

.salon-message-help p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.salon-accordion .accordion-item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: .85rem;
}

.salon-accordion .accordion-button {
  min-height: 52px;
  padding: 1rem 1.15rem;
  color: var(--color-ink);
  font-weight: 900;
  line-height: 1.35;
}

@media (max-width: 380px) {
  .landing-header .container {
    padding-inline: .65rem;
  }

  .landing-header .navbar-brand {
    font-size: .82rem;
    letter-spacing: .06em;
  }

  .hero-actions .btn {
    padding-inline: .95rem;
  }
}

@media (max-width: 767.98px) {
  .landing-header .container {
    flex-direction: column;
    gap: .25rem;
    align-items: flex-start !important;
  }

  .landing-contact {
    width: 100%;
  }

  .landing-contact a {
    font-size: .9rem;
  }

  .landing-contact a[href^="mailto:"] {
    display: none;
  }
}

@media (min-width: 768px) {
  .landing-header .navbar {
    min-height: 72px;
  }

  .salon-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .salon-problems .salon-card {
    border-top: 0;
    border-left: 1px solid rgba(231, 218, 222, .9);
    padding-left: 1.25rem;
  }

  .salon-problems .salon-card:first-child {
    border-left: 0;
    padding-left: 0;
  }

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

  .salon-next-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .salon-next-grid article {
    border-top: 0;
    border-left: 1px solid rgba(231, 218, 222, .9);
    padding: 0 0 0 1.25rem;
  }

  .salon-next-grid article:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .salon-message-help {
    margin-top: 2.5rem;
  }

  .salon-hero h1 {
    font-size: 3.1rem;
  }

  .salon-mockup {
    padding: 1rem;
  }
}

@media (min-width: 992px) {
  .salon-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  }

  .salon-offer-box {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
    align-items: center;
  }

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

@media (orientation: landscape) and (max-height: 520px) and (max-width: 940px) {
  .landing-header .navbar {
    min-height: 56px;
    padding-block: .4rem;
  }

  .landing-header .container {
    flex-direction: row;
    gap: .75rem;
    align-items: center !important;
  }

  .landing-contact {
    width: auto;
  }

  .landing-contact a[href^="mailto:"] {
    display: none;
  }

  .salon-hero {
    padding: 2rem 0 2.4rem;
  }

  .salon-hero h1 {
    font-size: 2rem;
  }

  .salon-mockup {
    gap: .55rem;
  }

  .salon-mockup__hero {
    padding: .8rem;
  }

  .salon-mockup__grid div {
    min-height: 68px;
  }
}



/* PRÉMIUM SÖTÉT BLOKK */
.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(20, 184, 166, .18), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, .16), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #111827 100%);
  color: #fff;
  margin: 0 auto;
}
.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: rgba(226, 232, 240, .82);
}

@media (max-width: 575.98px) {
  .proof-section.section-dark {
    background:
      radial-gradient(circle at 86% -22%, rgba(239, 68, 168, .08), transparent 17rem),
      radial-gradient(circle at 50% -34%, rgba(0, 213, 255, .12), transparent 16rem),
      linear-gradient(180deg, #050710 0%, #030607 44%, #030607 100%);
  }

  .proof-section.section-dark::before {
    background: none;
    opacity: 0;
  }

  .proof-section.section-dark .proof-card {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .proof-section.section-dark .proof-card::after {
    content: none;
  }

  .proof-section.section-dark .proof-card span {
    color: rgba(226, 232, 240, .68);
  }
}
