@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
/* ==========================================================================
   0) HELPERS & BREAKPOINTS
   ========================================================================== */
/* Újrahasznosítható UI minták */
/* ==========================================================================
   1) GLOBAL TOKENS (ROOT)
   ========================================================================== */
:root {
  --primary: #5b6ac9;
  --primary-dark: #404b9a;
  --primary-light: #93a0f0;
  --accent-orange: #ff7a59;
  --accent-cyan: #7dd3fc;
  --accent-purple: #a78bfa;
  --accent-green: #7adcd6;
  --accent-yellow: #facc15;
  /* Tipográfia */
  --text-dark: #0f172a;
  --text-md: #334155;
  --text-light: #64748b;
  --text-white: #ffffff;
  /* Felület/háttér */
  --bg-light: #f8fafc;
  --white: #ffffff;
  --black: #000000;
  /* Név szerinti színek */
  --cyan: #7dd3fc;
  --blue-cornflower: #6495ed;
  --hero-mid: #7fb7be;
  /* Vékony vonalak, keretek */
  --border-100: #e5e7eb;
  --border-200: #e2e8f0;
  --muted-300: #d1d5db;
  /* Átlátszós fehérek/feketék */
  --white-98: rgba(255,255,255,.98);
  --white-90: rgba(255,255,255,.90);
  --white-20: rgba(255,255,255,.20);
  --white-15: rgba(255,255,255,.15);
  --white-10: rgba(255,255,255,.10);
  --white-03: rgba(255,255,255,.03);
  --black-30: rgba(0,0,0,.30);
  --black-20: rgba(0,0,0,.20);
  --black-15: rgba(0,0,0,.15);
  --black-08: rgba(0,0,0,.08);
  /* Navbar üveg tónus */
  --navbar-glass: rgba(118,198,223,.05);
  /* Árnyékok */
  --shadow-strong: 0 15px 50px rgba(0,0,0,.30);
  --shadow-med: 0 10px 40px rgba(0,0,0,.20);
  --shadow-soft: 0 4px 30px rgba(0,0,0,.08);
  --shadow-primary-40: 0 10px 30px rgba(64,75,154,.40);
  --shadow-primary-30: 0 20px 60px rgba(64,75,154,.30);
  --shadow-primary-20: 0 25px 60px rgba(64,75,154,.20);
  --shadow-primary-10: 0 15px 40px rgba(64,75,154,.10);
  /* Gradiensek */
  --grad-brand: linear-gradient(135deg, var(--primary), var(--accent-purple));
  --grad-underline: linear-gradient( 90deg, var(--primary), var(--accent-purple));
  --grad-btn-nav: linear-gradient(135deg, var(--primary), var(--primary-light));
  --grad-hero: linear-gradient(135deg, #1a2358 0%, var(--primary-dark) 50%, #1b2a6a 100%);
  --grad-process: linear-gradient(135deg, var(--primary-dark), var(--primary));
  --grad-contact: linear-gradient(135deg, #1a2358 0%, var(--primary) 55%, #1a2358 100%);
  --grad-text-strong: linear-gradient(135deg, #ffffff, var(--accent-cyan), var(--blue-cornflower));
  --grad-text-light: linear-gradient(135deg, var(--accent-cyan), var(--blue-cornflower));
  --grad-icon-warm: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  --grad-card-glow: linear-gradient(135deg, #eef2ff, #f5f3ff);
  --grad-cta: linear-gradient(135deg, #ff8b6e, #ffd166);
  --grad-bg-generic: linear-gradient(135deg, #f1f5ff 0%, #f5f3ff 100%);
  /* Radialok a hero overlayhez */
  --radial-hero-cyan: radial-gradient(circle at 20% 50%, rgba(125,211,252,.14) 0%, transparent 50%);
  --radial-hero-purple: radial-gradient(circle at 80% 80%, rgba(167,139,250,.14) 0%, transparent 50%);
  --radial-hero-orange: radial-gradient(circle at 40% 20%, rgba(255,122,89,.10) 0%, transparent 50%);
  /* Grid overlay (hero) */
  --grid-lines:
          linear-gradient(var(--white-03) 1px, transparent 1px),
          linear-gradient(90deg, var(--white-03) 1px, transparent 1px);
  --grid-size: 50px 50px;
  /* Steps  */
  --step-d: 80px;
  --steps-gap: 2rem;
  --connector-thickness: 4px;
  --connector-gap: 8px;
  --connector-color: var(--primary-light);
  /* Contact dedikált tokenek */
  --contact-bg: var(--white);
  --contact-panel-bg: var(--grad-contact);
  --contact-field-bg: var(--white);
  --contact-field-border: var(--border-200);
  --contact-field-radius: 15px;
  --primary-rgb: 91,106,201; /* #5b6ac9 */
  --contact-field-focus-border: var(--primary);
  --contact-field-focus-ring: rgba(var(--primary-rgb), .12);
  --contact-label-color: var(--white);
  --contact-text-on-dark: var(--white);
  --contact-info-border: var(--white-20);
  --contact-info-text: var(--text-dark);
  --contact-info-surface: var(--white-15);
  --contact-button-bg: var(--white);
  --contact-button-border: var(--border-100);
  --contact-button-text: var(--text-dark);
  --contact-button-shadow: var(--black-08);
  --contact-button-shadow-hover:var(--black-15);
  --contact-button-bg-hover: var(--bg-light);
  --contact-button-border-hover:var(--primary);
  --grad-contact-icon: linear-gradient(135deg, var(--primary), var(--primary-light));
  --contact-icon-fg: var(--white);
  --contact-item-border: var(--text-dark);
  --contact-item-icon-bg: var(--black-20);
  --contact-item-icon-fg: var(--white);
  --contact-submit-bg: var(--white);
  --contact-submit-fg: var(--primary-dark);
  --contact-submit-shadow-hover:var(--black-30);
  /* Statikus (jogi) oldalak tokenjei */
  --legal-bg: #0b122b;
  --legal-text: var(--text-dark);
  --legal-muted:#475569;
  --legal-card: var(--white);
  --legal-brd: var(--border-100);
  --legal-r: 14px;
  --legal-w: 920px;
}

/* ==========================================================================
   3) BASE / RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* Segédelemek */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle 20s infinite;
}

/* ==========================================================================
   4) ANIMATIONS
   ========================================================================== */
@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) rotate(0);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  100% {
    transform: translate(100px, -1000px) rotate(360deg);
  }
}
@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
@keyframes iktato-wire-dash {
  to {
    stroke-dashoffset: -200;
  }
}
@keyframes drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -16px);
  }
}
/* ==========================================================================
   5) GLOBAL COMPONENTS
   ========================================================================== */
