/* ============================================
   ÉLETÚT COACHING - Hungarian Coach Template
   Based on coachingwithkrista.com screenshot
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --color-teal: #1a9b8a;
    --color-teal-dark: #158a7a;
    --color-teal-light: #e8f5f3;
    --color-raspberry: #a8336b;
    --color-raspberry-dark: #8f2a58;
    --color-raspberry-light: #f5e8ef;
    --color-gold: #d4a843;
    --color-gold-dark: #c49a3a;
    --color-gold-light: #f9f1d8;
    --color-cream: #f5f0eb;
    --color-cream-dark: #ebe4dc;
    --color-white: #ffffff;
    --color-text: #2d2d2d;
    --color-text-light: #555555;
    --color-text-muted: #888888;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 19.2px;
}

/* Sticky fejléc kompenzálása horgonyugráskor */
section[id] {
    scroll-margin-top: 96px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 28.8px;
}

/* ---- Placeholder Images ---- */
.placeholder-img {
    background: linear-gradient(135deg, #ddd5cc 0%, #e8e0d8 50%, #ddd5cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 15.6px;
    font-weight: 500;
    letter-spacing: 0.6px;
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.placeholder-avatar {
    width: 67.2px;
    height: 67.2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d0c8c0 0%, #e0d8d0 100%);
    margin: 0 auto 19.2px;
    border: 3.6px solid var(--color-white);
    box-shadow: 0 2.4px 9.6px rgba(0,0,0,0.08);
}

.avatar-img {
    width: 67.2px;
    height: 67.2px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 19.2px;
    border: 3.6px solid var(--color-white);
    box-shadow: 0 2.4px 9.6px rgba(0,0,0,0.08);
}

/* ---- Buttons (GOLD / SÁRGA - Krista stílus) ---- */
.btn-primary {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 19.2px 38.4px;
    border-radius: 3.6px;
    font-size: 16.8px;
    font-weight: 700;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 3.6px 14.4px rgba(212, 168, 67, 0.25);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2.4px);
    box-shadow: 0 7.2px 28.8px rgba(212, 168, 67, 0.35);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-gold);
    padding: 16.8px 36px;
    border-radius: 3.6px;
    font-size: 16.8px;
    font-weight: 700;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    border: 2.4px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ---- Divider Dots ---- */
.divider-dots {
    display: flex;
    gap: 6px;
    margin: 21.6px 0;
}

.divider-dots.center { justify-content: center; }

.divider-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-teal);
}

.divider-dots span:nth-child(2),
.divider-dots span:nth-child(5),
.divider-dots span:nth-child(8) {
    background: var(--color-raspberry);
}

/* Színes hátterű szekciók pötty-színsorrendjei */
.podcast-section .divider-dots span:nth-child(n) {
    background: var(--color-teal);
}

.podcast-section .divider-dots span:nth-child(3n+2) {
    background: #e08db4;
}

.workshop-section .divider-dots span:nth-child(n) {
    background: var(--color-raspberry);
}

.workshop-section .divider-dots span:nth-child(3n+2) {
    background: var(--color-cream);
}

/* ---- Play Button ---- */
.play-button {
    width: 86.4px;
    height: 86.4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 4.8px 24px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 7.2px 33.6px rgba(0,0,0,0.2);
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 24px solid var(--color-gold);
    border-top: 14.4px solid transparent;
    border-bottom: 14.4px solid transparent;
    margin-left: 6px;
}

.play-button-small {
    width: 57.6px;
    height: 57.6px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2.4px 14.4px rgba(0,0,0,0.12);
    transition: var(--transition);
}

.play-button-small:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-small .play-triangle {
    border-left: 16.8px solid var(--color-gold);
    border-top: 10.8px solid transparent;
    border-bottom: 10.8px solid transparent;
    margin-left: 3.6px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--color-white);
    padding: 16.8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1.2px 4.8px rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 28.8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 31.2px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1;
    font-style: italic;
    letter-spacing: -0.6px;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 10.8px;
    font-weight: 700;
    letter-spacing: 4.2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 2.4px;
}

.nav-links {
    display: flex;
    gap: 38.4px;
}

