/* ==========================================================================
   Tengerész Gábor — Teljes szélességű CSS dizájnrendszer
   Színpaletta:
   - 1. szín: #5B75A7 (Mély palakék / Sötétkék)
   - 2. szín: #D5E3F0 (Lágy porkék)
   - 3. szín: #F7ECE1 (Meleg lágy krém)
   - 4. szín: #C8DACF (Lágy zsályazöld)
   - 5. szín: #789994 (Eukaliptusz pávakék / Kiemelő zöld)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS egyéni tulajdonságok (Változók)
   -------------------------------------------------------------------------- */
:root {
    --color-navy: #5B75A7;
    --color-powder: #D5E3F0;
    --color-cream: #E0E2E5;
    --color-sage: #C8DACF;
    --color-teal: #789994;

    --color-dark: #1A2332;
    --color-muted: #5C6B73;
    --color-light-bg: #F0F2F5;
    --color-white: #FFFFFF;

    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'DM Serif Display', serif;
    --font-script: 'Caveat', cursive;
    --font-brand: 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 12px rgba(26, 35, 50, 0.04);
    --shadow-md: 0 12px 32px rgba(26, 35, 50, 0.08);
    --shadow-lg: 0 20px 48px rgba(26, 35, 50, 0.12);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --------------------------------------------------------------------------
   2. Alaphelyzetbe állítás és teljes szélességű külső konténer
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-white);
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

b, strong {
    font-weight: 800;
    font-size: inherit;
}

.outer-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
    overflow: hidden;
    position: relative;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   3. Fejléc / Lebegő navigációs sáv
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 48px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.site-header.is-sticky {
    padding: 10px 48px;
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-white);
    letter-spacing: -0.3px;
    text-transform: none;
}

.logo-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.35);
}

.logo-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-badge-icon:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.28);
}

.svg-logo {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    fill: currentColor;
    transition: var(--transition);
}

.nav-capsule {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    opacity: 0.92;
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-cream);
}

/* Navbar Dropdown for Service Subpages */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 12px 8px;
    min-width: 270px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #F8FAFC;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background: rgba(120, 153, 148, 0.35);
    color: #FFFFFF;
    transform: translateX(4px);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-pill);
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

.btn-nav-cta .arrow-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-teal);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-nav-cta .arrow-circle i {
    transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   4. Hero szekció
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 180px 24px 120px;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 28, 42, 0.45) 0%, rgba(12, 20, 32, 0.68) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.badge-star {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.badge-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
}

.hero-title .script-accent {
    font-family: var(--font-script);
    font-weight: 700;
    color: var(--color-teal);
    font-size: 1.22em;
    padding-left: 0;
    text-shadow: none;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.55;
    text-align: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px 16px 32px;
    background-color: var(--color-teal);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 1.0625rem;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(120, 153, 148, 0.45);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background-color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(91, 117, 167, 0.55);
}

.btn-arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
}

.btn-arrow-circle i {
    transform: rotate(45deg);
}

.hero-arch-notch {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 15;
    pointer-events: none;
}

.hero-arch-notch svg {
    width: 100%;
    height: 100%;
    display: block;
}

.notch-center-dot {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-teal);
    z-index: 20;
}

/* --------------------------------------------------------------------------
   5. Általános segédosztályok és szekció struktúra
   -------------------------------------------------------------------------- */
.section {
    padding: 108px 0;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag-badge-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.tag-badge-group.center-badge {
    justify-content: center;
}

.tag-pill {
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background-color: rgba(0, 0, 0, 0.07);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-dark);
}

.tag-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background-color: rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-dark);
}

.accent-square {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: var(--color-teal);
    margin-left: 6px;
    border-radius: 2px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 600px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.grid-2-col.align-center {
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-teal);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(120, 153, 148, 0.3);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: var(--color-cream);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   6. 01. Szekció: A családi rendszer hatása
   -------------------------------------------------------------------------- */
.section-why-this-matters {
    background-color: var(--color-cream);
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-top-grid {
    display: grid;
    grid-template-columns: 1fr auto 1.25fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 72px;
}

.section-heading-why {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.zigzag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
}

.why-right-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.why-para {
    font-size: 1.0625rem;
    color: var(--color-dark);
    line-height: 1.6;
    font-weight: 500;
}

.why-conclusion {
    font-size: 1.0625rem;
    color: var(--color-dark);
    font-weight: 800;
    margin-top: 4px;
}

.eye-banner-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.eye-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.eye-banner-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: var(--color-white);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* --------------------------------------------------------------------------
   7. 02. Szekció: A módszer (3D kártya körhinta)
   -------------------------------------------------------------------------- */
.section-method {
    background-color: var(--color-cream);
    padding-top: 100px;
    padding-bottom: 120px;
    overflow: hidden;
}

.section-heading-method {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.05;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
}

.method-sub-lead {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    max-width: 680px;
    margin: 0 auto 12px;
    line-height: 1.5;
}

.method-sub-secondary {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 640px;
    margin: 0 auto;
}

.method-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 64px auto 0;
}

.method-cards-track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    perspective: 1200px;
}

.method-3d-card {
    position: absolute;
    width: 340px;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: #0F1926;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    user-select: none;
}

