/* ==========================================================================
   FÁRADT SZEM STOP 40 FELETT - HIGH CONVERTING SALES LANDING PAGE
   Design System & Styling
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary-blue: #134063;
  --primary-blue-hover: #0d2f4a;
  --primary-blue-light: #edf4f9;
  --primary-blue-subtle: #dbeaf4;
  --primary-blue-dark: #092033;

  --accent-orange: #e65c00;
  --accent-orange-hover: #cf5000;
  --accent-orange-active: #b34200;
  --accent-orange-light: #fff2e8;
  --accent-orange-glow: rgba(230, 92, 0, 0.38);

  --accent-green: #2e7d32;
  --accent-green-light: #e8f5e9;

  --accent-gold: #d97706;
  --accent-gold-light: #fef3c7;

  /* Neutral & Beige Backgrounds */
  --bg-page: #fbf8f3;
  --bg-page-alt: #f4ede2;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-warm: #fcf9f4;
  --bg-card-hover: #fffdfa;

  /* Text Colors */
  --text-dark: #1a2530;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light-muted: #cbd5e1;
  --text-white: #ffffff;

  /* Borders & Dividers */
  --border-light: #e7dfd1;
  --border-medium: #d6ccba;
  --border-focus: #1d70b8;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container-max-width: 1160px;
  --container-narrow: 860px;
  --spacing-xs: 0.25rem;  /* 4px */
  --spacing-sm: 0.5rem;   /* 8px */
  --spacing-md: 1rem;     /* 16px */
  --spacing-lg: 1.5rem;   /* 24px */
  --spacing-xl: 2.5rem;   /* 40px */
  --spacing-2xl: 4rem;    /* 64px */
  --spacing-3xl: 5.5rem;  /* 88px */

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Elevation / Shadows */
  --shadow-sm: 0 2px 6px rgba(19, 64, 99, 0.05);
  --shadow-md: 0 6px 18px rgba(19, 64, 99, 0.08);
  --shadow-lg: 0 12px 32px rgba(19, 64, 99, 0.12);
  --shadow-xl: 0 20px 48px rgba(19, 64, 99, 0.16);
  --shadow-cta: 0 8px 24px var(--accent-orange-glow);
  --shadow-cta-hover: 0 12px 32px rgba(230, 92, 0, 0.5);

  /* Transitions */
  --transition-fast: 0.18s ease-in-out;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.65;
  font-size: 1.0625rem; /* 17px base */
  overflow-x: hidden;
  padding-bottom: 72px; /* room for mobile sticky bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-orange);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   3. Layout & Containers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  position: relative;
}

@media (min-width: 992px) {
  .section {
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
  }
}

.bg-light {
  background-color: var(--bg-page-alt);
}

.bg-surface {
  background-color: var(--bg-surface);
}

.bg-gradient {
  background: linear-gradient(145deg, #0f304b 0%, #134063 50%, #1a4f78 100%);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--text-white) !important;
}

.text-light-muted {
  color: var(--text-light-muted) !important;
}

.text-success {
  color: var(--accent-green) !important;
  font-weight: 600;
}

.w-100 {
  width: 100%;
}

.desktop-only {
  display: none;
}

@media (min-width: 769px) {
  .desktop-only {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   4. Section Headers & Tags
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: var(--spacing-xl);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue-subtle);
  margin-bottom: 0.85rem;
}

.section-tag-warning {
  background-color: #fef2f2;
  color: #b91c1c;
  border-color: #fee2e2;
}

.section-tag-success {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  border-color: #c8e6c9;
}

.section-tag-accent {
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  border-color: #ffd8bf;
}

.section-tag-light {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.section-tag-blue {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 0.85rem;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.35rem;
  }
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5. Buttons & Interactive CTA
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  line-height: 1.2;
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
}

.btn-md {
  padding: 0.9rem 1.75rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 1.15rem 2.25rem;
  font-size: 1.25rem;
  border-radius: var(--radius-lg);
  min-height: 64px;
}

.btn-cta {
  background: linear-gradient(180deg, #ff7a1a 0%, #e65c00 100%);
  color: var(--text-white) !important;
  box-shadow: var(--shadow-cta);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  background: linear-gradient(180deg, #ff852e 0%, #d95300 100%);
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px var(--accent-orange-glow);
}

.btn-accent {
  background-color: var(--accent-orange);
  color: var(--text-white) !important;
  box-shadow: 0 4px 14px var(--accent-orange-glow);
}

.btn-accent:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--accent-orange-glow);
}

.btn-text-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  .btn-text-main {
    font-size: 1.375rem;
  }
}

.btn-text-sub {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.92;
  text-shadow: none;
}

/* Pulsing effect on CTA */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 92, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(230, 92, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 92, 0, 0);
  }
}