.nav-links a {
    font-size: 15.6px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    padding-bottom: 4.8px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.4px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 12px 26.4px;
    border-radius: 3.6px;
    font-size: 14.4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.96px;
    box-shadow: 0 2.4px 9.6px rgba(212, 168, 67, 0.2);
}

.nav-cta:hover {
    background: var(--color-gold-dark);
    box-shadow: 0 4.8px 16.8px rgba(212, 168, 67, 0.3);
}

.nav-cta-alt {
    display: none;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 9.6px 19.2px;
    border-radius: 3.6px;
    font-size: 13.2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.96px;
}

/* ============================================
   HERO SECTION - FULL BACKGROUND IMAGE
   ============================================ */
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero háttérkép saját rétegen – teljesen statikus */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero-bg.jpg') no-repeat center center;
    background-size: cover;
}

/* Hero szövegblokk belépő animáció – egymás után */
.hero-title,
.hero-subtitle,
.hero .btn-primary {
    animation: heroTextIn 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-title { animation-delay: 0.15s; }
.hero-subtitle { animation-delay: 0.45s; }
.hero .btn-primary { animation-delay: 0.75s; }

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

/* Navigáció – csak finom megjelenés */
.navbar {
    animation: heroNavIn 1s ease backwards;
}

@keyframes heroNavIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-subtitle,
    .hero .btn-primary,
    .navbar {
        animation: none;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(245,240,235,0.92) 0%, rgba(245,240,235,0.75) 45%, rgba(245,240,235,0.2) 70%, transparent 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1368px;
    margin: 0 auto;
    padding: 96px 28.8px 96px 120px;
    width: 100%;
}

.hero-content {
    max-width: 648px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 62.4px;
    font-weight: 400;
    line-height: 1.18;
    color: var(--color-text);
    margin-bottom: 21.6px;
}

.hero-title em {
    font-style: italic;
    color: var(--color-teal);
}

.hero-subtitle {
    font-size: 19.2px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 38.4px;
}

/* No hero-image div needed - background covers full section */

/* ============================================
   LOGO BAR
   ============================================ */
.logo-bar {
    background: var(--color-teal);
    padding: 26.4px 0;
}

.logo-bar-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 28.8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52.8px;
    flex-wrap: wrap;
}

.logo-item {
    color: rgba(255,255,255,0.82);
    font-size: 15.6px;
    font-weight: 700;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */
.pain-points {
    background: var(--color-white);
    padding: 90px 0 66px;
    text-align: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 40.8px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 14.4px;
}

.section-title-alt {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.3;
    margin-top: 16.8px;
    font-style: italic;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 43.2px;
    margin: 54px 0;
    text-align: left;
}

.pain-card {
    background: var(--color-cream);
    padding: 43.2px;
    border-radius: 7.2px;
}

.pain-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 26.4px;
    color: var(--color-text);
}

.pain-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14.4px;
    font-size: 16.8px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.pain-card .check {
    color: var(--color-raspberry);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
}

.pain-footer {
    font-size: 16.8px;
    color: var(--color-text-muted);
    margin-bottom: 7.2px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    background: var(--color-white);
    padding: 36px 0 66px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 43.2px;
    text-align: center;
}

.benefit-item {
    padding: 19.2px;
}

.benefit-icon {
    width: 81.6px;
    height: 81.6px;
    border-radius: 50%;
    margin: 0 auto 21.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31.2px;
}

.icon-peace {
    background: var(--color-teal-light);
    border: 3px solid var(--color-teal);
}

.icon-peace::after {
    content: '☮';
    color: var(--color-teal);
}

.icon-confidence {
    background: var(--color-raspberry-light);
    border: 3px solid var(--color-raspberry);
}

.icon-confidence::after {
    content: '♥';
    color: var(--color-raspberry);
}

.icon-meaning {
    background: var(--color-teal-light);
    border: 3px solid var(--color-teal);
}

.icon-meaning::after {
    content: '✦';
    color: var(--color-teal);
}

.benefit-item h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-text);
}

.benefit-item p {
    font-size: 15.6px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: var(--color-white);
    padding: 36px 0 90px;
}