.method-3d-card .card-img-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.method-3d-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-3d-card .card-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.method-3d-card .card-overlay-content {
    position: relative;
    z-index: 10;
    padding: 36px 28px;
    color: var(--color-white);
    background: linear-gradient(180deg, rgba(15, 25, 38, 0.1) 0%, rgba(15, 25, 38, 0.95) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.method-3d-card .card-title {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-white);
}

.method-3d-card .card-text {
    font-size: 0.9375rem;
    opacity: 0.95;
    line-height: 1.5;
    color: #CBD5E1;
}

.method-3d-card.card-left {
    transform: translateX(-280px) rotate(-10deg) scale(0.85);
    z-index: 5;
    opacity: 0.75;
    filter: brightness(0.7) blur(0.5px);
}

.method-3d-card.card-center.active {
    transform: translateX(0) rotate(0deg) scale(1.05);
    z-index: 20;
    opacity: 1;
    filter: brightness(1) blur(0);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.method-3d-card.card-right {
    transform: translateX(280px) rotate(10deg) scale(0.85);
    z-index: 5;
    opacity: 0.75;
    filter: brightness(0.7) blur(0.5px);
}

.method-3d-card.card-hidden {
    transform: translateX(0) scale(0.6);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.slider-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.progress-bar-track {
    width: 140px;
    height: 4px;
    background-color: rgba(26, 35, 50, 0.12);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 33.33%;
    background-color: var(--color-teal);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.arrow-buttons-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.slider-arrow-btn.prev-btn {
    background-color: var(--color-light-bg);
    border: 1px solid rgba(26, 35, 50, 0.12);
    color: var(--color-dark);
}

.slider-arrow-btn.next-btn {
    background-color: var(--color-dark);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(26, 35, 50, 0.2);
}



/* --------------------------------------------------------------------------
   8. 03. Szekció: Mit csinálunk
   -------------------------------------------------------------------------- */
.section-what-we-do {
    background-color: var(--color-cream);
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}

.what-we-do-outer-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
    padding: 0;
}

.what-top-hero-banner {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.hero-bg-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.organic-white-mask {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 240px;
    pointer-events: none;
    z-index: 5;
}

.organic-white-mask svg {
    width: 100%;
    height: 100%;
}

.what-content-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 56px;
    position: relative;
    z-index: 10;
    margin-top: -160px;
    padding: 0 48px 48px 48px;
    align-items: end;
}

.left-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 15;
}

.left-hero-card {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.left-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.left-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 36px 32px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 25, 38, 0.92) 100%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-main-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.right-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 12px;
}

.what-text-bold {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.6;
}

.what-text-normal {
    font-size: 1.03125rem;
    color: var(--color-muted);
    line-height: 1.6;
    font-weight: 500;
}

.pedestal-bars-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
    gap: 6px;
}

.pedestal-bar {
    height: 14px;
    border-radius: var(--radius-pill);
    background-color: var(--color-cream);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pedestal-bar.bar-top {
    width: 82%;
}

.pedestal-bar.bar-bottom {
    width: 64%;
    opacity: 0.75;
}

.right-text-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 28px;
}

.what-text-bold {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.6;
}

.what-text-normal {
    font-size: 1.03125rem;
    color: var(--color-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   9. 04. Szekció: Mit nyújt a családállítás
   -------------------------------------------------------------------------- */
.section-what-you-gain {
    background-color: var(--color-cream);
    padding-top: 100px;
    padding-bottom: 120px;
}

.section-heading-gain {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.05;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
    text-align: center;
}

.center-desc {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 660px;
    color: var(--color-muted);
    font-size: 1.125rem;
}

.gain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gain-card-1to1 {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gain-card-1to1:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(26, 35, 50, 0.1);
}

/* Jobb felső átlós zöld sarok behajtás kiemelés */
.card-corner-tab {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 36px 36px 0;
    border-color: transparent var(--color-teal) transparent transparent;
}

.gain-tag-line {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background-color: rgba(26, 35, 50, 0.05);
    font-size: 0.71875rem;
    font-weight: 800;
    color: var(--color-muted);
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.gain-card-heading {
    font-size: 1.1875rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.gain-card-body {
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. 05. Szekció: A folyamat
   -------------------------------------------------------------------------- */
.section-how-it-works {
    background-color: var(--color-cream);
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}

.how-it-works-outer-card {
    background-color: #E0E2E5;
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(26, 35, 50, 0.04);
}

.how-connecting-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.how-connecting-line svg {
    width: 100%;
    height: 100%;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    position: relative;
    z-index: 5;
}

.how-left-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how-step-card {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 32px 36px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.04);
    transition: var(--transition);
}

.how-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 35, 50, 0.08);
}

.step-square-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: rgba(26, 35, 50, 0.06);
    color: var(--color-dark);
    font-size: 1.125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-card-desc {
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.how-right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 12px;
}

.section-heading-how {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 5.2vw, 4.8rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-top: 16px;
}

.how-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}

.how-guarantee-text {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-dark);
    max-width: 280px;
    line-height: 1.45;
}

/* --------------------------------------------------------------------------
   11. 06. Szekció: Mit tartalmaz
   -------------------------------------------------------------------------- */
.section-whats-included {
    background-color: var(--color-cream);
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.whats-included-outer-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.included-left-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    position: relative;
    box-shadow: 0 16px 44px rgba(26, 35, 50, 0.04);
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.section-heading-included {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 4.8vw, 4.2rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.05;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
}

.included-lead {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.55;
}

.included-subtext {
    font-size: 0.9375rem;
    color: var(--color-muted);
    margin-bottom: 28px;
    line-height: 1.55;
}

.included-price-line {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--color-dark);
}

.included-right-staggered {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-left: 20px;
}

.staggered-pill-item {
    background-color: var(--color-white);
    border-radius: var(--radius-pill);
    padding: 14px 28px 14px 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 6px 24px rgba(26, 35, 50, 0.05);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition);
}

.staggered-pill-item:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 32px rgba(26, 35, 50, 0.1);
}

.staggered-pill-item.step-1 {
    margin-left: 90px;
}

.staggered-pill-item.step-2 {
    margin-left: 50px;
}

.staggered-pill-item.step-3 {
    margin-left: 10px;
}

.staggered-pill-item.step-4 {
    margin-left: 35px;
}

.staggered-pill-item.step-5 {
    margin-left: 0px;
}

.pill-arrow-square {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.hash-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background-color: var(--color-sage);
    color: var(--color-teal);
    font-weight: 800;
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   12. 07. Szekció: Kiemelt banner
   -------------------------------------------------------------------------- */
.section-banner-feature {
    background-color: var(--color-cream);
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}

.banner-feature-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(26, 35, 50, 0.08);
    position: relative;
}

