:root {
    --color-green: #6CBE45;
    --color-green-light: rgba(108, 190, 69, 0.1);
    --color-busoxy-teal: #009A8D;
    --color-busoxy-teal-light: rgba(0, 154, 141, 0.1);
    --color-busoxy-red: #EE4344;
    --color-orange: #FF8C00;
    --color-dark: #1a1a1a;
    --color-darker: #111;
    --color-light: #f4f7f6;
    --color-white: #ffffff;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4, .eyebrow, .tier-name {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.text-green {
    color: var(--color-busoxy-teal);
}

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

/* Navbar (Glassmorphism) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-green);
}

/* Buttons */
.btn-primary-small {
    background: var(--color-busoxy-teal);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

.btn-primary-small:hover {
    background: #007D72;
    transform: translateY(-2px);
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--color-busoxy-teal);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 154, 141, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 154, 141, 0.4);
}

.btn-outline {
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
}

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

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Section */
.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-text-wrapper {
    flex: 1;
    padding: 10% 5% 10% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.eyebrow {
    color: var(--color-green);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-darker);
}

.hero-desc {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin-bottom: 3rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: var(--color-light);
    border-bottom-left-radius: 100px;
    z-index: 1;
}

.floating-image {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: left center;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.award-pill {
    position: absolute;
    bottom: 20%;
    left: 0;
    z-index: 3;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-20%);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Shape Divider */
.shape-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: var(--color-light);
    margin-top: -5px;
}
.shape-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Video Section */
.video-section {
    background: var(--color-light);
    padding: 20px 0 80px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #0a2e1f 0%, #0d1b2a 50%, #1a1a2e 100%);
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(0, 184, 148, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 184, 148, 0.08) 0%, transparent 40%);
    animation: thumbGlow 6s ease-in-out infinite alternate;
}

@keyframes thumbGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(2%, 2%); }
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.video-thumb-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.video-thumb-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.15);
}

.video-play-btn svg circle {
    transition: fill 0.3s ease;
}

.video-play-btn:hover svg circle {
    fill: rgba(255, 255, 255, 1);
}

/* Features Section (Minimalist Grid) */
.minimal-features {
    background: var(--color-light);
    padding: 100px 0 150px;
}

.section-title {
    font-size: 4rem;
    color: var(--color-darker);
    margin-bottom: 4rem;
    line-height: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-green);
    line-height: 0.8;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-text p {
    color: #666;
    font-size: 1.1rem;
}

/* Pricing Section */
.shop-section {
    padding: 150px 0;
    background: var(--color-white);
}

.care-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #e6f9f4 0%, #edf7ff 100%);
    border: 1px solid rgba(0, 184, 148, 0.2);
    border-radius: 50px;
    padding: 16px 32px;
    max-width: 600px;
    margin: 2rem auto 3rem;
    color: var(--color-darker);
    font-size: 1rem;
}

.care-banner svg {
    flex-shrink: 0;
    color: var(--color-busoxy-teal);
}

.care-banner strong {
    color: var(--color-busoxy-teal);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: end;
}

.price-tier {
    background: var(--color-light);
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.price-tier.premium {
    background: var(--color-dark);
    color: white;
    padding: 4rem 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-busoxy-red);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.tier-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: inherit;
}

.price-tier:not(.premium) .tier-name {
    color: var(--color-darker);
}

.tier-price {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    line-height: 1;
}

.tier-price span {
    font-size: 1.5rem;
    vertical-align: super;
}

.tier-features {
    list-style: none;
    margin-bottom: 3rem;
}

.tier-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.1rem;
}

.price-tier.premium .tier-features li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.btn-buy {
    width: 100%;
    padding: 1.5rem;
    border-radius: 15px;
    border: none;
    background: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.price-tier:not(.premium) .btn-buy {
    background: var(--color-dark);
    color: white;
}

.price-tier.premium .btn-buy {
    background: var(--color-busoxy-red);
    color: white;
}

.btn-buy:hover {
    transform: translateY(-5px);
}

/* Footer */
.modern-footer {
    background: var(--color-darker);
    color: white;
    padding: 100px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-left h2 {
    font-family: var(--font-body);
    font-size: 2rem;
    text-transform: none;
    margin-bottom: 1rem;
}

.footer-left p {
    color: #888;
}

.footer-right {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--color-green);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Split Info Sections */
.split-info-section {
    padding: 100px 0;
    background: var(--color-white);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 5%;
}

.reverse-layout .split-container {
    flex-direction: row-reverse;
}

.split-image, .split-text {
    flex: 1;
}

.split-image {
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-busoxy-teal-light);
    border-radius: 30px;
    transform: translate(-20px, 20px);
    z-index: 0;
}

.reverse-layout .split-image::before {
    transform: translate(20px, 20px);
}

.image-crop-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    width: 100%;
}

.yoga-wrapper {
    max-width: 75%; /* Csökkentve 25%-kal */
}

.app-wrapper {
    max-width: 35%; /* Csökkentve további 20%-kal */
}

.image-crop-wrapper.shadow-heavy {
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.rounded-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* CSS Cropping */
.crop-child {
    aspect-ratio: 1 / 1;
    object-position: 80% center; /* Fókusz a jobb oldalra, a telefonokra és a személyre */
    transform: scale(1.1);
}

.crop-yoga {
    aspect-ratio: 4 / 5;
    object-position: 95% center; /* Fókusz a kép jobb szélére, ahol a nő van */
    transform: scale(1.25);
    transform-origin: 95% 50%;
}

.section-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list .text-green {
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--color-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-darker);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.active.reveal-up, .active.reveal-left, .active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Text Pages */
.text-page-section {
    padding: 150px 0 100px;
    background: var(--color-light);
    min-height: calc(100vh - 300px);
}

.text-page-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.text-page-container h1 {
    font-size: 3rem;
    color: var(--color-busoxy-teal);
    margin-bottom: 2rem;
    text-align: center;
}

.text-page-container h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-darker);
}

.text-page-container h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.text-page-container p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-page-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.text-page-container li {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .features-list { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; align-items: stretch; }
    .price-tier.premium { padding: 3rem; transform: none; }
}

@media (max-width: 768px) {
    .hero-split { flex-direction: column; padding-top: 120px; }
    .hero-text-wrapper { padding: 5%; }
    .hero-title { font-size: 3rem; }
    .image-backdrop { width: 100%; border-bottom-left-radius: 0; height: 80%; top: 20%; }
    .cta-group { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
    .award-pill { transform: translateX(0); left: 5%; bottom: 10%; }
    .footer-content { flex-direction: column; gap: 3rem; }
    
    .split-container {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .split-image, .split-text {
        width: 100%;
    }

    .text-page-container {
        padding: 2rem;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 0.5rem 1rem;
    }

    .nav-links .btn-primary-small {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        margin-top: 1rem;
    }

    /* Mobile Video Thumbnail */
    .video-thumb-logo {
        max-width: 120px;
    }

    .video-thumb-title {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        padding: 0 1rem;
        text-align: center;
    }

    .video-thumb-overlay {
        gap: 12px;
    }

    .video-play-btn svg {
        width: 52px;
        height: 52px;
    }
}