.video-wrapper {
    max-width: 1032px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    height: 504px;
    border-radius: 7.2px;
    background: linear-gradient(135deg, #c0b0a0 0%, #d8ccc0 50%, #c0b0a0 100%);
}

/* ---- Real images (video cover + section photos) ---- */
.video-cover {
    position: relative;
    width: 100%;
    height: 504px;
    border-radius: 7.2px;
    overflow: hidden;
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

/* ---- Videóborító belépő animáció ---- */
.video-cover img {
    opacity: 0;
    transform: translateY(21.6px) scale(0.98);
}

.video-cover .play-button {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.video-cover.in-view img {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-cover.in-view .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition:
        opacity 0.8s ease 0.2s,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

/* Hover – csak belépés után, diszkrét */
.video-cover.in-view .play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.video-cover.in-view:hover img {
    transform: scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
    .video-cover img,
    .video-cover.in-view img,
    .video-cover.in-view:hover img {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .video-cover .play-button,
    .video-cover.in-view .play-button,
    .video-cover.in-view .play-button:hover {
        opacity: 1;
        transform: translate(-50%, -50%);
        transition: none;
    }
}

.about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 25%;
    display: block;
}

.approach-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    display: block;
}

/* ---- Rólam szekciók belépő animációja – tükrözött, összehangolt ---- */
.about-img,
.workshop-photo {
    opacity: 0;
    transform: translateX(-28.8px);
}

.approach-img,
.phone-mockup {
    opacity: 0;
    transform: translateX(28.8px);
}

.about-img.in-view,
.workshop-photo.in-view,
.approach-img.in-view,
.phone-mockup.in-view {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
    .about-img,
    .workshop-photo,
    .approach-img,
    .phone-mockup,
    .about-img.in-view,
    .workshop-photo.in-view,
    .approach-img.in-view,
    .phone-mockup.in-view {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.video-cta {
    text-align: center;
    margin-top: 57.6px;
}

/* ============================================
   ABOUT SPLIT SECTION
   ============================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 696px;
}

.about-image-side {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 696px;
    background: linear-gradient(135deg, #b0a090 0%, #c8b8a8 50%, #b0a090 100%);
}

.about-text-side {
    background: var(--color-white);
    padding: 90px 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-side h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-text);
    margin-bottom: 16.8px;
}

.about-text-side p {
    font-size: 16.8px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16.8px;
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach {
    background: var(--color-white);
    padding: 0;
}

.approach-container {
    max-width: none;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.approach-text {
    padding: 90px 66px 90px max(28.8px, calc((100vw - 1368px) / 2 + 28.8px));
}

.approach-text h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 14.4px;
}

.approach-list {
    margin: 33.6px 0;
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 14.4px;
    margin-bottom: 21.6px;
    font-size: 16.8px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.check-pink {
    color: var(--color-raspberry);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
}

.approach-list strong {
    color: var(--color-text);
    font-weight: 600;
}

/* ---- Módszer mini blokkok (2x2) ---- */
.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 36px;
    margin: 33.6px 0;
}

.method-number {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: rgba(26, 155, 138, 0.55);
    margin-bottom: 9.6px;
}

.method-item:nth-child(even) .method-number {
    color: rgba(168, 51, 107, 0.55);
}

.method-item h3 {
    font-family: var(--font-serif);
    font-size: 19.2px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 7.2px;
}

.method-item p {
    font-size: 14.4px;
    color: var(--color-text-light);
    line-height: 1.65;
}

.signature {
    margin: 33.6px 0;
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 26.4px;
    font-style: italic;
    color: var(--color-text);
}

.signature-title {
    font-size: 15.6px;
    color: var(--color-text-muted);
    margin-top: 3.6px;
}

.approach-image {
    position: relative;
}

.approach-img-placeholder {
    width: 100%;
    height: 576px;
    border-radius: 7.2px;
    background: linear-gradient(135deg, #c0a090 0%, #d8c0b0 50%, #c0a090 100%);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--color-teal);
    padding: 57.6px 0;
}

.stats-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 28.8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 43.2px;
    text-align: center;
}

.stat-item {
    color: var(--color-white);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 55.2px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 7.2px;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 7.2px;
}

.stat-label {
    font-size: 15.6px;
    line-height: 1.5;
    opacity: 0.88;
    font-weight: 500;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--color-white);
    padding: 90px 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 43.2px;
    margin: 54px 0;
}

.step-item {
    padding: 19.2px;
}

.step-number {
    width: 57.6px;
    height: 57.6px;
    border-radius: 50%;
    background: var(--color-raspberry);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21.6px;
}

.step-item h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14.4px;
    color: var(--color-text);
}

.step-item p {
    font-size: 15.6px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.steps-cta {
    margin-top: 19.2px;
}

/* ============================================
   TESTIMONIALS 1
   ============================================ */
.testimonials-1 {
    background: var(--color-white);
    padding: 66px 0 90px;
    text-align: center;
}

.stars {
    color: var(--color-gold);
    font-size: 26.4px;
    letter-spacing: 3.6px;
    margin-bottom: 21.6px;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 31.2px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.4;
    max-width: 792px;
    margin: 0 auto 21.6px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28.8px;
    margin-top: 54px;
    text-align: left;
}

.testimonial-card {
    background: var(--color-cream);
    padding: 33.6px;
    border-radius: 7.2px;
}

.testimonial-text {
    font-size: 15.6px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16.8px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15.6px;
    font-weight: 700;
    color: var(--color-text);
}

/* ============================================
   TESTIMONIALS VIDEO SECTION (Raspberry)
   ============================================ */
.testimonials-video {
    background: var(--color-raspberry);
    padding: 102px 0;
    text-align: center;
    color: var(--color-white);
}

.testimonials-video .testimonial-quote-large {
    font-family: var(--font-serif);
    font-size: 28.8px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    max-width: 792px;
    margin: 0 auto 12px;
}

.testimonial-author-large {
    font-size: 16.8px;
    font-weight: 700;
    margin-bottom: 54px;
    opacity: 0.9;
    letter-spacing: 0.6px;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1032px;
    margin: 0 auto 57.6px;
}

.video-testimonial-card {
    aspect-ratio: 4/3;
    border-radius: 7.2px;
    overflow: hidden;
}

.theme-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1.2px solid rgba(255, 255, 255, 0.28);
    border-radius: 7.2px;
    padding: 28.8px 26.4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.theme-card h3 {
    font-family: var(--font-serif);
    font-size: 21.6px;
    font-weight: 500;
    margin-bottom: 9.6px;
    color: var(--color-white);
}

.theme-card p {
    font-size: 14.4px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ---- Card hover states ---- */
.pain-card,
.testimonial-card,
.program-card {
    transform: translateY(0);
    box-shadow: 0 2.4px 12px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
    will-change: transform;
}

.pain-card:hover,
.testimonial-card:hover,
.program-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8.4px 21.6px rgba(0, 0, 0, 0.09);
}

.theme-card {
    transform: translateY(0);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease,
        border-color 0.3s ease;
    will-change: transform;
}

.theme-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
}

.video-t-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c080a0 0%, #d8a0b8 50%, #c080a0 100%);
    border-radius: 7.2px;
}

.testimonials-video .btn-primary {
    background: var(--color-white);
    color: var(--color-raspberry);
    box-shadow: 0 3.6px 14.4px rgba(0,0,0,0.15);
}

.testimonials-video .btn-primary:hover {
    background: var(--color-cream);
    box-shadow: 0 7.2px 24px rgba(0,0,0,0.2);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs {
    background: var(--color-white);
    padding: 90px 0;
    text-align: center;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 43.2px;
    margin-top: 54px;
    text-align: left;
}

.program-card {
    background: var(--color-cream);
    padding: 43.2px;
    border-radius: 7.2px;
    display: flex;
    flex-direction: column;
}

.program-card .btn-outline {
    margin-top: auto;
    align-self: flex-start;
}

.program-card .program-badge {
    align-self: flex-start;
}

.program-badge {
    display: inline-block;
    background: var(--color-raspberry);
    color: var(--color-white);
    padding: 6px 16.8px;
    border-radius: 3.6px;
    font-size: 14.4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.96px;
    margin-bottom: 16.8px;
}

.program-badge-alt {
    background: var(--color-teal);
}

.program-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16.8px;
    color: var(--color-text);
}

.program-card p {
    font-size: 15.6px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 26.4px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--color-white);
    padding: 0;
}