.pulse-cta {
  animation: pulseGlow 2.4s infinite;
}

.pulse-cta:hover {
  animation: none;
}

/* --------------------------------------------------------------------------
   6. Announcement Bar & Site Header
   -------------------------------------------------------------------------- */
.announcement-bar {
  background-color: var(--primary-blue-dark);
  color: var(--text-white);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  text-align: center;
}

.announcement-badge {
  background-color: var(--accent-orange);
  color: var(--text-white);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-xs);
}

.announcement-text {
  margin: 0;
}

.announcement-link {
  color: #ffd8bf;
  font-weight: 600;
  text-decoration: underline;
}

.announcement-link:hover {
  color: var(--text-white);
}

.site-header {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  padding: 0.5rem 0;
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 769px) {
  .site-header {
    position: sticky;
    top: 0;
    padding: 0.85rem 0;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 769px) {
  .brand-logo {
    gap: 0.75rem;
  }
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, #cce3f5 100%);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-blue-subtle);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 769px) {
  .logo-icon {
    width: 42px;
    height: 42px;
  }
  .logo-icon svg {
    width: 28px;
    height: 28px;
  }
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
}

@media (min-width: 769px) {
  .logo-title {
    font-size: 1.25rem;
  }
}

.logo-accent {
  color: var(--accent-orange);
}

.logo-subtitle {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (min-width: 769px) {
  .logo-subtitle {
    font-size: 0.75rem;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-cta {
  display: none;
}

@media (min-width: 769px) {
  .header-cta {
    display: inline-flex;
  }
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-green);
  background-color: var(--accent-green-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid #c8e6c9;
}


/* --------------------------------------------------------------------------
   7. Hero Szekció
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-2xl);
  background: radial-gradient(circle at 50% 20%, #ffffff 0%, var(--bg-page) 75%);
  border-bottom: 1px solid var(--border-light);
}

.hero-intro {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-blue-subtle);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.15rem;
  color: var(--primary-blue-dark);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

.highlight-text {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1875rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Picture / Banner */
.hero-banner-wrapper {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-surface);
  background-color: var(--bg-surface);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-actions-container {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-box {
  margin-bottom: var(--spacing-xl);
}

#hero-main-cta {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-security-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sec-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary-blue);
}

.sec-item svg {
  color: var(--accent-green);
}

/* Hero 4-Point Grid */
.hero-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .hero-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-feature-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.feature-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
  color: var(--primary-blue);
}

.feature-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* --------------------------------------------------------------------------
   8. Videó Blokk
   -------------------------------------------------------------------------- */
.video-section {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.video-card-container {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.video-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--primary-blue);
  background-color: #000000;
  aspect-ratio: 16 / 9;
}

.main-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-caption {
  margin-top: 1.15rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Probléma Szekció („Ismerős a helyzet?”)
   -------------------------------------------------------------------------- */
.problem-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .problem-layout-grid {
    grid-template-columns: 420px 1fr;
    gap: 3rem;
  }
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--bg-surface);
}

.problem-img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(19, 64, 99, 0.9);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.symptom-cards-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .symptom-cards-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.symptom-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.symptom-card:hover {
  transform: translateY(-2px);
  border-color: #fca5a5;
}

.symptom-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fee2e2;
  color: #dc2626;
  font-weight: 800;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symptom-content h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.symptom-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. Megoldás / Termékbemutatás
   -------------------------------------------------------------------------- */
.solution-highlight-box {
  background-color: var(--bg-surface);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .solution-highlight-box {
    padding: 3rem;
  }
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .solution-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
  }
}

.solution-title {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: var(--primary-blue);
}

@media (min-width: 768px) {
  .solution-title {
    font-size: 2.25rem;
  }
}

.lead-p {
  font-size: 1.1875rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.solution-keypoints {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.keypoint-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.0625rem;
}

.keypoint-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-cta-wrapper {
  margin-top: 1.75rem;
}

.book-3d-display {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.book-mockup-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(19, 64, 99, 0.25));
  transition: transform var(--transition-normal);
}

.book-mockup-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.book-badge-tag {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  background-color: var(--accent-orange);
  color: var(--text-white);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--bg-surface);
}

.badge-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge-subtitle {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. Előnyök Szekció
   -------------------------------------------------------------------------- */
.benefits-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .benefits-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-subtle);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.benefit-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin: 0;
}

.benefit-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Benefits Visual Break */
.benefits-visual-break {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.visual-break-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .visual-break-grid {
    grid-template-columns: 380px 1fr;
  }
}

.visual-break-img-col {
  height: 100%;
}

.break-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.visual-break-text-col {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .visual-break-text-col {
    padding: 2.75rem;
  }
}

