:root {
  --bg: #ffffff;
  --bg-soft: #f7fafe;
  --ink: #1d1d1f;
  --ink-soft: #515154;
  --ink-faint: #86868b;

  --light-blue: #c8e0f4;
  --sky-blue: #e8f3fc;
  --anchor-blue: #2563d9;
  --anchor-blue-hover: #1e4fbf;
  --soft-pink: #ffd5e0;
  --bright-guava: #ff7a9a;
  --clementine: #ffb547;
  --sunshine: #ffe066;

  --gold: #d4a574;
  --gold-soft: #e8d3a8;
  --gold-dark: #b8884d;
  --navy: #0e1d3d;

  --line: rgba(0,0,0,0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

.serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.02em; }
.italic { font-style: italic; }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  height: 64px;
  display: flex; align-items: center; justify-content: center;
}
nav .inner {
  width: 100%; max-width: 1180px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
nav .logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink);
}
nav .logo-img {
  height: 26px; width: auto;
  display: block;
  flex-shrink: 0;
}
nav .logo-tagline-wrap {
  display: flex; flex-direction: column;
  line-height: 1.05;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
nav .logo-badge {
  font-size: 10px; color: var(--anchor-blue);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 700;
}
nav .logo-tagline {
  font-size: 12px; color: var(--ink-soft);
  margin-top: 3px; font-weight: 400;
}
nav .menu { display: flex; gap: 28px; }
nav .menu a { color: var(--ink-soft); text-decoration: none; font-size: 13px; font-weight: 400; transition: color 0.2s; }
nav .menu a:hover { color: var(--anchor-blue); }
nav .cta-mini {
  background: var(--anchor-blue); color: white; padding: 8px 18px; border-radius: 980px;
  font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s;
}
nav .cta-mini:hover { background: var(--anchor-blue-hover); }
@media (max-width: 880px) { nav .menu { display: none; } }
@media (max-width: 720px) {
  nav .logo-tagline-wrap { display: none; }
}

/* === HERO === */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--sky-blue) 30%, var(--light-blue) 100%);
  color: var(--ink);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 80px; left: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--soft-pink) 0%, transparent 70%);
  filter: blur(40px); opacity: 0.7; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 100px; right: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, var(--sunshine) 0%, transparent 70%);
  filter: blur(50px); opacity: 0.5; pointer-events: none;
}
.hero-inner { max-width: 980px; margin: 0 auto; position: relative; z-index: 2; }

.hero-pains {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  margin-bottom: 36px;
  animation: fadeUp 1s 0.2s ease-out both;
}
.hero-pains .chip {
  position: relative;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  padding: 4px 8px;
  display: inline-block;
}
.hero-pains .chip::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: 50%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bright-guava) 0%, var(--anchor-blue) 100%);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  animation: strikeIn 0.9s 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  box-shadow: 0 1px 8px rgba(255, 122, 154, 0.35);
}
.hero-pains .chip:nth-child(2)::after {
  background: linear-gradient(90deg, var(--anchor-blue) 0%, var(--clementine) 100%);
  animation-delay: 0.8s;
}
.hero-pains .chip:nth-child(3)::after {
  background: linear-gradient(90deg, var(--clementine) 0%, var(--bright-guava) 100%);
  animation-delay: 1.0s;
}
@keyframes strikeIn {
  from { transform: translateY(-50%) scaleX(0); }
  to   { transform: translateY(-50%) scaleX(1); }
}

.hero-confirmation {
  display: inline-block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--anchor-blue);
  margin-bottom: 24px;
  line-height: 1.1;
  animation: fadeUp 1s 0.4s ease-out both;
}

.hero-logo {
  margin-bottom: 56px;
}
.hero-logo img {
  height: 56px; width: auto;
  display: inline-block;
  filter: brightness(0);
}
@media (max-width: 540px) {
  .hero-logo { margin-bottom: 40px; }
  .hero-logo img { height: 40px; }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 920px;
  margin-left: auto; margin-right: auto;
  animation: fadeUp 0.9s 0.1s ease-out both;
}
.hero h1 strong { font-weight: 700; color: var(--ink); }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--anchor-blue) 0%, var(--bright-guava) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400;
}
.hero .subtitle {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.55;
  animation: fadeUp 1s 0.2s ease-out both;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1.1s 0.3s ease-out both; }