.process-container {
    max-width: 1368px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 0;
    align-items: center;
    padding: 66px 28.8px 108px;
}

.process-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stepper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 57.6px;
}

.stepper::before {
    content: '';
    position: absolute;
    left: 25.5px;
    top: 26.4px;
    bottom: 26.4px;
    width: 1.8px;
    background: linear-gradient(180deg, rgba(26,155,138,0.35) 0%, rgba(168,51,107,0.35) 100%);
}

.stepper-item {
    display: flex;
    align-items: flex-start;
    gap: 21.6px;
    position: relative;
}

.stepper-number {
    width: 52.8px;
    height: 52.8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 21.6px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-teal);
    border: 3.6px solid var(--color-white);
    box-shadow: 0 3.6px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
    z-index: 1;
}

.stepper-item:nth-child(2) .stepper-number {
    background: var(--color-raspberry);
}

.stepper-content h4 {
    font-family: var(--font-serif);
    font-size: 21.6px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4.8px;
}

.stepper-content p {
    font-size: 14.4px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.process-text h3 {
    font-size: 14.4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    margin-bottom: 7.2px;
}

.process-text h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 14.4px;
}

.process-text p {
    font-size: 16.8px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   HOPE SECTION (Teal)
   ============================================ */
.hope-section {
    background: var(--color-teal);
    padding: 90px 0;
    text-align: center;
    color: var(--color-white);
}

.hope-section h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16.8px;
    max-width: 792px;
    margin-left: auto;
    margin-right: auto;
}