/* NAVIGATION */
.navbar {
  background: var(--navbar-glass);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: var(--white-98);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px var(--black-15);
}
.navbar .navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar .nav-link {
  color: var(--text-white) !important;
  font-weight: 600;
  margin: 0 0.8rem;
  transition: all 0.3s;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--grad-underline);
  border-radius: 2px;
  transition: width 0.3s;
}
.navbar .nav-link:hover::after {
  width: 80%;
}
.navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
}
.navbar .btn-nav {
  background: var(--grad-btn-nav);
  color: #fff !important;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}
.navbar .btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-40);
}

/* CTA2 BUTTON */
.btn-cta2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(24, 37, 176, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  overflow: hidden;
}
.btn-cta2 .bi {
  font-size: 1.25rem;
}
.btn-cta2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 30%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-cta2:hover::after {
  transform: translateX(100%);
}
.btn-cta2:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(24, 37, 176, 0.45);
  filter: saturate(1.05);
}
.btn-cta2:focus-visible {
  outline: 3px solid #bcd3ff;
  outline-offset: 3px;
}
.btn-cta2 .bi-rocket-takeoff-fill {
  animation: ctaPulse 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta2, .btn-cta2::after {
    transition: none;
  }
  .btn-cta2 .bi-rocket-takeoff-fill {
    animation: none;
  }
}
/* HERO (globális) */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--white);
  padding: 180px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--radial-hero-cyan), var(--radial-hero-purple), var(--radial-hero-orange);
}
.hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image: var(--grid-lines);
  background-size: var(--grid-size);
  animation: grid-move 20s linear infinite;
}
.hero .hero-content {
  position: relative;
  z-index: 10;
}
.hero .hero-badge {
  display: inline-block;
  background: var(--white-15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid var(--white-20);
}
.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -2px;
}
.hero .lead {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.8;
  font-weight: 400;
}
.hero .hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero .stat-item {
  text-align: left;
}
.hero .stat-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--grad-text-strong);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}
.hero .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.4s;
  box-shadow: var(--shadow-med);
  text-decoration: none;
}
.hero .btn-hero:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}
.hero .btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.hero .btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.hero .hero-visual {
  position: relative;
}
.hero .floating-card {
  background: var(--white-10);
  backdrop-filter: blur(20px);
  border: 1px solid var(--white-20);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  animation: float 6s ease-in-out infinite;
}
.hero .floating-card:nth-child(2) {
  animation-delay: 1s;
}
.hero .floating-card:nth-child(3) {
  animation-delay: 2s;
}
.hero .floating-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 15px;
  background: var(--grad-icon-warm);
}
.hero .floating-icon--purple-cyan {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
}
.hero .floating-icon--green-cyan {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
}
.hero .floating-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.hero .floating-subtitle {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

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

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  box-shadow: 0 -5px 30px var(--black-08);
}
.trust-bar .trust-item {
  text-align: center;
  padding: 0 20px;
}
.trust-bar .trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.trust-bar .trust-text {
  color: var(--text-md);
  font-weight: 600;
}