.banner-top-photo {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-top-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.banner-bottom-block {
    background-color: var(--color-teal);
    padding: 72px 32px;
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.watermark-script-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.22;
    display: flex;
    align-items: center;
    justify-content: space-around;
    white-space: nowrap;
    font-family: var(--font-script);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.wm-word {
    transform: rotate(-6deg);
}

.banner-content-relative {
    position: relative;
    z-index: 5;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-main-title {
    font-family: var(--font-primary);
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.banner-main-desc {
    font-size: 1.0625rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 660px;
}

.btn-white-pill {
    background-color: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.btn-white-pill:hover {
    background-color: var(--color-cream);
    transform: translateY(-3px);
}

.btn-white-pill .btn-arrow-circle {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   13. 08. Szekció: Vélemények
   -------------------------------------------------------------------------- */
.section-testimonials {
    background-color: var(--color-cream);
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 64px auto 0;
}

.testimonials-cards-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 380px;
    gap: 32px;
}

.testimonial-card-1to1 {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 52px 36px 32px;
    position: relative;
    box-shadow: 0 12px 36px rgba(26, 35, 50, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-notch-avatar {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-white);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    background-color: var(--color-white);
    z-index: 10;
}

.top-notch-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-1to1.center-active {
    width: 560px;
    z-index: 10;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 52px rgba(26, 35, 50, 0.1);
}

.testimonial-card-1to1.side-peek {
    width: 320px;
    z-index: 5;
    opacity: 0.55;
    transform: scale(0.88);
    filter: blur(0.8px);
}

.testimonial-body-text {
    font-size: 1.03125rem;
    color: var(--color-dark);
    line-height: 1.55;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 24px;
}

.testimonial-body-text.main-quote {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--color-dark);
}

.testimonial-card-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(26, 35, 50, 0.08);
    margin-bottom: 20px;
}

.testimonial-meta-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.author-name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-dark);
}

.author-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-muted);
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 0.9375rem;
    color: var(--color-dark);
}

.rating-info i {
    color: var(--color-dark);
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   14. 09. Szekció: Ki áll a név mögött
   -------------------------------------------------------------------------- */
.section-whos-behind {
    background-color: var(--color-cream);
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}

.whos-behind-dual-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(26, 35, 50, 0.08);
    margin-top: 56px;
    margin-bottom: 48px;
    border: 4px solid var(--color-sage);
}

.whos-photo-col {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.whos-photo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whos-photo-col.photo-left img {
    object-position: center 20%;
}

.whos-photo-col.photo-right img {
    object-position: center 20%;
}

.whos-center-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.center-badge-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: var(--color-white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    border: 3px solid var(--color-white);
    padding: 10px;
    gap: 2px;
    pointer-events: auto;
    transition: var(--transition);
}

.center-badge-circle:hover {
    transform: scale(1.08) rotate(4deg);
    border-color: var(--color-teal);
    color: var(--color-navy);
}

.center-badge-circle .svg-logo {
    width: 32px;
    height: 32px;
}

.brand-badge-label {
    font-family: var(--font-brand);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    text-align: center;
    line-height: 1.1;
    color: var(--color-dark);
    text-transform: none;
}

.btn-see-more-pill {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 24px;
    background-color: var(--color-white);
    color: var(--color-dark);
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.9375rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: var(--transition);
}

.btn-see-more-pill:hover {
    background-color: var(--color-cream);
    transform: translateY(-2px);
}

.arrow-black-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.whos-bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.bio-para-bold {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bio-para {
    font-size: 1.03125rem;
    color: var(--color-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   15. 10. Szekció: Záró felhívás banner & Kapcsolat
   -------------------------------------------------------------------------- */
.section-final-cta {
    background-color: var(--color-cream);
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}

.final-cta-card {
    background: linear-gradient(135deg, #1A2332 0%, #223447 100%);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    box-shadow: 0 20px 48px rgba(26, 35, 50, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

.cta-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 620px;
    z-index: 2;
}

.cta-main-heading {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cta-main-heading .script-accent {
    font-family: var(--font-script);
    font-weight: 700;
    color: #88C4BB;
    font-size: 1.2em;
}

.cta-desc-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 540px;
}

.cta-action-group {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
}

.cta-sub-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
    max-width: 300px;
}

.cta-sub-text em {
    font-style: italic;
    font-weight: 700;
    color: var(--color-white);
}

.cta-avatars-cascade {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    z-index: 2;
}

.avatar-box {
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    background-color: var(--color-light-bg);
    transition: var(--transition);
}

.avatar-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-lg {
    width: 220px;
    height: 220px;
    border-radius: 32px;
}

.avatar-md {
    width: 140px;
    height: 140px;
    border-radius: 24px;
}

.avatar-sm {
    width: 80px;
    height: 80px;
    border-radius: 18px;
}

/* --------------------------------------------------------------------------
   16. Lábléc
   -------------------------------------------------------------------------- */
.site-footer-standalone {
    background-color: var(--color-cream);
    padding-top: 60px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(91, 117, 167, 0.15);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-dark);
    text-transform: none;
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-navy);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(31, 54, 87, 0.18);
}

.footer-logo .logo-mark svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.footer-logo:hover .logo-mark {
    transform: rotate(6deg) scale(1.08);
    background-color: var(--color-teal);
    color: var(--color-white);
}

.footer-logo span {
    font-family: var(--font-brand);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.3px;
    text-transform: none;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-powder);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-muted);
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-links {
    display: flex;
    gap: 20px;
}

/* Reszponzív szabályok */
@media (max-width: 1024px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .method-cards-grid {
        grid-template-columns: 1fr;
    }

    .gain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .what-main-content-grid {
        grid-template-columns: 1fr;
    }

    .nav-capsule {
        display: none;
    }

    .final-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .cta-left-content {
        align-items: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .gain-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }
}

/* --------------------------------------------------------------------------
   17. Árak és Szolgáltatások Kártyák (Pricing Slider Carousel)
   -------------------------------------------------------------------------- */
.pricing-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.pricing-cards-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 16px 4px 32px 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pricing-cards-track::-webkit-scrollbar {
    display: none;
}

.price-card-item {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    scroll-snap-align: start;
    background: var(--color-white);
    border: 1px solid rgba(120, 153, 148, 0.25);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.price-card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-teal);
}

