/* ===================== Design tokens ===================== */
:root {
  --color-bg: #0a0a0f;
  --color-bg-alt: #11111a;
  --color-surface: #16161f;
  --color-surface-hover: #1c1c28;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.16);

  --color-text: #ffffff;
  --color-text-muted: #b8b8c8;
  --color-text-dim: #8a8a9a;

  --color-blue-dark: #1e40af;
  --color-blue: #2563eb;
  --color-cyan: #06b6d4;

  --gradient-brand: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #06b6d4 100%);

  --font-base: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 18px 48px rgba(37, 99, 235, 0.28);
  --shadow-cta: 0 10px 28px rgba(37, 99, 235, 0.45);

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===================== Reset / base ===================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.15; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===================== Focus visibility (a11y) ===================== */
:focus-visible {
  outline: 3px solid var(--color-cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  text-align: center;
  font-family: var(--font-base);
}
.btn--lg { padding: 16px 32px; font-size: 1.075rem; }

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn--ghost:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.06);
}

/* ===================== Site header (subpages) ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .nav {
  position: static;
  padding: 16px 24px;
}

body.has-sticky-nav { padding-top: 68px; }

/* ===================== Nav ===================== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px;
}
.nav__brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__brand svg {
  display: block;
  flex-shrink: 0;
}
.nav__brand-name span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-left: 4px;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.nav__links a { transition: color 0.2s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: #fff; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__lang {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-muted);
  font-family: var(--font-base);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  line-height: 1;
}
.nav__lang:hover {
  color: var(--color-cyan);
  border-color: var(--color-cyan);
}

/* ===================== Hero (homepage) ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: -25%;
  z-index: -2;
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(30, 64, 175, 0.45), transparent 70%),
    radial-gradient(45% 55% at 80% 25%, rgba(37, 99, 235, 0.40), transparent 70%),
    radial-gradient(45% 50% at 55% 80%, rgba(6, 182, 212, 0.32), transparent 70%);
  filter: blur(20px);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 60% at 50% 0%, rgba(37, 99, 235, 0.12), transparent 70%);
  pointer-events: none;
}
@keyframes heroDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.04); }
}

.hero__content { position: relative; max-width: 880px; }

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 7px 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 42px;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--color-border-strong);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--color-cyan);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

/* ===================== Subpage hero ===================== */
.subpage-hero {
  position: relative;
  padding: 96px 24px 76px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.subpage-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 65% at 25% 0%, rgba(30, 64, 175, 0.42), transparent 70%),
    radial-gradient(40% 55% at 80% 30%, rgba(6, 182, 212, 0.2), transparent 70%);
}
.subpage-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-cyan);
  margin-bottom: 18px;
}
.subpage-hero__title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 18px;
  line-height: 1.1;
}
.subpage-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 34px;
  line-height: 1.68;
}
.subpage-hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== Sections ===================== */
.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--color-bg-alt); }

.section__head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 14px;
  display: block;
}
.section__title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section__lead {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 1.075rem;
}

/* ===================== About / Trust ===================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__eyebrow {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 16px;
}

.about__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  line-height: 1.18;
}

.about__bio {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 32px;
}

.about__trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease);
}
.trust-item:hover { border-color: var(--color-border-strong); }

.trust-item__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
}
.trust-item__icon svg { width: 20px; height: 20px; }
.trust-item__title { font-size: 0.97rem; font-weight: 700; margin-bottom: 3px; }
.trust-item__desc { font-size: 0.9rem; color: var(--color-text-muted); }

/* Founder card */
.founder-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(65% 60% at 50% 0%, rgba(37, 99, 235, 0.14), transparent 70%);
  pointer-events: none;
}
.founder-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 22px;
  position: relative;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.16);
}
.founder-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.founder-card__role {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 26px;
  line-height: 1.5;
}
.founder-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.tag-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-muted);
}
.founder-card__quote {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

/* ===================== Service cards (homepage) ===================== */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37, 99, 235, 0.4);
}