/* SERVICES */
.services {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
}

.section-badge {
  display: inline-block;
  background: var(--grad-brand);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.section-title p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Service card (globális minta) */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 50px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-card-glow);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
.service-card:hover::before {
  opacity: 0.05;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-primary-20);
  border-color: var(--primary);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card .service-icon-wrapper {
  width: 90px;
  height: 90px;
  background: var(--grad-card-glow);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  transition: all 0.5s;
  box-shadow: var(--shadow-primary-30);
}
.service-card:hover .service-icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}
.service-card .service-icon--cyan {
  background: linear-gradient(135deg, var(--accent-cyan), #06b6d4);
}
.service-card .service-icon--violet {
  background: linear-gradient(135deg, var(--accent-purple), #c084fc);
}
.service-card .service-icon--mint {
  background: linear-gradient(135deg, var(--accent-green), #34d399);
}
.service-card .service-icon--warm {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
}
.service-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.service-card .description {
  color: var(--text-md);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.service-card .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.service-card .service-features li {
  padding: 12px 0;
  color: var(--text-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.service-card .service-features li i {
  color: var(--accent-green);
  font-size: 1.2rem;
}
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: gap 0.3s;
}
.service-card .service-link:hover {
  gap: 15px;
}

/* WHY CHOOSE */
.why-choose {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.why-choose .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 4rem;
}
.why-choose .feature-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 25px;
  transition: all 0.4s;
  border: 2px solid transparent;
}
.why-choose .feature-card:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary-10);
  transform: translateY(-5px);
}
.why-choose .feature-card .feature-icon-box {
  width: 70px;
  height: 70px;
  background: var(--grad-icon-warm);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.why-choose .feature-card .feature-icon--violet {
  background: linear-gradient(135deg, var(--accent-purple), #c084fc);
}
.why-choose .feature-card .feature-icon--cyan {
  background: linear-gradient(135deg, var(--accent-cyan), #06b6d4);
}
.why-choose .feature-card .feature-icon--mint {
  background: linear-gradient(135deg, var(--accent-green), #34d399);
}
.why-choose .feature-card .feature-icon--brand {
  background: var(--grad-brand);
}
.why-choose .feature-card .feature-icon--amber {
  background: linear-gradient(135deg, #f59e0b, var(--accent-yellow));
}
.why-choose .feature-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.why-choose .feature-card p {
  color: var(--text-md);
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: 120px 0;
  background: var(--grad-process);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}
.process .process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process .step-number {
  position: relative;
  width: var(--step-d);
  height: var(--step-d);
  background: var(--white-15);
  backdrop-filter: blur(10px);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 2rem;
  transition: all 0.4s;
}
.process .step-number::before, .process .step-number::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: var(--connector-thickness);
  background: var(--connector-color);
}
.process .step-number::before {
  right: calc(50% + var(--step-d) / 2 + var(--connector-gap));
  width: 120px;
}
.process .step-number::after {
  left: calc(50% + var(--step-d) / 2 + var(--connector-gap));
  width: 120px;
}
.process .process-step:hover .step-number {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.15);
}
.process .process-step h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.process .section-title--on-dark .section-badge {
  background: var(--white-20);
  color: var(--white);
}
.process .section-title--on-dark h2 {
  color: var(--white);
}
.process .section-title--on-dark p {
  color: var(--white-90);
}
.process .steps-line {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: var(--steps-gap);
  align-items: start;
  position: relative;
  overflow: hidden;
  padding-top: 0.5rem;
}
.process .steps-line > *:first-child .step-number::before {
  display: none;
}
.process .steps-line > *:last-child .step-number::after {
  display: none;
}
@media (max-width: 767.98px) {
  .process {
    padding: 50px 0;
  }
  .process .steps-line {
    display: block;
    padding-top: 0;
  }
  .process .steps-line > [class*=col] {
    width: 100%;
    max-width: 100%;
  }
  .process .process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 12px 0;
  }
  .process .step-number {
    width: 56px;
    height: 56px;
    margin: 0 20px 0 30px;
    flex: 0 0 auto;
  }
  .process .step-number::before, .process .step-number::after {
    display: none !important;
    content: none !important;
  }
  .process .process-step h4 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.25;
  }
  .process .process-step .step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 0;
  background: var(--bg-light);
}
.testimonials .testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-radius: 30px;
  padding: 50px;
  height: 100%;
  transition: all 0.4s;
}
.testimonials .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--black-15);
}
.testimonials .testimonial-card .testimonial-stars {
  color: var(--accent-yellow);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.testimonials .testimonial-card .testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-md);
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonials .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials .testimonial-card .testimonial-author .author-avatar {
  width: 60px;
  height: 60px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}