.price-card-item.featured {
    background: linear-gradient(145deg, #1A2332 0%, #253347 100%);
    color: var(--color-white);
    border-color: var(--color-teal);
}

.price-card-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-light-bg);
    color: var(--color-teal);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    width: fit-content;
}

.price-card-item.featured .price-card-tag {
    background: rgba(120, 153, 148, 0.25);
    color: var(--color-powder);
}

.price-card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.price-card-item.featured .price-card-title {
    color: var(--color-white);
}

.price-amount-box {
    margin-bottom: 20px;
}

.price-val {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--color-teal);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.price-card-item.featured .price-val {
    color: #A3C9C1;
}

.price-unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-left: 6px;
    white-space: nowrap;
}

.price-card-item.featured .price-unit {
    color: rgba(255, 255, 255, 0.75);
}

.price-card-desc {
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

.price-card-item.featured .price-card-desc {
    color: rgba(255, 255, 255, 0.85);
}

.price-card-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   18. Gyakran Ismételt Kérdések (FAQ Grid)
   -------------------------------------------------------------------------- */
.faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.faq-card-item {
    background: var(--color-white);
    border: 1px solid rgba(91, 117, 167, 0.15);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-card-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-teal);
}

.faq-question-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-question-icon {
    color: var(--color-teal);
    font-size: 1.1rem;
    margin-top: 2px;
}

.faq-answer-text {
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   19. Kapcsolati Kártyák (Contact Grid)
   -------------------------------------------------------------------------- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 28px;
    width: 100%;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 20px 14px;
    text-align: center;
    color: var(--color-white);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    font-size: 1.1rem;
    color: #88C4BB;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
}

.contact-val a {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 4px;
}


@media (max-width: 1024px) {
    .price-card-item {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }

    .faq-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .price-card-item {
        flex: 0 0 100%;
        min-width: 260px;
    }
}