.btn-primary {
  background: var(--anchor-blue); color: white;
  padding: 14px 28px; border-radius: 980px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 217, 0.25);
}
.btn-primary:hover { background: var(--anchor-blue-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37, 99, 217, 0.35); }
.btn-secondary {
  color: var(--anchor-blue); padding: 14px 28px; border-radius: 980px;
  background: white; border: 1px solid rgba(37, 99, 217, 0.25);
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--anchor-blue); background: var(--sky-blue); }

.hero-trust {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(37, 99, 217, 0.12);
  font-size: 14px; color: var(--ink-soft);
  animation: fadeUp 1.1s 0.4s ease-out both;
}
.hero-trust strong { color: var(--ink); font-weight: 600; }
.hero-trust .badge {
  display: inline-block; vertical-align: middle;
  background: white;
  color: var(--anchor-blue);
  padding: 4px 12px; border-radius: 980px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0 4px;
  border: 1px solid rgba(37, 99, 217, 0.2);
  box-shadow: 0 2px 8px rgba(37, 99, 217, 0.08);
}

.hero-compliance {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  animation: fadeUp 1.2s 0.5s ease-out both;
}
.hero-compliance .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: white;
  border: 1px solid rgba(37, 99, 217, 0.15);
  border-radius: 980px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* === SECTIONS === */
section { padding: 100px 24px; }
.container { max-width: 1180px; margin: 0 auto; }
.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 600; margin-bottom: 24px;
}
.section-lead {
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--ink-soft); max-width: 760px; line-height: 1.5; font-weight: 400;
}
.eyebrow-light {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--anchor-blue); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}

/* === Reference logos === */
.references { background: white; padding: 60px 24px; }
.references h3 {
  text-align: center;
  font-size: 13px; font-weight: 600; color: var(--ink-faint);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 32px;
}
.ref-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 36px;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
.ref-grid .ref {
  display: flex; align-items: center; justify-content: center;
  height: 80px;
  filter: grayscale(1); opacity: 0.65;
  transition: opacity 0.3s, filter 0.3s;
}
.ref-grid .ref img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.ref-grid .ref:hover { opacity: 1; filter: grayscale(0); }
@media (max-width: 720px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ref-grid .ref { height: 60px; }
}

/* === Toborzási kampányaink === */
.campaigns { background: var(--bg-soft); }
.campaigns .container { text-align: center; }
.campaigns .grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.campaigns .item {
  padding: 40px 32px; background: white;
  border-radius: var(--radius-md); border: 1px solid var(--line);
  text-align: left;
  transition: transform 0.3s;
}
.campaigns .item:hover { transform: translateY(-4px); }
.campaigns .item .arrow {
  font-family: 'Instrument Serif', serif;
  font-size: 48px; line-height: 1;
  margin-bottom: 16px;
}
.campaigns .item:nth-child(1) .arrow { color: var(--anchor-blue); }
.campaigns .item:nth-child(2) .arrow { color: var(--bright-guava); }
.campaigns .item:nth-child(3) .arrow { color: var(--clementine); }
.campaigns .item h4 {
  font-size: 16px; font-weight: 600; letter-spacing: 0.02em;
  text-transform: uppercase; margin-bottom: 16px;
}
.campaigns .item p { color: var(--ink-soft); font-size: 16px; line-height: 1.55; }
@media (max-width: 720px) { .campaigns .grid { grid-template-columns: 1fr; } }