.svc-card__badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 18px;
  align-self: flex-start;
}

.svc-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}
.svc-card__icon svg { width: 27px; height: 27px; }

.svc-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.28;
}

.svc-card__desc {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.svc-card__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.svc-card__features li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: 18px;
  position: relative;
}
.svc-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
}

.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  padding: 9px 16px;
  align-self: flex-start;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.svc-card__cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s var(--ease);
}
.svc-card:hover .svc-card__cta {
  color: var(--color-cyan);
  border-color: rgba(6, 182, 212, 0.5);
}
.svc-card:hover .svc-card__cta svg {
  transform: translateX(3px);
}

/* Featured service card */
.svc-card--featured {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18), 0 10px 40px rgba(37, 99, 235, 0.18);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.07) 0%, var(--color-surface) 50%);
}
.svc-card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5), var(--shadow-hover);
  border-color: rgba(37, 99, 235, 0.6);
}
.svc-card--featured .svc-card__badge {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.45);
  color: #93c5fd;
}

/* ===================== Founder Bio Section ===================== */
.about-founder {
  background: var(--color-bg-alt);
}
.about-founder__card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-founder__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 65% at 15% 0%, rgba(37, 99, 235, 0.12), transparent 70%);
  pointer-events: none;
}
.about-founder__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.12), 0 20px 48px rgba(37, 99, 235, 0.28);
  letter-spacing: 0.02em;
}
.about-founder__text { position: relative; }
.about-founder__name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}
.about-founder__role {
  font-size: 0.97rem;
  color: var(--color-cyan);
  font-weight: 600;
  margin-bottom: 18px;
}
.about-founder__bio {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.76;
  margin-bottom: 22px;
}
.about-founder__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.about-founder__points li {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}
.about-founder__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
}
@media (max-width: 768px) {
  .about-founder__card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 28px;
    text-align: center;
  }
  .about-founder__points { text-align: left; }
}

/* ===================== Home CTA ===================== */
.home-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(37, 99, 235, 0.18), transparent 70%);
  pointer-events: none;
}
.home-cta__inner { position: relative; max-width: 700px; margin: 0 auto; }
.home-cta__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.12;
}
.home-cta__desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.home-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== Two-column layout ===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col--reverse .two-col__visual { order: -1; }

.two-col__title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.two-col__lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--color-text-muted);
}
.feature-list li .fl-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(6, 182, 212, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--color-cyan);
  font-weight: 700;
  line-height: 1;
}

/* ===================== Steps (Hogyan működik) ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
}
.step__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.14);
  color: var(--color-cyan);
  margin-bottom: 20px;
}
.step__icon svg { width: 28px; height: 28px; }
.step__num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dim);
}
.step__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.step__text { color: var(--color-text-muted); }

/* Steps — 4 col variant */
.steps--4 { grid-template-columns: repeat(4, 1fr); }