/* ==========================================================================
   MOBILNÉZET – @media (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

    /* --- Alap --- */
    body {
        padding-bottom: 84px;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    /* --- Outer wrapper: ne takarja el a fixed headert --- */
    .outer-wrapper {
        overflow: visible;
    }

    /* --- Header – sticky top, centered, glassmorphism --- */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0;
        padding-top: env(safe-area-inset-top, 0px);
        z-index: 900;
        background: rgba(22, 34, 52, 0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 24px rgba(10, 18, 30, 0.18);
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        padding: 0 20px;
        height: 60px;
    }

    .nav-capsule {
        display: none;
    }

    /* A desktop CTA gomb rejtve; csak a hamburger látszik */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-actions .btn-nav-cta {
        display: none;
    }

    /* --- Hero – Mobil képpozicionálás & Vágás --- */
    .hero-section {
        min-height: 85vh;
        min-height: 85svh;
        padding: 120px 20px 60px;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .hero-bg-image {
        background-size: cover;
        background-position: center 30% !important;
        background-repeat: no-repeat;
        filter: brightness(0.85) contrast(1.08);
    }

    .hero-bg-overlay {
        background: linear-gradient(180deg,
                rgba(15, 23, 42, 0.30) 0%,
                rgba(15, 23, 42, 0.65) 50%,
                rgba(15, 23, 42, 0.94) 100%);
    }

    .hero-content {
        text-align: left;
        align-items: flex-start;
        max-width: 100%;
    }

    .hero-tag-badge {
        font-size: 0.75rem;
        padding: 6px 14px 6px 10px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .badge-star {
        width: 22px;
        height: 22px;
        padding: 3px;
    }

    .badge-arrow {
        width: 18px;
        height: 18px;
    }

    .hero-title {
        font-size: clamp(2.6rem, 10vw, 3.4rem);
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 32px;
    }

    .hero-cta {
        gap: 16px;
    }

    .hero-arch-notch {
        height: 60px;
    }

    /* --- Szekció 01: Miért számít --- */
    .section-why-this-matters {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .why-top-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
        margin-bottom: 40px;
    }

    .zigzag-wrapper {
        display: none;
    }

    .section-heading-why {
        font-size: clamp(2.2rem, 8vw, 3rem);
        letter-spacing: -1px;
    }

    .eye-banner-wrapper {
        height: 220px;
        border-radius: 20px;
    }

    /* --- Szekció 02: Módszer slider --- */
    .section-method {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .section-heading-method {
        font-size: clamp(2rem, 7vw, 2.8rem);
        letter-spacing: -0.8px;
    }

    .method-slider-wrapper {
        margin-top: 32px;
    }

    .method-3d-card {
        width: min(320px, calc(100vw - 48px));
        height: 440px;
        border-radius: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    }

    .method-3d-card .card-img-wrapper img {
        object-fit: cover;
        object-position: center 25%;
        filter: brightness(0.92) contrast(1.05);
    }

    .method-3d-card .card-overlay-content {
        padding: 28px 22px;
    }

    .method-3d-card .card-title {
        font-size: 1.85rem;
    }

    .method-3d-card.card-left {
        transform: translateX(-130px) scale(0.82) !important;
        opacity: 0.25 !important;
    }

    .method-3d-card.card-right {
        transform: translateX(130px) scale(0.82) !important;
        opacity: 0.25 !important;
    }

    .method-3d-card.card-center.active {
        transform: translateX(0) scale(1) !important;
        opacity: 1 !important;
    }

    /* --- Szekció 03: Szolgáltatások --- */
    .section-what-we-do {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .what-top-hero-banner {
        height: 260px;
        border-radius: 24px;
        overflow: hidden;
    }

    .hero-bg-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        filter: brightness(0.88) contrast(1.05);
    }

    .what-content-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: -80px;
        padding: 0 16px 32px;
    }

    .left-card-wrapper {
        width: 100%;
    }

    .left-hero-card {
        height: 340px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
    }

    .left-hero-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
    }

    .card-main-title {
        font-size: 2rem;
        letter-spacing: -0.8px;
    }

    .right-text-content {
        padding-top: 28px;
        gap: 16px;
    }

    .pedestal-bars-wrapper {
        display: none;
    }

    /* --- Szekció 04: Mit nyújt --- */
    .section-what-you-gain {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .section-heading-gain {
        font-size: clamp(2rem, 7vw, 2.8rem);
        letter-spacing: -0.8px;
    }

    .center-desc {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    .gain-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- Szekció 05: Árak --- */
    .section-whats-included {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .pricing-slider-wrapper {
        margin-top: 28px;
    }

    /* --- Szekció 06: GYIK --- */
    .section-faq {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .faq-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-card-item {
        padding: 24px 20px;
        border-radius: 16px;
    }

    /* --- Szekció 07: Vélemények --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- Szekció 08: Rólam --- */
    .whos-grid,
    .whos-main-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .whos-photo-col {
        width: 100%;
        height: 340px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 28px;
    }

    .whos-photo-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
    }

    .whos-bio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .center-badge-circle {
        width: 72px;
        height: 72px;
    }

    .center-badge-circle .svg-logo {
        width: 28px;
        height: 28px;
    }

    .brand-badge-label {
        font-size: 0.55rem;
    }

    /* --- Szekció 10: Záró CTA --- */
    .section-final-cta {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .final-cta-card {
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding: 32px 24px;
        border-radius: 24px;
    }

    .cta-main-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .cta-desc-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .contact-info-card {
        padding: 16px 18px;
    }

    .cta-action-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cta-avatars-cascade {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .avatar-lg {
        width: 140px;
        height: 140px;
        border-radius: 20px;
    }

    .avatar-md {
        width: 100px;
        height: 100px;
        border-radius: 16px;
    }

    .avatar-sm {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }

    /* --- Lábléc --- */
    .site-footer-standalone {
        padding-top: 40px;
        padding-bottom: 36px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .footer-socials {
        margin-top: 4px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .legal-links {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    /* --- Tag badge csoport --- */
    .tag-badge-group {
        margin-bottom: 16px;
    }

    .section-header.center {
        margin-bottom: 0;
    }

    /* --- Btn főnézet --- */
    .btn-hero-primary {
        padding: 13px 22px 13px 22px;
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   BOTTOM NAVIGATION BAR – mobil app navbar
   ========================================================================== */

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        height: 68px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1px solid rgba(91, 117, 167, 0.12);
        box-shadow: 0 -6px 32px rgba(26, 35, 50, 0.08);
        align-items: stretch;
        justify-content: space-around;
    }

    .mob-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        flex: 1;
        padding: 6px 4px 4px;
        text-decoration: none;
        color: var(--color-muted);
        transition: color 0.2s ease;
        position: relative;
    }

    .mob-nav-item.active {
        color: var(--color-navy);
    }

    .mob-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 28px;
        height: 3px;
        background-color: var(--color-navy);
        border-radius: 0 0 3px 3px;
    }

    .mob-nav-icon {
        font-size: 1.25rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
    }

    .mob-nav-label {
        font-family: var(--font-brand);
        font-size: 0.625rem;
        font-weight: 600;
        letter-spacing: 0.2px;
        line-height: 1;
        text-transform: none;
    }

    /* Középső kiemelkedő logo gomb */
    .mob-nav-item.mob-nav-center {
        flex: 0 0 72px;
        padding: 0;
        position: relative;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
    }


    .mob-nav-item.mob-nav-center::before {
        display: none;
    }

    .mob-nav-center-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: var(--color-navy);
        color: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 11px;
        box-shadow: 0 6px 20px rgba(91, 117, 167, 0.42);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        margin-top: -16px;
        border: 3px solid var(--color-white);
    }

    .mob-nav-center-icon svg {
        width: 26px;
        height: 26px;
        fill: #ffffff;
        display: block;
        color: #ffffff;
    }

    /* Logo img fehér filterrel a bottom nav center gombban */
    .mob-nav-logo-img {
        width: 26px;
        height: 26px;
        display: block;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .mob-nav-item.mob-nav-center:active .mob-nav-center-icon,
    .mob-nav-item.mob-nav-center.active .mob-nav-center-icon {
        transform: scale(0.94);
        box-shadow: 0 4px 14px rgba(91, 117, 167, 0.32);
        background: var(--color-teal);
    }

    .mob-nav-item:not(.mob-nav-center):active {
        color: var(--color-navy);
    }

    /* --- Hero arch notch fix mobilon --- */
    .hero-arch-notch {
        height: 32px;
    }

    /* --- Testimonials mobilon: csak center kártya látszik --- */
    .testimonials-carousel-wrapper {
        margin-top: 8px;
        /* A 48px-ből áttettünk 40-et a paddingba, hogy az összkép ne változzon */
        padding-top: 40px;
        /* Ez a belső tér ad helyet a felfelé kilógó profilképnek */
        overflow: hidden;
    }

    .testimonials-cards-track {
        min-height: auto;
        gap: 0;
        position: relative;
    }

    .testimonial-card-1to1.side-peek {
        display: none;
    }

    .testimonial-card-1to1.center-active {
        width: 100%;
        max-width: 100%;
        transform: none;
        box-shadow: 0 12px 36px rgba(26, 35, 50, 0.08);
    }

    .testimonial-body-text.main-quote {
        font-size: 1rem;
    }

    /* --- Whos-behind dual card mobilon --- */
    .whos-behind-dual-card {
        display: flex;
        flex-direction: column;
        height: auto;
        margin-top: 36px;
        position: relative;
    }

    .whos-photo-col {
        width: 100%;
        height: 260px;
        flex-shrink: 0;
        /* A margin-bottom-ot kivettük, így a két kép tökéletesen összeér */
    }

    .whos-center-divider {
        position: absolute;
        /* Újra "lebegő" állapotba tesszük */
        top: 50%;
        /* Függőlegesen pontosan középre toljuk */
        left: 0;
        transform: translateY(-50%);
        /* Y tengelyen korrigáljuk a középpontot */
        width: 100%;
        height: 0;
        /* Nem foglal fizikai teret */
        justify-content: center;
        align-items: center;
        background-color: transparent;
        /* Levesszük a krém színű hátteret */
        z-index: 10;
    }

    /* --- Staggered pill items mobilon --- */
    .staggered-pill-item.step-1,
    .staggered-pill-item.step-2,
    .staggered-pill-item.step-3,
    .staggered-pill-item.step-4,
    .staggered-pill-item.step-5 {
        margin-left: 0;
    }

    /* --- Banner feature card mobilon --- */
    .banner-top-photo {
        height: 220px;
    }

    .banner-bottom-block {
        padding: 48px 24px;
    }

    .banner-main-title {
        font-size: 2rem;
        letter-spacing: -0.8px;
    }

    .watermark-script-container {
        font-size: 2rem;
    }
}

/* ==========================================================================
   HAMBURGER MENU DRAWER – mobil app oldal panel
   ========================================================================== */

.mob-hamburger-btn {
    display: none;
}

.mob-drawer-overlay {
    display: none;
}

.mob-drawer {
    display: none;
}

@media (max-width: 768px) {

    /* Hamburger gomb */
    .mob-hamburger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.32);
        color: var(--color-white);
        font-size: 1.1rem;
        cursor: pointer;
        transition: background 0.2s ease;
        flex-shrink: 0;
    }

    .mob-hamburger-btn:hover,
    .mob-hamburger-btn.open {
        background: rgba(255, 255, 255, 0.28);
    }

    /* Sötét overlay háttér */
    .mob-drawer-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 99990;
        background: rgba(10, 18, 30, 0.65);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mob-drawer-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    /* Slide-in drawer panel */
    .mob-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        width: min(88vw, 340px);
        height: 100dvh;
        height: 100vh;
        z-index: 99999;
        background: #FFFFFF;
        box-shadow: -12px 0 48px rgba(26, 35, 50, 0.25);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        overflow-y: auto;
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }

    .mob-drawer.open {
        transform: translateX(0);
    }

    /* Drawer fejléc */
    .mob-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: max(20px, env(safe-area-inset-top, 20px)) 24px 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: #0A121E;
        color: #FFFFFF;
        flex-shrink: 0;
    }

    .mob-drawer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--color-white);
        font-family: var(--font-brand);
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
    }

    .mob-drawer-logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        color: var(--color-white);
        flex-shrink: 0;
    }

    .mob-drawer-logo-icon svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        display: block;
    }

    .mob-drawer-close {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.2s ease;
    }

    .mob-drawer-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Nav linkek a drawerben */
    .mob-drawer-nav {
        display: flex;
        flex-direction: column;
        padding: 12px 0;
        border-bottom: 1px solid rgba(26, 35, 50, 0.07);
        flex-shrink: 0;
    }

    .mob-drawer-nav-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 24px;
        color: var(--color-dark);
        font-family: var(--font-primary);
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.15s ease, color 0.15s ease;
        border-radius: 0;
    }

    .mob-drawer-nav-item:hover,
    .mob-drawer-nav-item:active {
        background: var(--color-light-bg);
        color: var(--color-navy);
    }

    .mob-drawer-nav-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--color-light-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        color: var(--color-navy);
        flex-shrink: 0;
        transition: background 0.15s ease;
    }

    .mob-drawer-nav-item:hover .mob-drawer-nav-icon {
        background: var(--color-powder);
    }

    /* Kapcsolati infó blokk */
    .mob-drawer-contact {
        padding: 20px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
    }

    .mob-drawer-contact-title {
        font-family: var(--font-brand);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--color-muted);
        margin-bottom: 4px;
    }

    .mob-drawer-contact-row {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--color-dark);
        font-size: 0.9375rem;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.15s ease;
    }

    .mob-drawer-contact-row:hover {
        color: var(--color-navy);
    }

    .mob-drawer-contact-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--color-powder);
        color: var(--color-navy);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    /* CTA gomb a drawerben */
    .mob-drawer-cta {
        padding: 20px 24px;
        margin-top: auto;
        border-top: 1px solid rgba(26, 35, 50, 0.07);
    }

    .mob-drawer-cta .btn-hero-primary {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    /* Szociális ikonok */
    .mob-drawer-socials {
        display: flex;
        gap: 10px;
        padding: 16px 24px 24px;
    }

    .mob-drawer-social-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--color-light-bg);
        color: var(--color-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        text-decoration: none;
        transition: background 0.15s ease, color 0.15s ease;
    }

    .mob-drawer-social-btn:hover {
        background: var(--color-powder);
        color: var(--color-navy);
    }
}