.hope-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 33.6px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.93;
}

.hope-section .btn-primary {
    background: var(--color-white);
    color: var(--color-teal);
    box-shadow: 0 3.6px 14.4px rgba(0,0,0,0.12);
}

.hope-section .btn-primary:hover {
    background: var(--color-cream);
    box-shadow: 0 7.2px 24px rgba(0,0,0,0.18);
}

/* ============================================
   TESTIMONIALS 2
   ============================================ */
.testimonials-2 {
    background: var(--color-white);
    padding: 90px 0;
    text-align: center;
}

.testimonials-2 .testimonial-quote {
    font-family: var(--font-serif);
    font-size: 28.8px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.4;
    max-width: 792px;
    margin: 0 auto 12px;
}

.testimonials-2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21.6px;
    max-width: 1032px;
    margin: 54px auto 57.6px;
}

.testimonial-2-card {
    aspect-ratio: 4/3;
    border-radius: 7.2px;
    overflow: hidden;
}

.result-item {
    aspect-ratio: auto;
    overflow: visible;
    padding: 9.6px 28.8px;
    text-align: left;
    position: relative;
}

.result-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10.8px;
    top: 14.4px;
    bottom: 14.4px;
    width: 1.2px;
    background: var(--color-cream-dark);
}

.result-number {
    font-family: var(--font-serif);
    font-size: 43.2px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
    color: rgba(26, 155, 138, 0.28);
}

.result-item:nth-child(even) .result-number {
    color: rgba(168, 51, 107, 0.28);
}

.result-item h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 7.2px;
}

.result-item p {
    font-size: 13.2px;
    color: var(--color-text-light);
    line-height: 1.65;
}

.t2-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c0b0a0 0%, #d8ccc0 50%, #c0b0a0 100%);
    border-radius: 7.2px;
}

/* ============================================
   PODCAST SECTION (Raspberry)
   ============================================ */
.podcast-section {
    background: var(--color-raspberry);
    padding: 0;
    color: var(--color-white);
}

.podcast-container {
    max-width: 1368px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 66px;
    align-items: center;
    padding: 90px 28.8px;
}

.podcast-text h2 {
    font-family: var(--font-serif);
    font-size: 40.8px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}

.podcast-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16.8px;
    opacity: 0.9;
}

.podcast-text p {
    font-size: 16.8px;
    line-height: 1.7;
    margin-bottom: 21.6px;
    opacity: 0.9;
}

.podcast-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14.4px;
    font-size: 16.8px;
    line-height: 1.6;
}

.podcast-list .check-pink {
    color: var(--color-white);
    font-weight: 700;
    flex-shrink: 0;
}

.podcast-text .btn-primary {
    margin-top: 24px;
}