/* === Stat numbers === */
.stats { background: white; padding: 80px 24px; }
.stats .container {
  max-width: 1000px; text-align: center;
}
.stats h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}
.stats h3 .accent {
  background: linear-gradient(135deg, var(--anchor-blue) 0%, var(--bright-guava) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400;
}
.stats .lead { color: var(--ink-soft); font-size: 16px; max-width: 700px; margin: 0 auto 48px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.stats-item {
  padding: 36px 24px; background: var(--bg-soft);
  border-radius: var(--radius-md); border: 1px solid var(--line);
}
.stats-item .num {
  font-family: 'Instrument Serif', serif;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 12px;
  color: var(--anchor-blue);
}
.stats-item:nth-child(2) .num { color: var(--bright-guava); }
.stats-item:nth-child(3) .num { color: var(--clementine); }
.stats-item .label {
  font-size: 14px; color: var(--ink-soft);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr; } }

/* === Founder Manifesto === */
.team { background: var(--bg-soft); padding-top: 100px; padding-bottom: 100px; }
.team .container {
  max-width: 1100px;
  margin: 0 auto;
}
.founder-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--anchor-blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 48px;
  text-align: center;
}
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo-wrap { max-width: 280px; margin: 0 auto; }
}
.founder-photo-wrap {
  position: relative;
  align-self: start;
}
.founder-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--soft-pink) 100%);
  box-shadow: 0 24px 60px rgba(14, 29, 61, 0.18);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 2;
}
.founder-meta {
  margin-top: 22px;
  text-align: center;
}
.founder-meta .name {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.founder-meta .role {
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}
.founder-symbol {
  width: 64px; height: 38px;
  display: block;
  margin: 18px auto 0;
}
.founder-symbol circle {
  fill: none;
  stroke: var(--anchor-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  animation: drawSymbol 4s ease-in-out infinite;
  transform-origin: center;
}
.founder-symbol circle:nth-child(2) {
  stroke: var(--bright-guava);
  animation-delay: 0.6s;
}

.founder-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  position: relative;
  padding-left: 22px;
}
.founder-quote::before {
  content: '"';
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 88px;
  line-height: 0.8;
  color: var(--anchor-blue);
  opacity: 0.18;
  position: absolute;
  left: -8px;
  top: -8px;
  pointer-events: none;
}
.founder-quote::after {
  content: '"';
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 88px;
  line-height: 0.4;
  color: var(--bright-guava);
  opacity: 0.18;
  position: absolute;
  right: 4px;
  bottom: -28px;
  pointer-events: none;
}
.founder-quote p + p {
  margin-top: 18px;
}
.founder-quote .accent {
  background: linear-gradient(135deg, var(--anchor-blue) 0%, var(--bright-guava) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
}
.founder-quote strong {
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}
.founder-quote .bold-emphasis {
  font-weight: 600;
  color: var(--ink);
  font-style: normal;
}

/* === 3 érv === */
.three-args { background: white; }
.three-args .grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.three-args .arg {
  padding: 40px 36px;
  background: linear-gradient(180deg, white 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.three-args .arg .number {
  font-family: 'Instrument Serif', serif;
  font-size: 72px; line-height: 0.9;
  margin-bottom: 20px;
}
.three-args .arg:nth-child(1) .number { color: var(--anchor-blue); }
.three-args .arg:nth-child(2) .number { color: var(--bright-guava); }
.three-args .arg:nth-child(3) .number { color: var(--clementine); }
.three-args .arg h4 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em; margin-bottom: 14px;
}
.three-args .arg p {
  color: var(--ink-soft); font-size: 16px; line-height: 1.55;
}
@media (max-width: 900px) { .three-args .grid { grid-template-columns: 1fr; } }

/* === Hogyan dolgozunk - Workflow folyamatábra === */
.workflow { background: var(--bg-soft); position: relative; overflow: hidden; }
.workflow::before {
  content: ''; position: absolute; top: 100px; left: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--soft-pink) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.4; pointer-events: none;
}
.workflow::after {
  content: ''; position: absolute; bottom: 60px; right: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--sunshine) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.4; pointer-events: none;
}
.workflow .container { position: relative; z-index: 2; text-align: center; }
.workflow h2 { text-align: center; margin-bottom: 80px; }

.flow-wrapper {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Háttér vonal */
.flow-line {
  position: absolute;
  top: 48px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--light-blue) 0%, var(--soft-pink) 25%, var(--sunshine) 50%, var(--soft-pink) 75%, var(--light-blue) 100%);
  opacity: 0.4;
  z-index: 1;
}
/* Animált fill vonal */
.flow-line-fill {
  position: absolute;
  top: 48px;
  left: 10%;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--anchor-blue) 0%, var(--bright-guava) 50%, var(--clementine) 100%);
  z-index: 2;
  transition: width 1.8s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 0 8px rgba(37, 99, 217, 0.3);
}
.flow-wrapper.in-view .flow-line-fill { width: 80%; }

.flow-step {
  position: relative;
  z-index: 3;
  padding: 0 8px;
  text-align: center;
}

.flow-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  cursor: default;
}
.flow-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.2;
  transition: opacity 0.3s, inset 0.4s;
}
.flow-step:hover .flow-circle {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}
.flow-step:hover .flow-circle::before {
  inset: -10px; opacity: 0.4;
}