/* ==========================================================================
   BOTTOM NAVIGATION BAR – Mobil App Bottom Bar
   ========================================================================== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        height: 68px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1px solid rgba(120, 153, 148, 0.2);
        box-shadow: 0 -6px 32px rgba(15, 23, 42, 0.12);
        align-items: stretch;
        justify-content: space-around;
    }

    .mob-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        flex: 1;
        padding: 6px 4px 4px;
        text-decoration: none;
        color: #64748B;
        transition: color 0.2s ease;
        position: relative;
    }

    .mob-nav-item.active {
        color: #789994;
        font-weight: 700;
    }

    .mob-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 28px;
        height: 3px;
        background-color: #789994;
        border-radius: 0 0 3px 3px;
    }

    .mob-nav-icon {
        font-size: 1.2rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
    }

    .mob-nav-label {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.2px;
        line-height: 1;
    }

    .mob-nav-item.mob-nav-center {
        flex: 0 0 72px;
        padding: 0;
        position: relative;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
    }

    .mob-nav-item.mob-nav-center::before {
        display: none;
    }

    .mob-nav-center-icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: linear-gradient(135deg, #789994 0%, #5c7974 100%);
        color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 11px;
        box-shadow: 0 8px 24px rgba(120, 153, 148, 0.45);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        margin-top: -16px;
        border: 3px solid #FFFFFF;
    }
}

/* ==========================================================================
   16. AUTHENTIC BOOKING WIZARD, STICKY HEADER & WARM ORGANIC STYLES
   ========================================================================== */