.podcast-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    background: var(--color-white);
    border-radius: 33.6px;
    padding: 13.2px;
    box-shadow: 0 24px 66px rgba(0,0,0,0.2);
}

.phone-screen {
    background: #f5f5f5;
    border-radius: 21.6px;
    overflow: hidden;
}

.phone-header {
    background: var(--color-teal);
    color: var(--color-white);
    padding: 10.8px;
    text-align: center;
    font-size: 13.2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.phone-content {
    padding: 16.8px;
}

.phone-img-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 7.2px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #c0a098 0%, #d8c0b8 50%, #c0a098 100%);
}

.phone-img-wrap {
    position: relative;
    margin-bottom: 12px;
}

.phone-img {
    width: 100%;
    height: 180px;
    border-radius: 7.2px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.phone-episode {
    text-align: center;
    margin-bottom: 16.8px;
}

.episode-title {
    font-size: 14.4px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3.6px;
}

.episode-host {
    font-size: 12px;
    color: var(--color-text-muted);
}

.phone-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26.4px;
    font-size: 19.2px;
    color: var(--color-teal);
}

.phone-controls .play-btn {
    width: 50.4px;
    height: 50.4px;
    background: var(--color-teal);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2.4px 9.6px rgba(26,155,138,0.3);
}

/* ============================================
   WORKSHOP SECTION (Teal)
   ============================================ */
.workshop-section {
    background: var(--color-teal);
    padding: 0;
    color: var(--color-white);
}

.workshop-container {
    max-width: 1368px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: stretch;
}

.workshop-image {
    position: relative;
    min-height: 696px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 66px 43.2px;
}

.workshop-book {
    position: relative;
    width: 100%;
    max-width: 348px;
}

.workshop-photo {
    width: 100%;
    height: auto;
    border-radius: 3.6px;
    box-shadow: 0 21.6px 57.6px rgba(0, 0, 0, 0.28);
    display: block;
}

.workshop-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 696px;
    background: linear-gradient(135deg, #988878 0%, #b0a090 50%, #988878 100%);
}

.workshop-text {
    padding: 90px 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workshop-label {
    font-size: 14.4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.78;
    margin-bottom: 12px;
}

.workshop-text h2 {
    font-family: var(--font-serif);
    font-size: 31.2px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16.8px;
}

.workshop-text p {
    font-size: 16.8px;
    line-height: 1.7;
    margin-bottom: 16.8px;
    opacity: 0.93;
}

.workshop-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16.8px;
    line-height: 1.6;
}

.workshop-list .check-pink {
    color: var(--color-white);
    font-weight: 700;
    flex-shrink: 0;
}

.workshop-form {
    margin-top: 26.4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-input {
    padding: 15.6px 18px;
    border: none;
    border-radius: 3.6px;
    font-size: 16.8px;
    font-family: var(--font-sans);
    background: rgba(255,255,255,0.12);
    color: var(--color-white);
    outline: none;
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.65);
}

.form-input:focus {
    background: rgba(255,255,255,0.22);
}

.btn-primary.full-width {
    width: 100%;
    background: var(--color-white);
    color: var(--color-teal);
    box-shadow: 0 3.6px 14.4px rgba(0,0,0,0.1);
}

.btn-primary.full-width:hover {
    background: var(--color-cream);
    box-shadow: 0 7.2px 24px rgba(0,0,0,0.15);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--color-cream);
    padding: 108px 28.8px;
}

.contact-container {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
}

.contact-label {
    font-size: 14.4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-raspberry);
    margin-bottom: 12px;
}

.contact-section h2 {
    font-family: var(--font-serif);
    font-size: 31.2px;
    font-weight: 400;
    line-height: 1.3;
}

.contact-section .divider-dots {
    margin: 26.4px 0 33.6px;
}

.contact-intro {
    font-size: 16.8px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.contact-form {
    margin-top: 43.2px;
    display: flex;
    flex-direction: column;
    gap: 21.6px;
    text-align: left;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 7.2px;
}

.contact-field label {
    font-size: 14.4px;
    font-weight: 700;
    color: var(--color-text);
}

.contact-optional {
    font-weight: 400;
    color: var(--color-text-muted);
}

.contact-input {
    width: 100%;
    padding: 15.6px 18px;
    border: 1.2px solid #ded5cb;
    border-radius: 3.6px;
    font-size: 16.8px;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-white);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3.6px rgba(26, 155, 138, 0.14);
}

