/* ==========================================================================
   Tengerész Gábor — Teljes szélességű CSS dizájnrendszer (Új színpaletta)
   Színpaletta a megadott kép alapján:
   - SÖTÉT ALAP (Dark Base): #22252C
   - SÖTÉT KÉK (Navy Blue): #1F3657
   - KÖZÉP SZÜRKE (Mid-Grey): #6B717C
   - VILÁGOS SZÖVEG (Light Text): #E0E2E5
   - EZÜST RÉSZLET (Silver Accent): #A8AEB9
   - VILÁGOSABB SZÜRKE (Lighter Grey): #C5C9CD
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS egyéni tulajdonságok (Változók)
   -------------------------------------------------------------------------- */
:root {
    --color-navy: #1F3657;
    --color-powder: #C5C9CD;
    --color-cream: #E0E2E5;
    --color-sage: #A8AEB9;
    --color-teal: #1F3657;
    
    --color-dark: #22252C;
    --color-muted: #6B717C;
    --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(34, 37, 44, 0.04);
    --shadow-md: 0 12px 32px rgba(34, 37, 44, 0.08);
    --shadow-lg: 0 20px 48px rgba(34, 37, 44, 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;
}

.svg-logo {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

.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.2px;
    text-transform: none;
}

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

.logo-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    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: 6px;
    transition: var(--transition);
}

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

.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);
}

.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: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.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(31, 54, 87, 0.45);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background-color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(31, 54, 87, 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(31, 54, 87, 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: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--color-white);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   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: var(--color-light-bg);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    transition: all 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(0,0,0,0) 0%, rgba(15, 25, 38, 0.92) 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.9;
    line-height: 1.45;
}

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

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

.method-3d-card.card-right {
    transform: translateX(280px) rotate(10deg) scale(0.85);
    z-index: 5;
    opacity: 0.65;
    filter: blur(1.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(34, 37, 44, 0.12);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 33.33%;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: transform 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 0.04);
    transition: var(--transition);
}

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

.step-square-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: rgba(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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(34, 37, 44, 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: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--color-white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-script);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-dark);
    border: 3px solid var(--color-white);
}

.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
   -------------------------------------------------------------------------- */
.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;
}

.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;
}

.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;
}

.avatar-box {
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(34, 37, 44, 0.08);
    background-color: var(--color-light-bg);
    transition: var(--transition);
}

.avatar-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(34, 37, 44, 0.14);
}

.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(31, 54, 87, 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; }
}

@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; }

    /* Mobil csoportos kép és hero háttér igazítás - Patika szintű megjelenés */
    .hero-section {
        min-height: 440px !important;
        padding-top: 130px !important;
        padding-bottom: 60px !important;
    }

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

    .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%) !important;
    }

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

/* 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;
    }
}