/* ===================== Cards (Miért mi) ===================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-strong);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.card__text { color: var(--color-text-muted); font-size: 0.97rem; }

/* ===================== Stats ===================== */
.stats { background: var(--color-bg); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.stat {
  padding: 40px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(30, 64, 175, 0.10), rgba(6, 182, 212, 0.04));
}
.stat__num {
  display: block;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat__label { display: block; margin-top: 10px; color: var(--color-text-muted); font-size: 1rem; }

/* ===================== Price highlight ===================== */
.price-highlight {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,64,175,0.12), rgba(6,182,212,0.06));
  pointer-events: none;
}
.price-highlight__label {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.price-highlight__amount {
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.price-highlight__period { font-size: 1rem; color: var(--color-text-muted); margin-bottom: 28px; }
.price-highlight__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-highlight__features li {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  padding-left: 22px;
  position: relative;
}
.price-highlight__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
}

/* ===================== Pricing (simple) ===================== */
.pricing-simple {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pricing-simple__text { font-size: 1.15rem; color: var(--color-text-muted); line-height: 1.7; }
.pricing-simple__text strong { color: var(--color-text); }
.pricing-simple__terms { color: var(--color-text-muted); font-size: 1rem; }
.pricing-simple__terms strong { color: var(--color-text); }
.pricing-simple__guarantee { font-size: 0.95rem; font-weight: 600; color: var(--color-cyan); margin-top: 4px; }

/* ===================== Calendly CTA block ===================== */
.calendly-cta {
  text-align: center;
  padding: 0;
}
.calendly-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.calendly-cta__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.72;
}

/* ===================== FAQ accordion ===================== */
.faq {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.faq__item:hover { border-color: var(--color-border-strong); }
.faq__item.is-open { border-color: rgba(37, 99, 235, 0.4); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 14px;
  transition: color 0.2s var(--ease);
}
.faq__question:hover,
.faq__item.is-open .faq__question { color: var(--color-cyan); }

.faq__chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s var(--ease), transform 0.3s var(--ease);
}
.faq__chevron::before,
.faq__chevron::after {
  content: "";
  position: absolute;
  background: var(--color-cyan);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}
.faq__chevron::before { width: 9px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__chevron::after { width: 1.5px; height: 9px; transform: translate(-50%, -50%); transition: transform 0.3s var(--ease), opacity 0.3s; }
.faq__item.is-open .faq__chevron { border-color: var(--color-blue); transform: rotate(135deg); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease); }
.faq__answer-inner { padding: 0 24px 20px; }
.faq__answer p { color: var(--color-text-muted); line-height: 1.72; margin: 0; }
.faq__item.is-open .faq__answer { max-height: 400px; }

/* ===================== Contact ===================== */
.contact { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(50% 70% at 50% 50%, rgba(37, 99, 235, 0.15), transparent 70%);
}
.contact__inner { max-width: 640px; margin: 0 auto; }
.contact__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.contact__bio {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.contact__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.contact__bio-text { font-size: 0.97rem; color: var(--color-text-muted); line-height: 1.55; }
.contact__bio-text strong { color: var(--color-text); }

.contact-form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.contact-form__row { display: flex; flex-direction: column; gap: 6px; position: relative; }
.contact-form__label { font-size: 0.9rem; font-weight: 600; color: var(--color-text-muted); }
.contact-form__input {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 1rem;
  padding: 12px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.contact-form__input::placeholder { color: var(--color-text-dim); }
.contact-form__input:focus { outline: none; border-color: var(--color-blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2); }
.contact-form__textarea { resize: vertical; min-height: 100px; }
.contact-form__charcount { font-size: 0.8rem; color: var(--color-text-dim); text-align: right; }
.contact-form__submit { width: 100%; margin-top: 4px; }
.contact-form__success {
  margin-top: 8px;
  padding: 18px 24px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-cyan);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
}

/* ===================== Footer ===================== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand { font-weight: 700; font-size: 1.05rem; }
.footer__brand span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-left: 3px;
}
.footer__nav {
  display: flex;
  gap: 22px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}
.footer__nav a { transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: var(--color-cyan); }
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer__email { font-size: 0.9rem; color: var(--color-text-muted); transition: color 0.2s var(--ease); }
.footer__email:hover { color: var(--color-cyan); }
.footer__copy { font-size: 0.8rem; color: var(--color-text-dim); }

/* ===================== Scroll reveal ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .about__grid,
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: 1fr; }
  .two-col--reverse .two-col__visual { order: unset; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .section { padding: 72px 0; }
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.95rem; }
  .hero__subtitle { font-size: 1.05rem; }
  .steps, .cards, .stats__grid, .steps--4 { grid-template-columns: 1fr; }
  .contact__bio { flex-direction: column; text-align: center; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__right { align-items: flex-start; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 1.75rem; }
}

/* ===================== Reduced motion ===================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .faq__item.is-open .faq__answer { max-height: 1000px; }
}