.contact-textarea {
    resize: vertical;
    min-height: 144px;
}

.contact-submit {
    align-self: center;
    margin-top: 16.8px;
}

.contact-privacy {
    font-size: 14.4px;
    color: var(--color-text-light);
    text-align: center;
}

.contact-privacy a {
    color: var(--color-teal);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #2a2a2a;
    padding: 57.6px 0 33.6px;
    color: var(--color-white);
}

.footer-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 28.8px;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 26.4px;
}

.footer-logo .logo-text {
    color: var(--color-white);
    font-size: 31.2px;
}

.footer-logo .logo-sub {
    color: rgba(255,255,255,0.45);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 26.4px;
    margin-bottom: 26.4px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14.4px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16.8px;
    margin-bottom: 26.4px;
}

.social-icon {
    width: 40.8px;
    height: 40.8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15.6px;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2.4px);
}

.footer-copy {
    font-size: 13.2px;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        min-height: 600px;
    }
    .hero-container {
        padding: 72px 28.8px 72px 72px;
    }
    .hero-title {
        font-size: 48px;
    }
    .about-split { grid-template-columns: 1fr; }
    .about-image-side { min-height: 336px; }
    .about-img-placeholder { min-height: 336px; }
    .approach-container { grid-template-columns: 1fr; }
    .approach-text { padding: 66px 28.8px; }
    .approach-image { display: none; }
    .process-container { grid-template-columns: 1fr; gap: 43.2px; }
    .podcast-container { grid-template-columns: 1fr; gap: 43.2px; }
    .workshop-container { grid-template-columns: 1fr; }
    .workshop-image { min-height: 336px; padding: 43.2px 28.8px; }
    .workshop-book { max-width: 264px; }
    .workshop-img-placeholder { min-height: 336px; }
    .workshop-text { padding: 66px 28.8px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-cta-alt { display: inline-block; }
    .hero { min-height: 540px; }
    .hero-title { font-size: 33.6px; }
    .hero-content { max-width: 100%; }
    .hero-container { padding: 60px 28.8px; }
    .section-title { font-size: 28.8px; }

    /* Kisebb, arányosabb címsorok mobilon */
    .section-title-alt { font-size: 26.4px; }
    .about-text-side h2,
    .approach-text h2,
    .process-text h2,
    .hope-section h2 { font-size: 26.4px; }
    .podcast-text h2 { font-size: 28.8px; }
    .workshop-text h2 { font-size: 26.4px; }
    .contact-section { padding: 72px 28.8px; }
    .contact-section h2 { font-size: 26.4px; }
    .testimonial-quote { font-size: 24px; }
    .testimonials-video .testimonial-quote-large { font-size: 21.6px; }
    .stat-number { font-size: 43.2px; }

    /* Kisebb, de jól kattintható CTA-gombok mobilon */
    .btn-primary {
        font-size: 14.4px;
        padding: 16.8px 28.8px;
    }
    .btn-outline {
        font-size: 14.4px;
        padding: 15.6px 26.4px;
    }

    /* Türkiz címkesáv kisebb betűkkel */
    .logo-item { font-size: 13.2px; letter-spacing: 0.8px; }

    .pain-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .method-grid { grid-template-columns: 1fr; }

    /* Lila témakártyák: 1 db / sor */
    .video-testimonials-grid { grid-template-columns: 1fr; }
    .video-testimonial-card.theme-card { aspect-ratio: auto; }

    .testimonials-2-grid { grid-template-columns: 1fr; }
    .result-item { padding: 21.6px 0; }
    .result-item:not(:last-child)::after {
        left: 0;
        right: 0;
        top: auto;
        bottom: -10.8px;
        width: auto;
        height: 1.2px;
    }

    /* Stepper: mobilon nincs függőleges összekötő vonal */
    .stepper::before { display: none; }

    .stats-container { grid-template-columns: 1fr; gap: 33.6px; }
    .logo-bar-container { gap: 24px; }
    .about-text-side { padding: 43.2px 28.8px; }
}