.testimonials .testimonial-card .testimonial-author .author-info h5 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}
.testimonials .testimonial-card .testimonial-author .author-info p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: var(--grad-cta);
  color: var(--white);
  text-align: center;
}
.cta-section h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}
.cta-section .btn-cta {
  background: var(--white);
  color: var(--accent-orange);
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.2rem;
  transition: all 0.4s;
  box-shadow: var(--shadow-med);
}
.cta-section .btn-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-strong);
}
@media (max-width: 767.98px) {
  .cta-section .btn-cta {
    padding: 20px 20px;
  }
}

/* CONTACT */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact .contact-form-wrapper {
  background: var(--contact-panel-bg);
  padding: 60px;
  border-radius: 30px;
  box-shadow: var(--shadow-primary-30);
}
.contact .form-control, .contact .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  border: 2px solid var(--border-200);
  border-radius: 15px;
  font-size: 1.05rem;
  transition: all 0.3s;
  background: var(--white);
}
.contact .form-control:focus, .contact .form-select:focus {
  border-color: var(--contact-field-focus-border);
  box-shadow: 0 0 0 4px var(--contact-field-focus-ring);
  outline: none;
}
.contact textarea.form-control {
  height: 160px !important;
}
.contact .form-label {
  color: var(--contact-label-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}
.contact .btn-submit {
  background: var(--contact-submit-bg);
  color: var(--contact-submit-fg);
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.15rem;
  width: 100%;
  transition: all 0.4s;
}
.contact .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--contact-submit-shadow-hover);
}
.contact .contact-info-box {
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid var(--contact-info-border);
  color: var(--contact-info-text);
  height: 100%;
  background: var(--contact-info-surface);
}
.contact .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-dark);
  border: 1px solid var(--contact-item-border);
  border-radius: 20px;
  padding: 20px;
}
.contact .contact-item a {
  color: var(--text-dark);
  text-decoration: none;
}
.contact .contact-icon {
  width: 60px;
  height: 60px;
  background: var(--contact-item-icon-bg);
  color: var(--contact-item-icon-fg);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.contact .contact-button {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--contact-button-bg);
  padding: 15px 20px;
  border-radius: 20px;
  border: 2px solid var(--contact-button-border);
  text-decoration: none;
  color: var(--contact-button-text);
  transition: all 0.4s;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--contact-button-shadow);
}
.contact .contact-button:hover {
  background: var(--contact-button-bg-hover);
  border-color: var(--contact-button-border-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--contact-button-shadow-hover);
  color: var(--contact-button-text);
}
.contact .contact-button .contact-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-contact-icon);
  color: var(--contact-icon-fg);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: all 0.4s;
}
.contact .contact-button:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}
.contact .contact-button .contact-button-content {
  flex: 1;
  text-align: left;
}
.contact .contact-button .contact-button-content span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* FOOTER */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 40px 0 20px;
}
footer .logo {
  background: var(--white);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
footer .footer-section h5 {
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
footer .footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}
footer .footer-link:hover {
  color: var(--white);
  padding-left: 10px;
}
footer .social-links a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: var(--white-10);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}
footer .social-links a:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-5px);
}