.visual-break-text-col h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

.clean-check-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.clean-check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.clean-check-list li::before {
  content: "✓";
  color: var(--accent-green);
  font-weight: 800;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   12. Mi van a könyvben?
   -------------------------------------------------------------------------- */
.content-topics-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .content-topics-layout {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
  }
}

.topics-headline {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.topics-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.topic-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.topic-item:hover {
  transform: translateX(4px);
  border-color: var(--primary-blue);
}

.topic-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-orange);
  background-color: var(--accent-orange-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topic-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.topic-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.side-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--bg-surface);
}

.side-photo {
  width: 100%;
  height: auto;
  display: block;
}

.side-quote-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.side-quote-card p {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--primary-blue);
  font-weight: 600;
  margin: 0;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   13. PDF Formátum Előnyei
   -------------------------------------------------------------------------- */
.pdf-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pdf-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdf-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pdf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pdf-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.pdf-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--primary-blue);
}

.pdf-card-text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   14. Beleolvasó / Előnézet
   -------------------------------------------------------------------------- */
.preview-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .preview-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.preview-page-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  margin: 0;
}

.preview-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.preview-img-box {
  background-color: #f8fafc;
  padding: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.preview-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xs);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.preview-caption {
  padding: 1rem;
  text-align: center;
}

.preview-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-blue);
}

.preview-caption span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.mid-cta-wrapper {
  background-color: var(--primary-blue-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--primary-blue-subtle);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.mid-cta-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   15. Kinek Ajánlott?
   -------------------------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .audience-card-wide {
    grid-column: span 3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.audience-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.audience-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
  color: var(--primary-blue);
}

.audience-content p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. Kik Vagyunk? / Rólunk
   -------------------------------------------------------------------------- */
.about-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .about-card {
    padding: 3.25rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3.5rem;
  }
}

.about-title {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: var(--primary-blue);
}

.about-paragraphs p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.stat-box {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
  line-height: 1.3;
}

.trust-emblem-card {
  background: linear-gradient(145deg, var(--primary-blue-light) 0%, #e2eff8 100%);
  border: 2px dashed var(--primary-blue);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.emblem-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--text-white);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--bg-surface);
}

.emblem-star {
  font-size: 1.25rem;
  color: #fbbf24;
  line-height: 1;
}

.emblem-text-top {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.emblem-text-bottom {
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.trust-emblem-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.trust-emblem-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.company-badge-footer {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   17. Bónuszok Szekció
   -------------------------------------------------------------------------- */
.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .bonuses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background-color: var(--bg-surface);
  border: 2px solid #ffd8bf;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-orange);
}

.bonus-ribbon {
  background: var(--accent-orange);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  text-align: center;
}

.bonus-card-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bonus-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.bonus-title {
  font-size: 1.1875rem;
  margin-bottom: 0.65rem;
  color: var(--primary-blue);
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.bonus-pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
}

.bonus-value-struck {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bonus-free-tag {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--accent-green);
  background-color: var(--accent-green-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
}

.bonus-summary-box {
  background-color: var(--accent-gold-light);
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-sum-text {
  font-size: 1.0625rem;
  color: #92400e;
  margin: 0;
}

/* --------------------------------------------------------------------------
   18. Ár / Ajánlat Blokk (Pricing Box)
   -------------------------------------------------------------------------- */
.pricing-card-wrapper {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: var(--bg-surface);
  border: 3px solid var(--accent-orange);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.pricing-badge-top {
  background: var(--accent-orange);
  color: var(--text-white);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}

.pricing-card-header {
  padding: 2rem 2rem 1.5rem;
  background-color: #fff9f5;
  border-bottom: 1px solid #fed7aa;
}

.pricing-package-title {
  font-size: 1.65rem;
  color: var(--primary-blue-dark);
  margin-bottom: 0.35rem;
}

.pricing-package-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.pricing-card-body {
  padding: 2rem;
}

@media (min-width: 600px) {
  .pricing-card-body {
    padding: 2.5rem;
  }
}

.package-includes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.package-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.item-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.item-details strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--text-dark);
}

.item-details span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Price Display Box */
.price-display-box {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px dashed var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.price-original-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.strike-price {
  text-decoration: line-through;
  font-weight: 600;
  color: #ef4444;
}

.price-main-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: -0.02em;
}

.price-curr-tag {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.price-subnote {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.pricing-cta-box {
  margin-bottom: 1.5rem;
}

.delivery-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--primary-blue-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid var(--primary-blue-subtle);
}

.lightning-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.delivery-notice-box p {
  font-size: 0.875rem;
  color: var(--primary-blue-dark);
  line-height: 1.45;
  margin: 0;
}

/* --------------------------------------------------------------------------
   19. Garancia Szekció
   -------------------------------------------------------------------------- */
.guarantee-box {
  background-color: var(--bg-surface);
  border: 2px solid #bbf7d0;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .guarantee-box {
    padding: 3rem;
  }
}

.guarantee-header-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.guarantee-badge-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-green-light);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-tag {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-green);
}

.guarantee-title {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-top: 0.2rem;
}

@media (min-width: 768px) {
  .guarantee-title {
    font-size: 2.15rem;
  }
}

.guarantee-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.guarantee-statement {
  font-size: 1.125rem;
  color: var(--primary-blue);
  background-color: var(--primary-blue-light);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
  border-left: 4px solid var(--primary-blue);
}

.guarantee-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .guarantee-points-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guarantee-point-card {
  background-color: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
}

.point-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.point-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-green);
  color: var(--text-white);
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-header h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-dark);
}