html, body {
    background-color: #0A121E !important;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Universal Header & Navigation Overrides */
.site-header {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 48px;
}

.booking-page-wrapper,
.blog-page-wrapper,
.blog-show-wrapper,
.outer-wrapper {
    background: #0A121E !important;
    color: #334155;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.booking-hero-banner {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #0A121E 0%, #132032 100%);
    text-align: center;
    position: relative;
}

/* Location pill bar */
.booking-location-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(120, 153, 148, 0.2);
    border: 1px solid rgba(120, 153, 148, 0.4);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
}

/* Wizard Steps Bar */
.booking-wizard-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.wizard-step-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94A3B8;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wizard-step-pill.active {
    background: rgba(120, 153, 148, 0.3);
    border-color: #789994;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(120, 153, 148, 0.3);
}

.wizard-step-pill.completed {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
    color: #34D399;
}

.wizard-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.wizard-step-pill.active .wizard-step-num {
    background: #789994;
    color: #FFFFFF;
}

.wizard-step-pill.completed .wizard-step-num {
    background: #10B981;
    color: #FFFFFF;
}

/* Warm Card Containers (Matching Homepage) */
.warm-card-box {
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    margin-bottom: 28px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Form Row Grid */
.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Service Selector Cards */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
}

.service-select-card {
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    padding: 22px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

.service-select-card:hover {
    border-color: #789994;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(120, 153, 148, 0.15);
    background: #FFFFFF;
}

.service-select-card.selected {
    border-color: #789994;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F8F7 100%);
    box-shadow: 0 12px 30px rgba(120, 153, 148, 0.2);
}

.service-select-card .radio-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #CBD5E1;
    position: absolute;
    top: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.service-select-card.selected .radio-check {
    border-color: #789994;
    background: #789994;
}

.service-select-card.selected .radio-check::after {
    content: '✓';
    color: white;
    font-weight: 900;
    font-size: 12px;
}

/* Sticky Booking Summary Card */
.booking-summary-sticky {
    position: sticky;
    top: 100px;
    background: #FFFFFF;
    border: 2px solid #789994;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    max-width: 100%;
    box-sizing: border-box;
}

/* Warm Form Inputs */
.warm-input {
    width: 100%;
    padding: 14px 18px;
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    color: #0F172A;
    font-size: 15px;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.warm-input:focus {
    outline: none;
    border-color: #789994;
    box-shadow: 0 0 0 4px rgba(120, 153, 148, 0.15);
    background: #FFFFFF;
}

/* Responsive grid layout for booking page */
.booking-main-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
    max-width: 1140px;
    margin: 24px auto 80px;
    padding: 0 24px;
    position: relative;
    z-index: 20;
    box-sizing: border-box;
}

/* MOBILE RESPONSIVE OVERRIDES (<= 768px) */
@media (max-width: 768px) {
    html, body, .booking-outer-wrapper, .outer-wrapper, .booking-page-wrapper, .blog-page-wrapper, .blog-show-wrapper {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding-bottom: 0 !important;
        background-color: #0A121E !important;
    }

    /* FOOTER TAKES THE BOTTOM PADDING FOR MOBILE BOTTOM NAV */
    footer {
        padding-bottom: max(100px, env(safe-area-inset-bottom, 100px)) !important;
        background: #0F172A !important;
    }

    /* 100% Sticky Mobile Header at Top */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 10000 !important;
        padding: max(10px, env(safe-area-inset-top, 10px)) 16px 10px 16px !important;
        background: rgba(10, 18, 30, 0.96) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    /* Fixed Bottom Nav Bar at Bottom (Exact Sage Green Styling) */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        height: 68px !important;
        padding-bottom: env(safe-area-inset-bottom, 0px) !important;
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border-top: 1px solid rgba(120, 153, 148, 0.25) !important;
        box-shadow: 0 -6px 32px rgba(15, 23, 42, 0.12) !important;
    }

    .mob-nav-item {
        color: #64748B !important;
    }

    .mob-nav-item.active {
        color: #789994 !important;
        font-weight: 800 !important;
    }

    .mob-nav-item.active::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 28px !important;
        height: 3px !important;
        background-color: #789994 !important;
        border-radius: 0 0 3px 3px !important;
    }

    .mob-nav-item.mob-nav-center .mob-nav-center-icon {
        width: 52px !important;
        height: 52px !important;
        border-radius: 18px !important;
        background: #789994 !important;
        color: #FFFFFF !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 8px 24px rgba(120, 153, 148, 0.45) !important;
        border: 3px solid #FFFFFF !important;
    }

    .booking-hero-banner, section#hero {
        padding-top: max(90px, env(safe-area-inset-top, 90px)) !important;
        padding-bottom: 40px !important;
    }

    .booking-hero-banner h1 {
        font-size: 26px !important;
        margin-bottom: 8px !important;
    }

    .booking-location-pill {
        display: block !important;
        width: 100% !important;
        font-size: 11px !important;
        padding: 8px 12px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .booking-wizard-steps {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 4px !important;
        margin-top: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .wizard-step-pill {
        padding: 8px 2px !important;
        font-size: 10px !important;
        justify-content: center !important;
        gap: 3px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }

    .wizard-step-num {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
    }

    .booking-main-grid {
        grid-template-columns: 1fr !important;
        margin-top: 16px !important;
        padding: 0 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .warm-card-box {
        padding: 16px 12px !important;
        border-radius: 18px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .booking-form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .service-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .service-select-card {
        padding: 14px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .booking-summary-sticky {
        position: static !important;
        margin-top: 16px !important;
        padding: 16px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    #calendarGrid {
        display: grid !important;
        grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
        gap: 3px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    #calendarGrid button {
        width: 100% !important;
        min-width: 0 !important;
        padding: 7px 0 !important;
        font-size: 11px !important;
        box-sizing: border-box !important;
        border-radius: 6px !important;
    }

    #calendarMonthTitle {
        font-size: 14px !important;
    }

    #prevMonth, #nextMonth {
        padding: 6px 8px !important;
        font-size: 11px !important;
    }
}

/* ==========================================================================
   17. FUNKCIONÁLIS SÜTI (COOKIE CONSENT) BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 84px;
    left: 24px;
    right: 24px;
    max-width: 920px;
    margin: 0 auto;
    z-index: 100000;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(120, 153, 148, 0.4);
    border-radius: 24px;
    padding: 20px 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    transform: translateY(120px);
    opacity: 0;
    box-sizing: border-box;
}

.cookie-banner.show {
    display: block !important;
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(120, 153, 148, 0.2);
    color: #789994;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cookie-banner-title {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 4px;
}

.cookie-banner-desc {
    font-size: 13.5px;
    color: #CBD5E1;
    margin: 0;
    line-height: 1.5;
}

.cookie-link {
    color: #789994;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-primary {
    background: #789994;
    color: #FFFFFF;
    padding: 12px 22px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(120, 153, 148, 0.4);
    white-space: nowrap;
}

.btn-cookie-primary:hover {
    background: #5c7974;
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-cookie-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 80px;
        left: 12px;
        right: 12px;
        padding: 16px 18px;
        border-radius: 20px;
    }
    .cookie-banner-container {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: space-between;
    }
    .btn-cookie-primary, .btn-cookie-secondary {
        flex: 1;
        padding: 10px 12px;
        font-size: 12.5px;
        text-align: center;
    }
}

/* ==========================================================================
   18. GYIK (FAQ) ACCORDION KÁRTYÁK STÍLUSAI
   ========================================================================== */
.faq-item-card {
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.faq-item-card:hover {
    border-color: #789994;
    box-shadow: 0 8px 24px rgba(120, 153, 148, 0.15);
}

.faq-question-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-size: 16.5px;
    font-weight: 800;
    color: #0F172A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: inherit;
}

.faq-answer-box {
    display: none;
    padding: 0 24px 22px 24px;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    border-top: 1px dashed #E2E8F0;
    margin-top: 4px;
    padding-top: 16px;
}

.faq-item-card.open .faq-answer-box {
    display: block;
}

.faq-item-card.open {
    background: #FAFDFD;
    border-color: #789994;
}

/* --------------------------------------------------------------------------
   19. Módszertan Összehasonlító Kártya Mobil-Reszponzív Osztályok
   -------------------------------------------------------------------------- */
.method-comparison-box {
    margin-top: 40px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 24px;
    padding: 40px;
    color: white;
}

.method-comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .method-comparison-box {
        padding: 24px 18px !important;
        margin-top: 24px !important;
        border-radius: 20px !important;
    }

    .method-comparison-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        margin-bottom: 24px !important;
    }

    .method-comparison-header h3 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .method-comparison-btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}