/* ==========================================================================
   6) STATIC PAGE (Cookie/Jogi/TOS)
   ========================================================================== */
.static-page {
  --bg: var(--legal-bg);
  --text: var(--legal-text);
  --muted: var(--legal-muted);
  --card: var(--legal-card);
  --brd: var(--legal-brd);
  --r: var(--legal-r);
  --w: var(--legal-w);
  --sp-hero-bg: var(--grad-bg-generic);
  --sp-hero-ink: var(--text-dark);
  --sp-hero-ring: var(--white-10);
}
.static-page .hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--white);
  min-height: 40vh;
  padding: 180px 0 60px;
  text-align: center;
  overflow: hidden;
  /* finom fényfoltok, világos környezethez */
}
.static-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, var(--sp-hero-ring) 0%, transparent 50%), radial-gradient(circle at 80% 70%, var(--sp-hero-ring) 0%, transparent 50%);
  pointer-events: none;
}
.static-page .hero .wrap {
  position: relative;
  z-index: 1;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}
.static-page .hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.static-page .hero p {
  color: var(--white);
}
.static-page .hero .subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 auto 24px;
  max-width: 820px;
}
.static-page .hero .hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--border-200);
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .static-page .hero {
    padding: 120px 0 64px;
    min-height: 52vh;
  }
  .static-page .hero h1 {
    font-size: 2.5rem;
  }
  .static-page .hero .subtitle {
    font-size: 1rem;
  }
}
.static-page .wrap {
  max-width: var(--w);
  margin: 0 auto;
}
.static-page h1 {
  margin: 0 0 6px;
  font: 800 clamp(28px, 3.5vw, 42px)/1.1 system-ui, Segoe UI, Roboto, Arial;
}
.static-page h2 {
  margin: 0 0 10px;
  font: 800 clamp(18px, 2.2vw, 22px)/1.2 system-ui, Segoe UI, Roboto, Arial;
  color: var(--text);
}
.static-page h3 {
  margin: 14px 0 8px;
  font: 700 16px/1.25 system-ui, Segoe UI, Roboto, Arial;
  color: var(--text);
}
.static-page .main {
  padding: clamp(24px, 4vw, 48px) 16px;
}
.static-page .card {
  max-width: var(--w);
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: clamp(16px, 2.5vw, 28px);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}
.static-page .sec {
  padding: 16px 0;
  border-bottom: 1px dashed var(--brd);
}
.static-page .sec:last-child {
  border-bottom: 0;
}
.static-page p, .static-page li {
  color: var(--muted);
  line-height: 1.65;
}
.static-page p {
  margin: 0 0 10px;
}
.static-page ul {
  margin: 0 0 12px 18px;
}
.static-page a {
  color: inherit;
  text-decoration: underline;
}
.static-page dl {
  margin: 0 0 12px;
}
.static-page dt {
  font-weight: 700;
  color: var(--text);
}
.static-page dd {
  margin: 0 0 8px 0;
  color: var(--muted);
}
.static-page .table-wrap {
  overflow-x: auto;
}
.static-page table {
  width: 100%;
  border-collapse: collapse;
}
.static-page th, .static-page td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--brd);
  text-align: left;
  vertical-align: top;
}
.static-page thead th {
  border-bottom: 2px solid var(--brd);
}
.static-page caption {
  caption-side: top;
  text-align: left;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text);
}

/* ==========================================================================
   7) PRODUCT PAGE (scoped aloldal)
   ========================================================================== */
.product-page {
  --bg: var(--bg-light);
  --ink: var(--text-dark);
  --muted: var(--text-light);
  --card: var(--white);
  --border: var(--border-200);
  --radius: 16px;
  --success: var(--accent-green);
}
.product-page--iktato {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.product-page {
  /* Layout util */
}
.product-page .container-narrow {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 24px;
}
.product-page .section {
  padding: 64px 0;
}
.product-page .section--tight {
  padding: 40px 0;
}
.product-page {
  /* HERO (scoped) */
}
.product-page .hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.product-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, var(--white-10) 0%, transparent 50%), radial-gradient(circle at 80% 70%, var(--white-10) 0%, transparent 50%);
  pointer-events: none;
}
.product-page .hero .wrap {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 48px 24px;
  max-width: 800px;
}
.product-page .hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.product-page .hero .tagline {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
}
.product-page .hero .subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}
.product-page .hero .btn {
  margin-top: 8px;
  box-shadow: var(--shadow-med);
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-page .hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}
.product-page {
  /* Card util a termék oldalon */
}
.product-page .card-flat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.product-page .card-flat:hover {
  box-shadow: var(--shadow-primary-10);
  transform: translateY(-4px);
}
.product-page .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--ink);
}
.product-page .muted {
  color: var(--muted);
}
.product-page {
  /* Highlights */
}
.product-page .highlight {
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.product-page .highlight:hover {
  box-shadow: var(--shadow-primary-10);
  transform: translateY(-4px);
}
.product-page .highlight .icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--grad-brand);
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-primary-20);
}
.product-page .highlight .icon-wrapper i {
  color: #fff;
  font-size: 1.75rem;
}
.product-page .highlight h5 {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 1.25rem;
}
.product-page .highlight p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}
.product-page {
  /* Steps */
}
.product-page .steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.product-page .step {
  padding: 28px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.product-page .step:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.product-page .step .n {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: var(--shadow-primary-30);
}
.product-page .step h6 {
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.product-page .step p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.product-page .step .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}
.product-page {
  /* Feature list */
}
.product-page .feature-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.product-page .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.product-page .feature-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary-10);
}
.product-page .feature-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 2px;
}
.product-page .feature-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.product-page {
  /* Pricing */
}
.product-page .price-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
.product-page .plan.plan--unified {
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  display: flex;
  gap: 20px;
}
.product-page .plan.plan--unified .plan-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.product-page .plan.plan--unified .plan-head .badge-soft-primary {
  background: rgba(24, 37, 176, 0.08);
  color: var(--ink);
  border: 1px solid rgba(24, 37, 176, 0.16);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}