.guarantee-point-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   20. GYIK (Accordion FAQ)
   -------------------------------------------------------------------------- */
.faq-accordion-group {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary-blue);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 1rem;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-blue);
  line-height: 1;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item[open] .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

/* --------------------------------------------------------------------------
   21. Záró CTA + Megrendelő Űrlap (Order Form Component)
   -------------------------------------------------------------------------- */
.order-section {
  color: var(--text-white);
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .checkout-container {
    grid-template-columns: 400px 1fr;
    gap: 2.5rem;
  }
}

/* Order Summary Box */
.order-summary-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: fit-content;
}

.summary-title {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.summary-item-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.summary-thumb {
  width: 75px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.summary-item-info h4 {
  font-size: 1.125rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.summary-item-info p {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  margin-bottom: 0.5rem;
}

.summary-badges-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.badge-mini {
  font-size: 0.6875rem;
  color: #86efac;
  font-weight: 600;
}

.summary-price-table {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9375rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-light-muted);
}

.summary-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0.5rem 0;
}

.summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  align-items: center;
}

.total-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ff9800;
}

.summary-guarantee-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 0.8125rem;
  color: #86efac;
}

.summary-guarantee-note svg {
  flex-shrink: 0;
}

/* Checkout Form Box */
.order-form-box {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  color: var(--text-dark);
}

@media (min-width: 600px) {
  .order-form-box {
    padding: 3rem 2.5rem;
  }
}

.form-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-step-spaced {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-step-header h3 {
  font-size: 1.1875rem;
  color: var(--primary-blue-dark);
  margin: 0;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 500px) {
  .form-row-2 {
    grid-template-columns: 1fr 1.5fr;
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.required-star {
  color: #ef4444;
}

.optional-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background-color: #fdfdfd;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(29, 112, 184, 0.15);
  background-color: #ffffff;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-helper {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* Payment Method Selection */
.payment-method-selector {
  margin-bottom: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary-blue);
  background-color: var(--primary-blue-light);
  cursor: pointer;
}

.payment-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-blue);
}

.payment-option-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--primary-blue-dark);
}

.payment-option-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.payment-logos-wrapper {
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.payment-badges-img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

/* Terms Checkbox */
.terms-checkbox-group {
  margin-bottom: 1.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-body);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-orange);
  flex-shrink: 0;
}

.checkbox-text a {
  color: var(--primary-blue);
  text-decoration: underline;
  font-weight: 600;
}

.form-submit-container {
  margin-bottom: 1rem;
}

.form-trust-footer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.bank-transfer-box {
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  background-color: #f8fafc;
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-sm);
  text-align: left;
}

.bank-transfer-title {
  font-size: 0.8125rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.bank-transfer-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.bank-transfer-desc a {
  color: var(--primary-blue);
  text-decoration: underline;
  word-break: break-all;
}

.bank-transfer-desc a:hover {
  color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0b1f2e;
  color: #94a3b8;
  padding-top: var(--spacing-3xl);
  font-size: 0.9375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
  }
}

.footer-logo .logo-title {
  color: var(--text-white);
}

.footer-desc {
  margin-top: 1rem;
  line-height: 1.6;
  font-size: 0.875rem;
}

.footer-company {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.0625rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  margin-top: 1.25rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xs);
  border-left: 3px solid #64748b;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   23. Sticky Mobile Bottom CTA
   -------------------------------------------------------------------------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (min-width: 769px) {
  .sticky-mobile-cta {
    display: none;
  }
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sticky-bar-price {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.1;
}

.sticky-price-tag {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.sticky-price-tag small {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent-green);
}

.sticky-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 800;
}

/* PHP rendszer kiegészítések */
.payment-method-selector{display:block}.payment-option{width:100%}.payment-option input:disabled~.payment-option-text{cursor:not-allowed}