/* Subpage Content Headings Enhancement */
.subpage-content h1, .blog-body h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: #0F172A;
    margin: 36px 0 18px;
    line-height: 1.25;
}
.subpage-content h2, .blog-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: #0F172A;
    margin: 32px 0 16px;
    line-height: 1.3;
}
.subpage-content h3, .blog-body h3 {
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    color: #0F172A;
    margin: 28px 0 14px;
    line-height: 1.35;
}
.subpage-content h4, .blog-body h4 {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 800;
    color: #0F172A;
    margin: 24px 0 12px;
}

/* Premium Glassy Hero Breadcrumb Pill */
.hero-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    box-sizing: border-box;
}

.hero-breadcrumb-pill .bc-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hero-breadcrumb-pill .bc-link:hover {
    color: #FFFFFF;
}

.hero-breadcrumb-pill .bc-sep {
    opacity: 0.4;
    font-size: 11px;
}

.hero-breadcrumb-pill .bc-active {
    color: #789994;
    font-weight: 700;
}

@media (max-width: 600px) {
    .hero-breadcrumb-pill {
        padding: 6px 14px;
        font-size: 12px;
        gap: 6px;
        margin-bottom: 16px;
        max-width: calc(100vw - 32px);
    }
    .hero-breadcrumb-pill .bc-active {
        max-width: 130px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        vertical-align: bottom;
    }
}

/* --------------------------------------------------------------------------
   21. Footer Credit & Animated Pulsing Heart
   -------------------------------------------------------------------------- */
.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94A3B8;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-credit a {
    color: #CBD5E1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-credit a:hover {
    color: #789994;
    text-shadow: 0 0 10px rgba(120, 153, 148, 0.4);
}

.footer-credit .heart {
    display: inline-block;
    color: #EF4444;
    font-size: 15px;
    line-height: 1;
    margin: 0 2px;
    animation: footerHeartBeat 1.4s infinite ease-in-out;
    transform-origin: center center;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.45));
}

@keyframes footerHeartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.32);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.22);
    }
    70% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}