.product-page .plan.plan--unified .plan-head .plan-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
}
.product-page .plan.plan--unified .plan-head .plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.product-page .plan.plan--unified .plan-head .price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
}
.product-page .plan.plan--unified .plan-head .price-period {
  font-weight: 600;
  color: var(--muted);
}
.product-page .plan.plan--unified .plan-compare {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.product-page .plan.plan--unified .plan-compare h4 {
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.product-page .plan.plan--unified .plan-compare ul {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .product-page .plan.plan--unified .plan-compare {
    grid-template-columns: 1fr;
  }
  .product-page .plan.plan--unified .plan-compare .price {
    font-size: 2rem;
  }
}
.product-page .plan.plan--unified h4 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.product-page .plan.plan--unified ul {
  padding-left: 0;
  list-style: none;
  flex: 1 1 auto;
}
.product-page .plan.plan--unified li {
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}
.product-page .plan.plan--unified li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.125rem;
}
.product-page .plan.plan--unified > .btn-cta, .product-page .plan.plan--unified > .btn-cta2 {
  margin-top: 20px;
}
.product-page .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.product-page .price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.product-page {
  /* CTA doboz + gomb */
}
.product-page .cta-soft {
  background: var(--grad-card-glow);
  border: 1px solid var(--border);
  padding: 28px 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.product-page .cta-soft .cta-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-page .cta-soft .cta-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-icon-warm);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.product-page .cta-soft .cta-icon i {
  color: #fff;
  font-size: 1.5rem;
}
.product-page .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 700;
  border-radius: 1rem;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.product-page .btn-cta:hover {
  background: #ff6543;
  transform: translateY(-1px);
  color: #fff;
}
.product-page {
  /* Wire animáció */
}
.product-page .wire-container {
  margin: 32px 0;
  opacity: 0.6;
}
.product-page .wire {
  stroke: var(--accent-purple);
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 8 6;
}
.product-page .wire.animate {
  animation: iktato-wire-dash 20s linear infinite;
}

.error-page {
  --header-height: 72px;
  --hero-scrim-color: rgba(64, 75, 154, 0.88);
  --hero-scrim-fade: rgba(64, 75, 154, 0.00);
  --hero-scrim-height: 26vh;
}
.error-page .error-hero {
  position: relative;
  isolation: isolate;
  z-index: 0;
  min-height: 68vh;
  padding-top: calc(var(--header-height) + 4vh);
  padding-bottom: 8vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--hero-scrim-color) 0%, var(--hero-scrim-color) var(--hero-scrim-height), var(--hero-scrim-fade) calc(var(--hero-scrim-height) + 8vh)), radial-gradient(1100px 520px at 8% -10%, var(--primary-light), transparent 60%), radial-gradient(900px 520px at 110% 110%, var(--accent-purple), transparent 65%), linear-gradient(180deg, var(--bg-light), #fff 60%);
  overflow: hidden;
}
.error-page .blob {
  position: absolute;
  inset: auto auto 10% -8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.22;
  pointer-events: none;
  background: radial-gradient(closest-side, var(--accent-cyan), transparent 70%);
  animation: drift 14s ease-in-out infinite;
  transform: translateZ(0);
  will-change: transform;
}
.error-page .blob.b2 {
  inset: 5% -8% auto auto;
  background: radial-gradient(closest-side, var(--primary), transparent 70%);
  animation-duration: 18s;
  animation-delay: 0.4s;
}
@keyframes drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -16px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .error-page .blob {
    animation: none;
  }
  .error-page .btn-cta {
    transition: none;
  }
}
.error-page .card-elev {
  max-width: 820px;
  margin-inline: 16px;
  background: var(--white-98);
  border: 1px solid var(--border-200);
  border-radius: 20px;
  box-shadow: 0 18px 50px var(--black-08);
  backdrop-filter: blur(6px);
}
.error-page .section {
  padding: clamp(24px, 4vw, 48px);
}
.error-page .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-dark);
  background: linear-gradient(0deg, #fff, #fff) padding-box, linear-gradient(90deg, var(--primary), var(--accent-purple)) border-box;
  border: 1px solid transparent;
}
.error-page .title {
  margin: 0.7rem 0 0.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
}
.error-page .lead {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0.2rem 0 0.3rem;
}
.error-page .note {
  color: var(--text-md);
  margin: 0.2rem 0 0;
}
.error-page .cta-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 32px;
}
.error-page .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.25rem;
  border-radius: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent-orange), #ff947a);
  color: var(--text-white);
  box-shadow: 0 10px 24px rgba(255, 122, 89, 0.32);
  transition: transform 0.08s ease, filter 0.18s ease, box-shadow 0.18s ease;
}
.error-page .btn-cta svg {
  width: 1.1em;
  height: 1.1em;
}
@media (prefers-reduced-motion: no-preference) {
  .error-page .btn-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.02) saturate(1.02);
  }
}
.error-page .illus {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0.5rem auto 0;
}

/* ==========================================================================
   8) RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  .services .section-title h2 {
    font-size: 2.5rem;
  }
  .hero .hero-stats {
    gap: 2rem;
  }
  .product-page .steps {
    grid-template-columns: 1fr;
  }
  .product-page .price-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .services, .why-choose, .testimonials {
    padding: 80px 0;
  }
  .contact .contact-form-wrapper {
    padding: 40px 30px;
  }
  .steps-line::before {
    display: none;
  } /* folyamat-vonal mobilon */
  .product-page .hero .tagline {
    font-size: 1.25rem;
  }
  .product-page .feature-list {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   9) REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .product-page .wire.animate {
    animation: none;
  }
}

/*# sourceMappingURL=app.css.map */