.flow-c1 { background: linear-gradient(135deg, #5b94ec 0%, var(--anchor-blue) 100%); color: var(--anchor-blue); }
.flow-c2 { background: linear-gradient(135deg, #ff9eb5 0%, var(--bright-guava) 100%); color: var(--bright-guava); }
.flow-c3 { background: linear-gradient(135deg, #ffc977 0%, var(--clementine) 100%); color: var(--clementine); }
.flow-c4 { background: linear-gradient(135deg, #ff9eb5 0%, var(--bright-guava) 100%); color: var(--bright-guava); }
.flow-c5 { background: linear-gradient(135deg, #5b94ec 0%, var(--anchor-blue) 100%); color: var(--anchor-blue); }

.flow-num {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.flow-step h4 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.05;
}

.flow-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .flow-wrapper { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .flow-line, .flow-line-fill { display: none; }
}
@media (max-width: 540px) {
  .flow-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

/* === Küldetésünk szakasz === */
.mission {
  padding: 120px 24px 80px;
  background: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.mission::before {
  content: ''; position: absolute; top: -50px; left: 50%;
  width: 500px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--sky-blue) 0%, transparent 65%);
  filter: blur(80px); opacity: 0.4;
  pointer-events: none;
}
.mission .container {
  max-width: 880px; margin: 0 auto;
  position: relative; z-index: 2;
}
.mission .symbol {
  width: 80px; height: 48px;
  margin: 0 auto 36px;
  display: block;
}
.mission .symbol circle {
  fill: none;
  stroke: var(--anchor-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  animation: drawSymbol 4s ease-in-out infinite;
  transform-origin: center;
}
.mission .symbol circle:nth-child(2) {
  stroke: var(--bright-guava);
  animation-delay: 0.6s;
}
@keyframes drawSymbol {
  0% { stroke-dashoffset: 126; opacity: 0.3; }
  35% { stroke-dashoffset: 0; opacity: 1; }
  65% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -126; opacity: 0.3; }
}
.mission-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--anchor-blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.mission-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.mission-quote .accent {
  background: linear-gradient(135deg, var(--anchor-blue) 0%, var(--bright-guava) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.mission-quote .dash {
  display: inline-block;
  margin: 0 2px;
  color: var(--ink-faint);
  font-style: normal;
}
.mission .divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.mission .divider .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--anchor-blue);
  opacity: 0.4;
}
.mission .divider .dot:nth-child(2) { background: var(--bright-guava); opacity: 0.6; }
.mission .divider .dot:nth-child(3) { background: var(--anchor-blue); opacity: 0.4; }

/* === Differentiation - Manifesto kártyák === */
.diff {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.diff::before {
  content: ''; position: absolute; top: 80px; left: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--sunshine) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.4; pointer-events: none;
}
.diff::after {
  content: ''; position: absolute; bottom: 60px; right: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--soft-pink) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.4; pointer-events: none;
}
.diff .container { position: relative; z-index: 2; }
.diff .head-center { text-align: center; margin-bottom: 56px; }
.diff .head-center .section-title { margin-bottom: 16px; }
.diff .head-center .lead-center {
  font-size: 17px; color: var(--ink-soft);
  max-width: 720px; margin: 0 auto;
  line-height: 1.55;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
/* Ha az utolsó kártya egyedül a sorban, középre */
.manifesto-card:last-child:nth-child(3n + 1) {
  grid-column: 2 / 3;
}
@media (max-width: 1024px) {
  .manifesto-grid { grid-template-columns: repeat(2, 1fr); }
}
.manifesto-card {
  background: white;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.manifesto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}
.manifesto-num {
  position: absolute;
  top: 32px; right: 36px;
  font-family: 'Instrument Serif', serif;
  font-size: 80px; font-weight: 400;
  font-style: italic;
  line-height: 0.8;
  color: rgba(37, 99, 217, 0.08);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.manifesto-card .opposite {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.005em;
  position: relative; z-index: 2;
  line-height: 1.5;
}
.manifesto-card .opposite-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-left: 6px;
  margin-right: 2px;
}
.manifesto-card .opposite strong {
  position: relative;
  display: inline;
  font-weight: 500;
  color: var(--ink-soft);
}
.manifesto-card .opposite strong::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: 52%;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bright-guava) 0%, var(--anchor-blue) 100%);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 1px 8px rgba(255, 122, 154, 0.3);
}
.manifesto-card.in .opposite strong::after {
  transform: translateY(-50%) scaleX(1);
}
.manifesto-card:nth-child(2).in .opposite strong::after {
  background: linear-gradient(90deg, var(--anchor-blue) 0%, var(--clementine) 100%);
  transition-delay: 0.55s;
}
.manifesto-card:nth-child(3).in .opposite strong::after {
  background: linear-gradient(90deg, var(--clementine) 0%, var(--bright-guava) 100%);
  transition-delay: 0.7s;
}
.manifesto-card h3 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.manifesto-card h3 .accent {
  background: linear-gradient(135deg, var(--anchor-blue) 0%, var(--bright-guava) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
@media (max-width: 720px) {
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-card { padding: 32px 28px; }
}

/* === Algoritmus / Érdeklődés / Márka === */
.three-values { background: var(--bg-soft); }
.three-values .grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.three-values .item {
  padding: 36px 32px; background: white;
  border-radius: var(--radius-md); border: 1px solid var(--line);
  text-align: center;
}
.three-values .item .icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
}
.three-values .item:nth-child(1) .icon { background: var(--sky-blue); }
.three-values .item:nth-child(2) .icon { background: var(--soft-pink); }
.three-values .item:nth-child(3) .icon { background: #fff3d4; }
.three-values .item h4 {
  font-size: 19px; font-weight: 600; letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.three-values .item p {
  color: var(--ink-soft); font-size: 15px; line-height: 1.55;
}
@media (max-width: 900px) { .three-values .grid { grid-template-columns: 1fr; } }

/* === 3 things highlighted === */
.highlights { background: white; }
.highlights .grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.highlights .item {
  text-align: center; padding: 24px;
}
.highlights .item .ico {
  margin: 0 auto 20px;
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--clementine);
  display: inline-block;
  text-shadow: 0 1px 3px rgba(255, 181, 71, 0.25);
}
.highlights .item h4 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.highlights .item p {
  color: var(--ink-soft); font-size: 16px; line-height: 1.55;
}
@media (max-width: 900px) { .highlights .grid { grid-template-columns: 1fr; gap: 28px; } }

/* === INDUSTRIES — magazin-kártyás === */
.industries {
  background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
  position: relative;
  overflow: hidden;
}
.industries-cta {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.industries-cta .eyebrow-light {
  display: block;
  margin-bottom: 16px;
}
.industries-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0;
}
.industries::before {
  content: ''; position: absolute; top: 80px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, var(--soft-pink) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.4; pointer-events: none;
}
.industries::after {
  content: ''; position: absolute; bottom: 60px; left: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--sunshine) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.3; pointer-events: none;
}
.industries .container { position: relative; z-index: 2; }
.industries .section-title { margin-bottom: 24px; }
.industries .lead-center {
  font-size: 17px; color: var(--ink-soft);
  max-width: 720px; margin: 0 auto 60px;
  line-height: 1.55;
  text-align: center;
}
.industries .head-center { text-align: center; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}
/* Ha az utolsó sor árva, eltolódik */
.industry-card:last-child:nth-child(4n + 1) {
  grid-column: 2 / 3;
}
@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .industry-grid { grid-template-columns: 1fr; }
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  border-color: transparent;
}
.industry-card .head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.industry-card .num {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}
.industry-card .label {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
}
.industry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.industry-card li {
  padding: 4px 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
}
.industry-card li::before {
  content: '·';
  font-weight: 700;
  flex-shrink: 0;
}

/* Színek */
.industry-card.ic1::before { background: var(--anchor-blue); }
.industry-card.ic1 .num { color: var(--anchor-blue); }

.industry-card.ic2::before { background: var(--bright-guava); }
.industry-card.ic2 .num { color: var(--bright-guava); }

.industry-card.ic3::before { background: var(--clementine); }
.industry-card.ic3 .num { color: var(--clementine); }

.industry-card.ic4::before { background: #2e7d32; }
.industry-card.ic4 .num { color: #2e7d32; }

.industry-card.ic5::before { background: #6b328c; }
.industry-card.ic5 .num { color: #6b328c; }

.industry-card.ic6::before { background: #0c6657; }
.industry-card.ic6 .num { color: #0c6657; }

.industry-card.ic7::before { background: #b85020; }
.industry-card.ic7 .num { color: #b85020; }

.industry-card.ic8::before { background: #1d4097; }
.industry-card.ic8 .num { color: #1d4097; }

.industry-card.ic9::before { background: #a4332f; }
.industry-card.ic9 .num { color: #a4332f; }

.industry-card.ic10::before { background: #587013; }
.industry-card.ic10 .num { color: #587013; }

.industry-card.ic11::before { background: #7a4f12; }
.industry-card.ic11 .num { color: #7a4f12; }

@media (max-width: 600px) {
  .industries-headline br { display: none; }
}

/* === Mid-page CTA blokkok === */
.mid-cta {
  padding: 80px 24px;
  background: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-cta.bg-soft { background: var(--bg-soft); }
.mid-cta.bg-blue { background: linear-gradient(135deg, var(--sky-blue) 0%, white 100%); }
.mid-cta.bg-pink { background: linear-gradient(135deg, white 0%, var(--soft-pink) 50%, white 100%); }
.mid-cta::before {
  content: ''; position: absolute; top: -60px; right: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, var(--sunshine) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.4; pointer-events: none;
}
.mid-cta .container { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.mid-cta h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ink);
}
.mid-cta h3 .accent {
  background: linear-gradient(135deg, var(--anchor-blue) 0%, var(--bright-guava) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}
.mid-cta p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
  line-height: 1.55;
}
.mid-cta .cta-row {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  align-items: flex-start;
}
.mid-cta .cta-group {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.mid-cta .cta-note {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.4;
  max-width: 240px;
  text-align: center;
}

/* === PRICING === */
.pricing { background: white; }
.pricing .container { max-width: 1200px; }
.pricing-head { text-align: center; margin-bottom: 60px; }
.pricing-head .section-lead { margin: 0 auto; }
.pricing-cta-line {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--anchor-blue);
  margin-top: 28px;
  line-height: 1.3;
}

.payment-info {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin: 32px auto 56px;
}
.payment-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 980px;
  font-size: 13px; color: var(--ink);
}
.payment-pill .icon { font-size: 16px; }
.payment-pill strong { color: var(--anchor-blue); }

.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.tier {
  padding: 36px 28px; background: white;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.tier:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(37,99,217,0.1); }

.tier.featured {
  background: linear-gradient(180deg, var(--sky-blue) 0%, white 100%);
  border-color: var(--anchor-blue);
  border-width: 2px;
}

.tier.smart {
  background: linear-gradient(180deg, #ffe6ee 0%, white 100%);
  border-color: var(--bright-guava);
  border-width: 2px;
}

.tier.vip {
  background: linear-gradient(165deg, #0e1d3d 0%, #1a2f5c 60%, #0a1530 100%);
  border-color: var(--gold);
  border-width: 2px;
  color: white;
  position: relative;
}
.tier.vip::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at top right, rgba(212, 165, 116, 0.35) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 0 var(--radius-md) 0 0;
}
.tier.vip::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at bottom left, rgba(37, 99, 217, 0.25) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 0 0 0 var(--radius-md);
}
.tier.vip > *:not(.tier-badge) { position: relative; z-index: 2; }
.tier.vip .name { color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.tier.vip .duration { color: rgba(255,255,255,0.55); }
.tier.vip .price { color: white; }
.tier.vip .price .currency { color: var(--gold); }
.tier.vip .vat { color: rgba(255,255,255,0.45); }
.tier.vip li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
}

.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 980px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: white; white-space: nowrap;
  z-index: 5;
}
.tier.featured .tier-badge { background: var(--anchor-blue); }
.tier.smart .tier-badge { background: var(--bright-guava); }
.tier.vip .tier-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(212, 165, 116, 0.35);
}

.tier .name {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1;
}
.tier.vip .name { color: var(--gold); }
.tier .duration {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.5;
}
.tier.vip .duration { color: rgba(255,255,255,0.7); }
.tier .price {
  margin: 28px 0 4px;
  font-size: 40px; font-weight: 600; letter-spacing: -0.03em; line-height: 1;
}
.tier .price .currency { font-size: 20px; vertical-align: top; margin-right: 4px; color: var(--ink-soft); }
.tier .vat { font-size: 12px; color: var(--ink-faint); margin-bottom: 24px; }
.tier ul { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.tier li {
  padding: 9px 0; font-size: 13.5px; line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.tier li:last-child { border-bottom: none; }
.tier li .check { color: var(--anchor-blue); flex-shrink: 0; font-weight: 600; }
.tier.vip li .check { color: var(--gold); }

.tier-buttons {
  display: flex; flex-direction: column; gap: 8px;
}
.tier-button-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-faint);
  line-height: 1.4;
  margin-top: 6px;
  padding: 0 4px;
}
.tier.vip .tier-button-note {
  color: rgba(255,255,255,0.45);
}

/* Részletes pipák — minden kártyán */
.pipa-rich {
  display: block !important;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.pipa-rich:last-child {
  border-bottom: none;
}
.tier.vip .pipa-rich {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.pipa-rich .check {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
  margin-top: 2px;
  font-size: 13px;
}
.pipa-rich .text {
  display: inline-block;
  width: calc(100% - 26px);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.tier.vip .pipa-rich .text {
  color: rgba(255, 255, 255, 0.78);
}
.pipa-rich strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--anchor-blue);
  font-size: 14px;
  letter-spacing: -0.005em;
}
.tier.smart .pipa-rich strong { color: var(--bright-guava); }
.tier.vip .pipa-rich strong { color: var(--gold); }

/* Value statement — minden kártyán */
.value-statement {
  font-family: 'Inter Tight', sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 16px 0 20px;
  margin: 0 0 8px;
  border-bottom: 1px solid var(--line);
}
.value-statement strong {
  color: var(--anchor-blue);
  font-weight: 600;
}
.tier.smart .value-statement strong { color: var(--bright-guava); }
.tier.vip .value-statement {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.1);
}
.tier.vip .value-statement strong { color: var(--gold); }

/* VIP kapacitás-elemek */
.capacity-badge {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 10px 14px;
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 8px;
  text-align: center;
}
.capacity-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212, 165, 116, 0.6);
  animation: pulseGold 2s ease-in-out infinite;
}
@keyframes pulseGold {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.capacity-badge .text {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.capacity-note {
  font-family: 'Inter Tight', sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-bottom: 16px;
  padding: 0 4px;
}
.tier-cta-primary, .tier-cta-secondary {
  display: block; text-align: center; padding: 11px;
  border-radius: 980px;
  font-size: 13px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.tier-cta-primary {
  background: var(--anchor-blue); color: white;
}
.tier-cta-primary:hover { background: var(--anchor-blue-hover); transform: translateY(-1px); }
.tier-cta-secondary {
  background: white; color: var(--anchor-blue);
  border: 1px solid rgba(37, 99, 217, 0.25);
}
.tier-cta-secondary:hover { background: var(--sky-blue); border-color: var(--anchor-blue); }
.tier.vip .tier-cta-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
}
.tier.vip .tier-cta-secondary {
  background: rgba(255,255,255,0.08); color: white;
  border-color: rgba(255,255,255,0.2);
}

@media (max-width: 1024px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tiers { grid-template-columns: 1fr; } }

/* === Testimonials Grid === */
.testimonials {
  background: linear-gradient(180deg, var(--light-blue) 0%, var(--sky-blue) 100%);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; top: 50%; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, var(--soft-pink) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.5; pointer-events: none;
}
.testimonials::after {
  content: ''; position: absolute; bottom: 50px; left: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--sunshine) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.4; pointer-events: none;
}
.testimonials .container { max-width: 1180px; position: relative; z-index: 2; }
.testimonials .label {
  text-align: center; margin-bottom: 56px;
}
.testimonials .label h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.testimonials .label h2 .accent {
  background: linear-gradient(135deg, var(--anchor-blue) 0%, var(--bright-guava) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400;
}

.test-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.test-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}
.test-card .stars {
  color: var(--clementine);
  font-size: 14px; letter-spacing: 2px;
  margin-bottom: 16px;
}
.test-card .quote {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  line-height: 1.45; letter-spacing: -0.01em;
  color: var(--ink);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}
.test-card .person {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.test-card .person-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--soft-pink) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--anchor-blue); font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.test-card .person-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.test-card .person-name {
  font-weight: 600; font-size: 14px;
}
.test-card .person-role {
  font-size: 12px; color: var(--ink-soft); margin-top: 2px;
  line-height: 1.4;
}
.test-card .person-company {
  font-weight: 600; color: var(--anchor-blue); font-size: 12px;
}
@media (max-width: 720px) {
  .test-grid { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq { background: white; }
.faq .container { max-width: 860px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; color: var(--anchor-blue);
  transition: transform 0.3s; font-weight: 300; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  margin-top: 16px; color: var(--ink-soft);
  font-size: 16px; line-height: 1.6;
}
.faq-item .answer p { margin-bottom: 12px; }
.faq-item .answer p:last-child { margin-bottom: 0; }
.faq-item .answer ul { margin: 12px 0 12px 20px; }
.faq-item .answer li { padding: 4px 0; }
.faq-item .answer strong { color: var(--ink); }

/* === Final CTA + Form === */
.final-cta {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--soft-pink) 50%, var(--sunshine) 100%);
  padding: 100px 24px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--light-blue) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.6; pointer-events: none;
}
.final-cta .container { position: relative; max-width: 720px; }
.final-cta-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1; letter-spacing: -0.025em;
  font-weight: 600; margin-bottom: 14px;
  text-align: center;
}
.final-cta .form-prelude {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--anchor-blue);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 .accent {
  background: linear-gradient(135deg, var(--anchor-blue) 0%, var(--bright-guava) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400;
}
.final-cta .form-lead {
  text-align: center; color: var(--ink-soft);
  margin-bottom: 24px; font-size: 15px;
}
.final-cta .form-instruction {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  padding: 14px 20px;
  background: rgba(37, 99, 217, 0.05);
  border-left: 3px solid var(--anchor-blue);
  border-radius: 0 8px 8px 0;
  text-align: left;
}
.final-cta form {
  display: flex; flex-direction: column; gap: 12px;
}
.final-cta input, .final-cta textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s;
}
.final-cta input:focus, .final-cta textarea:focus {
  outline: none;
  border-color: var(--anchor-blue);
  background: white;
}
.final-cta .checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-soft);
  margin: 8px 0;
}
.final-cta .checkbox-row input { margin-top: 3px; }
.final-cta .checkbox-row a { color: var(--anchor-blue); }
.final-cta .submit-btn {
  background: var(--anchor-blue); color: white;
  padding: 14px 28px; border-radius: 980px;
  font-size: 15px; font-weight: 500; border: none;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.final-cta .submit-btn:hover { background: var(--anchor-blue-hover); transform: translateY(-1px); }
@media (max-width: 540px) { .final-cta-card { padding: 32px 24px; } }

/* === Decision === */
.decision {
  background: var(--bg);
  text-align: center;
  padding: 100px 24px;
}
.decision .container { max-width: 960px; }
.decision .eyebrow-light { display: block; }
.decision h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; letter-spacing: -0.025em;
  margin-bottom: 24px; line-height: 1.15;
}
.decision p {
  font-size: 17px; color: var(--ink-soft);
  line-height: 1.55; margin-bottom: 16px;
}
.decision-trust {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.decision-trust-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--anchor-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-align: center;
}
.decision-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.decision-final-cta {
  margin-top: 48px;
  text-align: center;
}
@media (max-width: 720px) {
  .decision-trust-grid { grid-template-columns: 1fr; gap: 18px; }
}
.trust-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.trust-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  border-color: transparent;
}
.trust-pillar-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--soft-pink) 60%);
  font-size: 18px;
}
.trust-pillar-content {
  flex: 1;
  min-width: 0;
}
.trust-pillar-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.trust-pillar-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* === FOOTER === */
footer {
  background: var(--bg-soft);
  padding: 48px 24px 32px;
  border-top: 1px solid var(--line);
}
footer .container {
  max-width: 1180px;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
footer .brand p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-top: 12px; }
footer h4 {
  font-size: 12px; color: var(--ink-faint);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px;
}
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer li, footer a { font-size: 13px; color: var(--ink-soft); text-decoration: none; }
footer a:hover { color: var(--anchor-blue); }
footer .compliance-strip {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 22px 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
footer .compliance-strip .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  padding: 6px 14px;
  background: rgba(37, 99, 217, 0.04);
  border-radius: 100px;
  white-space: nowrap;
}
footer .compliance-strip .pill svg {
  flex-shrink: 0;
  opacity: 0.85;
}
footer .copyright {
  max-width: 1180px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-faint); text-align: center;
}
@media (max-width: 720px) {
  footer .container { grid-template-columns: 1fr; }
}

/* === Scroll reveal === */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s ease-out, transform 0.9s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }
