@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Raleway:wght@400;500;600;700;900&display=swap');

:root {
    /* Color Tokens */
    --bg-dark: hsl(222, 47%, 6%);
    --bg-dark-card: hsl(222, 40%, 10%);
    --bg-light: hsl(210, 20%, 98%);
    --bg-light-card: hsl(0, 0%, 100%);

    --primary: #189DA2;
    /* Electric Turquoise #00e5ff */
    --primary-glow: rgba(24, 157, 162, 0.15);
    --secondary: hsl(342, 100%, 59%);
    /* Vibrant Pink-Red #ff2e93 */
    --secondary-glow: rgba(255, 46, 147, 0.3);

    --text-white: hsl(0, 0%, 100%);
    --text-dark: hsl(222, 47%, 12%);
    --text-muted-dark: hsl(215, 20%, 70%);
    --text-muted-light: hsl(215, 15%, 45%);
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(0, 0, 0, 0.08);

    /* System Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
    --shadow-turquoise: 0 10px 30px -10px rgba(0, 229, 255, 0.3);
    --shadow-pink: 0 10px 30px -10px rgba(255, 46, 147, 0.4);

    --radius-s: 8px;
    --radius-m: 16px;
    --radius-l: 24px;
    --radius-xl: 32px;
}

/* Reset and Core base rules */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    /* Seamless background split that extends the 1440px absolute hero infinitely to the left and right */
    background-image: linear-gradient(to right, #000000 0%, #000000 50%, var(--bg-dark) 50%, var(--bg-dark) 100%);
    background-repeat: no-repeat;
    background-size: 100% 690px;
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    padding-top: 690px;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

img,
svg {
    max-width: 100%;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: hsl(222, 20%, 20%);
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Common Layout components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(10, 15, 29, 0.75);
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(6, 9, 18, 0.95);
    box-shadow: var(--shadow-premium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    display: block;
    transition: height var(--transition-smooth);
}

/* Custom Navigation Buttons */
.btn-login {
    background-color: #289598 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 21px !important;
    /* Perfect capsule */
    box-shadow: 0 4px 12px rgba(40, 149, 152, 0.2) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all var(--transition-smooth) !important;
    cursor: pointer;
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
}

@media (min-width: 992px) {
    .btn-login {
        position: absolute !important;
        width: 110px !important;
        height: 42px !important;
        left: 1149px !important;
        top: 19px !important;
        /* Centered in 80px high header */
        padding: 0 !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        line-height: 16px !important;
    }
}

@media (max-width: 991px) {
    .btn-login {
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
    }
}

.btn-login:hover {
    background-color: #1d7476 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(40, 149, 152, 0.4) !important;
}

.btn-try {
    background-color: #e17f62 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 9999px !important;
    /* Perfect capsule */
    box-shadow: 0 4px 12px rgba(225, 127, 98, 0.2) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all var(--transition-smooth) !important;
    cursor: pointer;
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
}

@media (min-width: 992px) {
    .btn-try {
        position: absolute !important;
        width: 110px !important;
        height: 42px !important;
        left: 1279px !important;
        top: 19px !important;
        /* Centered in 80px high header */
        padding: 0 !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        line-height: 16px !important;
    }
}

@media (max-width: 991px) {
    .btn-try {
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
    }
}

.btn-try:hover {
    background-color: #d16b4e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(225, 127, 98, 0.4) !important;
}

/* Hero Pill Buttons */
.btn-cta-pink,
.btn-cta-teal {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    /* EXACT height from target mockup */
    border: none !important;
    border-radius: 9999px !important;
    /* Perfect capsule */
    padding: 0 20px !important;
    /* Balanced horizontal padding */
    font-size: 0.88rem !important;
    /* Optimized font size to fit inside 410px width */
    font-weight: 700 !important;
    transition: all var(--transition-smooth) !important;
    cursor: pointer;
    box-sizing: border-box !important;
    flex: 1 1 0px !important;
    /* Fill container width evenly */
    white-space: nowrap !important;
    /* Guarantee no text wrapping */
}

.btn-cta-pink {
    background: #E80C46 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(232, 12, 70, 0.25) !important;
}

.btn-cta-pink:hover {
    background: #c60a3b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 26px rgba(232, 12, 70, 0.45) !important;
}

.btn-cta-teal {
    background: #189DA2 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(24, 157, 162, 0.2) !important;
}

.btn-cta-teal:hover {
    background: #127c80 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 26px rgba(24, 157, 162, 0.4) !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    transition: all var(--transition-smooth) !important;
}

@media (min-width: 992px) {
    .navbar .logo {
        position: absolute !important;
        width: 190px !important;
        height: 40px !important;
        left: 119px !important;
        top: 20px !important;
    }

    .navbar .logo-img {
        height: 100% !important;
        width: auto !important;
    }

    .nav-container {
        position: relative !important;
        width: 1440px !important;
        max-width: 1440px !important;
        margin: 0 auto !important;
        padding: 0 24px !important;
    }

    .nav-menu {
        position: absolute !important;
        width: 423px !important;
        height: 30px !important;
        left: 691px !important;
        top: 25px !important;
        /* Centered in 80px high header */
        justify-content: space-between !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
    }
}

.nav-link {
    font-family: 'Raleway', var(--font-body), sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    line-height: 15px !important;
    color: #FFFFFF !important;
    position: relative !important;
    padding: 6px 0 !important;
    white-space: nowrap !important;
    transition: var(--transition-fast) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

/* Hamburger menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-dark-card);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 40px;
        gap: 24px;
        border-left: 1px solid var(--border-dark);
        transition: var(--transition-smooth);
        margin: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta-mobile {
        display: block !important;
        margin-top: 16px;
        width: 100%;
    }
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-m);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #189DA2 0%, #2dd4bf 100%);
    color: var(--text-white);
    border: none;
    box-shadow: 0 10px 25px rgba(24, 157, 162, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(24, 157, 162, 0.55);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-turquoise);
}

/* Hero Section */
.hero {
    position: absolute;
    width: 1440px;
    height: 690px;
    left: calc(50% - 1440px/2);
    top: 0px;
    padding-top: 120px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, #000000 0%, #000000 12%, rgba(0, 0, 0, 0.85) 30%, rgba(24, 157, 162, 0.12) 65%, rgba(6, 9, 18, 0.95) 100%), url('samurai_backdrop_new.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(6, 9, 18, 0.15), rgba(6, 9, 18, 0.85)),
        radial-gradient(circle at 65% 45%, rgba(24, 157, 162, 0.28) 0%, rgba(24, 157, 162, 0.08) 45%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-vertical-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    z-index: 1;
    opacity: 0.12;
}

.hero-vertical-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.5), transparent);
}

@keyframes turquoise-pulse {

    0%,
    100% {
        opacity: 0.65;
        text-shadow: 0 0 8px rgba(24, 157, 162, 0.5), 0 0 15px rgba(24, 157, 162, 0.25);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 12px rgba(24, 157, 162, 0.9), 0 0 25px rgba(24, 157, 162, 0.5), 0 0 35px rgba(24, 157, 162, 0.3);
    }
}

.hero-frame-label {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: #189DA2;
    animation: turquoise-pulse 4s infinite ease-in-out;
    pointer-events: none;
    z-index: 5;
    text-transform: uppercase;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
}

.hero-title {
    font-family: 'Raleway', 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    color: #ffffff !important;
    z-index: 10;
}

@media (min-width: 1200px) {
    .hero-title {
        position: absolute !important;
        width: 650px !important;
        height: 224px !important;
        left: 100px !important;
        top: 127px !important;
        font-size: 52px !important;
        line-height: 62px !important;
        letter-spacing: normal !important;
        margin: 0 !important;
    }
}

@media (max-width: 1199px) {
    .hero-title {
        position: relative !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto 20px auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        text-align: center !important;
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
        padding: 0 24px !important;
    }
}

.hero-title span {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: none !important;
}

.hero-subtitle {
    font-family: 'Raleway', var(--font-body), sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    z-index: 10;
}

@media (min-width: 1200px) {
    .hero-subtitle {
        position: absolute !important;
        width: 610px !important;
        height: 80px !important;
        left: 100px !important;
        top: 334px !important;
        font-size: 18px !important;
        line-height: 21px !important;
        color: #F6F8F8 !important;
        margin: 0 !important;
    }
}

@media (max-width: 1199px) {
    .hero-subtitle {
        position: relative !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 20px auto 30px auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        color: #cbd5e1 !important;
        padding: 0 24px !important;
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    z-index: 10;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .hero-actions {
        position: absolute !important;
        width: 410px !important;
        height: 48px !important;
        left: 119px !important;
        top: 462px !important;
    }

    .btn-cta-pink {
        position: absolute !important;
        width: 190px !important;
        height: 48px !important;
        left: 0px !important;
        top: 0px !important;
        background: #E80C46 !important;
        border-radius: 24px !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: #FFFFFF !important;
    }

    .btn-cta-teal {
        position: absolute !important;
        width: 196px !important;
        height: 48px !important;
        left: 214px !important;
        /* Adjusted relative to parent container (333px - 119px) */
        top: 0px !important;
        /* Adjusted relative to parent container (462px - 462px) */
        background: rgba(24, 157, 162, 0.5) !important;
        border-radius: 24px !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: #FFFFFF !important;
    }
}

@media (max-width: 1199px) {
    .hero-actions {
        position: relative !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 30px auto 0 auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 24px !important;
    }

    .hero-actions .btn {
        width: 100% !important;
    }
}

/* Hero Badge Bar - 4 Pill Bar at the bottom */
.hero-badge-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    z-index: 10;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .hero-badge-bar {
        position: absolute !important;
        width: 1202px !important;
        height: 48px !important;
        left: 119px !important;
        top: 583px !important;
        display: flex !important;
        justify-content: space-between !important;
        gap: 50px !important;
    }

    .hero-badge-bar .hero-badge-pill {
        width: 263px !important;
        max-width: 263px !important;
        min-width: 263px !important;
        height: 48px !important;
        border-radius: 24px !important;
        background: #0F8F86 !important;
        box-shadow: 0px 1px 30px rgba(24, 157, 162, 0.1) !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        line-height: 19px !important;
        color: #FFFFFF !important;
        justify-content: center !important;
        padding: 0px !important;
    }

    .hero-badge-bar .hero-badge-pill br {
        display: none !important;
    }

    .hero-badge-bar .hero-badge-pill:nth-child(4) {
        background: #104D4D !important;
    }
}

@media (max-width: 1199px) {
    .hero-badge-bar {
        position: relative !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 40px auto 0 auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        padding: 0 24px !important;
        gap: 12px !important;
    }
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px !important;
    color: #ffffff !important;
    padding: 0 22px !important;
    border-radius: 9999px !important;
    /* Perfect capsule/pill shape */
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    transition: all var(--transition-smooth) !important;
    cursor: pointer;
    border: none !important;
    height: 48px !important;
    /* EXACT height from target mockup */
    flex: 1 1 0px !important;
    min-width: 190px !important;
    max-width: 290px !important;
    line-height: 1.15 !important;
    /* Extra tight line height for double lines inside 48px */
    box-sizing: border-box !important;
    background: #0ca68a !important;
    /* Vibrant emerald-teal */
    box-shadow: 0 8px 24px rgba(12, 166, 138, 0.2) !important;
    /* Soft glowing green-teal shadow */
}

.hero-badge-pill svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    color: #ffffff !important;
}

.hero-badge-pill:hover {
    background: #0ea58a !important;
    /* Brighter teal on hover */
    transform: translateY(-3px) !important;
    /* Elegant vertical pop */
    box-shadow: 0 12px 30px rgba(12, 166, 138, 0.5) !important;
    /* Powerful glow shadow on hover matching the mockup */
}


/* Hybrid Section Setup - Light Theme Sections */
.light-theme-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin-top: -1px; /* Prevent sub-pixel rendering gaps between adjacent sections */
}

.light-theme-section .section-title {
    color: var(--text-dark);
}

.light-theme-section .section-subtitle {
    color: var(--text-muted-light);
}

@media (min-width: 1200px) {
    #kinek-szol {
        padding-top: 80px !important;
    }

    #kinek-szol .section-header {
        position: relative !important;
        width: 100% !important;
        max-width: 700px !important;
        height: auto !important;
        margin: 0 auto 50px auto !important;
    }

    #kinek-szol .section-title {
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 900 !important;
        font-size: 34px !important;
        line-height: 40px !important;
        text-align: center !important;
        color: #000000 !important;
        margin: 0 !important;
    }

    #kinek-szol .section-title span {
        color: #189DA2 !important;
        -webkit-text-fill-color: #189DA2 !important;
        background: none !important;
    }
}

/* Section Title Block */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.light-theme-section .section-badge {
    background: rgba(0, 229, 255, 0.1);
    color: hsl(180, 100%, 35%);
}

.dark-theme-section .section-badge {
    background: rgba(255, 46, 147, 0.08);
    color: var(--secondary);
    border: 1px solid rgba(255, 46, 147, 0.15);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title span {
    background: linear-gradient(135deg, hsl(180, 100%, 35%) 0%, var(--text-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-theme-section .section-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--text-white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
}

/* Section 1: Miért nehéz ma az AI videógenerálás? (Light Theme Ambient Grid) */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.problem-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-l);
    padding: 36px 24px;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.problem-card p {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.4s ease;
    line-height: 1.4;
}

/* Active State */
.problem-card.active {
    background-color: #189DA2;
    border-color: #189DA2;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.35);
    transform: translateY(-4px);
}

.problem-card.active p {
    color: #ffffff;
}

/* Hover State */
.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 184, 166, 0.4);
}

/* Problem Footer Text styling */
.problem-footer-text {
    z-index: 10;
}

@media (min-width: 1200px) {
    .problem-footer-text {
        position: relative !important;
        width: 100% !important;
        max-width: 1131px !important;
        height: auto !important;
        margin: 60px auto 0 auto !important;
        text-align: center !important;
    }
}

@media (max-width: 1199px) {
    .problem-footer-text {
        position: relative !important;
        width: 100% !important;
        max-width: 800px !important;
        margin: 40px auto 0 auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        text-align: center !important;
        padding: 0 24px !important;
    }
}

.problem-footer-text p {
    font-family: 'Raleway', var(--font-body), sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 28px !important;
    color: #000000 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
}

@media (max-width: 1199px) {
    .problem-footer-text p {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        color: var(--text-muted-light) !important;
    }
}

.problem-footer-text p:last-child {
    margin-bottom: 0 !important;
}

.problem-footer-text strong {
    color: #000000 !important;
    font-weight: 700 !important;
}

@media (max-width: 1199px) {
    .problem-footer-text strong {
        color: var(--text-dark) !important;
    }
}

/* Section 2: Helyszíni Képzés Solution Card */

.solution-card-container {
    background: linear-gradient(135deg, hsl(222, 47%, 11%) 0%, hsl(222, 47%, 6%) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-l);
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .solution-card-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
}

.solution-left {
    text-align: left;
}

.solution-title {
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.solution-desc-highlight {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.solution-desc-secondary {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.solution-right {
    text-align: left;
}

.topics-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.topics-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.topic-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.plus-icon {
    color: #189DA2;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.topic-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
}

@media (min-width: 1200px) {
    .solution-card-container {
        position: relative !important;
        width: 1200px !important;
        height: 466px !important;
        margin: 0 auto !important;
        background: #1D2733 !important;
        box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08) !important;
        border-radius: 15px !important;
        padding: 0 !important;
        display: block !important;
    }

    .solution-left {
        position: absolute !important;
        width: 534px !important;
        height: 466px !important;
        left: 78px !important;
        top: 0 !important;
    }

    .solution-title {
        position: absolute !important;
        width: 534px !important;
        height: 110px !important;
        left: 0 !important;
        top: 64px !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 900 !important;
        font-size: 34px !important;
        line-height: 40px !important;
        color: #FFFFFF !important;
        margin: 0 !important;
    }

    .solution-desc-highlight {
        position: absolute !important;
        width: 534px !important;
        left: 0 !important;
        top: 185px !important;
        margin: 0 !important;
        font-family: 'Raleway', var(--font-body), sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 18px !important;
        line-height: 21px !important;
        color: #FFFFFF !important;
    }

    .solution-desc-secondary {
        position: absolute !important;
        width: 534px !important;
        left: 0 !important;
        top: 290px !important;
        margin: 0 !important;
        font-family: 'Raleway', var(--font-body), sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 18px !important;
        line-height: 21px !important;
        color: #FFFFFF !important;
    }

    .solution-action .btn-cta-pink {
        position: absolute !important;
        width: 190px !important;
        height: 48px !important;
        left: 0 !important;
        top: 375px !important;
        background: #E80C46 !important;
        border-radius: 52px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        color: #FFFFFF !important;
    }

    .solution-right {
        position: absolute !important;
        width: 384px !important;
        left: 714px !important;
        top: 116px !important;
    }

    .topics-title {
        width: 334px !important;
        height: 20px !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 900 !important;
        font-size: 18px !important;
        line-height: 21px !important;
        color: #FFFFFF !important;
        margin: 0 0 23px 0 !important;
    }

    .topics-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 9px !important;
    }

    .topic-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 13px !important;
    }

    .plus-icon {
        width: 18px !important;
        height: 18px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        margin-top: 4px !important;
    }

    .plus-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .topic-text {
        color: #FFFFFF !important;
        font-family: 'Raleway', var(--font-body), sans-serif !important;
        font-style: normal !important;
        font-weight: 600 !important;
        font-size: 18px !important;
        line-height: 26px !important;
    }
}

/* Section 2.5: Mi az AI videógenerálás képzés Info Block - General & Mobile styles */
.terules-block {
    width: 100%;
    max-width: 980px;
    background: #189DA2;
    box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08);
    border-radius: 15px;
    padding: 24px 20px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.terules-block h4 {
    font-family: 'Raleway', var(--font-heading), sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-align: center;
}

.terules-block p {
    font-family: 'Raleway', var(--font-body), sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #ffffff;
    margin: 0;
    max-width: 100%;
    text-align: center;
}

/* Section 2.5: Mi az AI videógenerálás képzés Info Block */
@media (min-width: 1200px) {
    #mi-az-ai-kepzes .container {
        position: relative !important;
        width: 100% !important;
        max-width: 1133px !important;
        height: auto !important;
        padding: 0 24px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    #mi-az-ai-kepzes .section-title {
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 900 !important;
        font-size: 34px !important;
        line-height: 40px !important;
        color: #000000 !important;
        margin: 0 0 16px 0 !important;
    }

    #mi-az-ai-kepzes .container>p {
        font-family: 'Raleway', var(--font-body), sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 18px !important;
        line-height: 21px !important;
        color: #000000 !important;
        margin: 0 0 50px 0 !important;
        max-width: 800px !important;
    }

    #mi-az-ai-kepzes .terules-block {
        width: 980px !important;
        max-width: 980px !important;
        height: 120px !important;
        background: #189DA2 !important;
        box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08) !important;
        border-radius: 15px !important;
        margin: 0 auto 50px auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 40px !important;
        box-sizing: border-box !important;
    }

    #mi-az-ai-kepzes .terules-block h4 {
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 700 !important;
        font-size: 18px !important;
        line-height: 21px !important;
        color: #ffffff !important;
        margin: 0 0 10px 0 !important;
        text-align: center !important;
    }

    #mi-az-ai-kepzes .terules-block p {
        font-family: 'Raleway', var(--font-body), sans-serif !important;
        font-style: normal !important;
        font-weight: 700 !important;
        font-size: 18px !important;
        line-height: 21px !important;
        color: #ffffff !important;
        margin: 0 !important;
        max-width: 100% !important;
        text-align: center !important;
    }
}

.dark-theme-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

/* Section 3: Download Callout Card & Button */
.download-callout-card {
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

@media (min-width: 1200px) {
    .download-callout-card {
        position: relative !important;
        width: 100% !important;
        max-width: 960px !important;
        height: 220px !important;
        margin: 60px auto 0 auto !important;
        background: #1D2733 !important;
        border-radius: 15px !important;
        padding: 0 !important;
        overflow: hidden !important;
        border: none !important;
    }
}

@media (max-width: 1199px) {
    .download-callout-card {
        position: relative !important;
        width: 100% !important;
        max-width: 800px !important;
        margin: 50px auto 0 auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        background: #1D2733 !important;
        border-radius: 15px !important;
        padding: 60px 40px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
}

.download-callout-card:hover {
    border-color: rgba(20, 184, 166, 0.2);
    box-shadow: 0 30px 60px rgba(20, 184, 166, 0.08);
}

.download-title {
    color: #ffffff !important;
    text-align: center !important;
}

@media (min-width: 1200px) {
    .download-title {
        position: absolute !important;
        width: 741px !important;
        height: 40px !important;
        left: calc(50% - 741px/2 + 6.5px) !important;
        top: 35px !important;
        /* top: 2391px - 2332px */
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-style: normal !important;
        font-weight: 900 !important;
        font-size: 28px !important;
        line-height: 34px !important;
        margin: 0 !important;
    }
}

@media (max-width: 1199px) {
    .download-title {
        position: relative !important;
        font-family: 'Raleway', var(--font-heading), sans-serif !important;
        font-weight: 800 !important;
        font-size: 2rem !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }
}

.download-subtitle {
    color: #ffffff !important;
    text-align: center !important;
}

@media (min-width: 1200px) {
    .download-subtitle {
        position: absolute !important;
        width: 741px !important;
        height: 20px !important;
        left: calc(50% - 741px/2 + 6.5px) !important;
        top: 85px !important;
        /* top: 2444px - 2332px */
        font-family: 'Raleway', var(--font-body), sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        line-height: 21px !important;
        margin: 0 !important;
    }
}

@media (max-width: 1199px) {
    .download-subtitle {
        position: relative !important;
        font-family: 'Raleway', var(--font-body), sans-serif !important;
        font-weight: 500 !important;
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        max-width: 600px !important;
        margin: 0 auto 36px auto !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

.btn-download-ai {
    background-color: #189DA2 !important;
    color: #ffffff !important;
    padding: 12px 36px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
    border: none !important;
    cursor: pointer;
    display: inline-block !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.btn-download-ai:hover {
    background-color: #127c80 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(20, 184, 166, 0.4) !important;
}

.download-action {
    z-index: 10;
}

@media (min-width: 1200px) {
    .download-action {
        position: absolute !important;
        width: 210px !important;
        height: 48px !important;
        left: calc(50% - 210px/2) !important;
        bottom: 25px !important;
    }

    .btn-download-ai {
        position: absolute !important;
        width: 210px !important;
        height: 48px !important;
        left: 0 !important;
        top: 0 !important;
        background-color: #189DA2 !important;
        border-radius: 24px !important;
        font-family: 'Inter', var(--font-body), sans-serif !important;
        font-style: normal !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 18px !important;
        text-align: center !important;
        color: #FFFFFF !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }
}

@media (max-width: 1199px) {
    .download-action {
        position: relative !important;
        margin-top: 10px !important;
    }
}

/* Section 4: Milyen eredményt értek el? + Usecase Slider */
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0 20px 0;
}

@media (min-width: 1200px) {
    .outcome-grid {
        grid-template-columns: repeat(4, 282px) !important;
        justify-content: center !important;
        max-width: 1200px !important;
        margin: 40px auto 20px auto !important;
    }
}

.outcome-card {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 24px !important;
    min-height: 120px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.outcome-card p {
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 21px !important;
    color: #000000 !important;
    text-align: center !important;
    margin: 0 !important;
}

.outcome-card.active {
    background-color: #189DA2 !important;
    border: none !important;
    box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08) !important;
}

.outcome-card.active p {
    color: #ffffff !important;
}

.outcome-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0px 8px 50px rgba(29, 39, 51, 0.12) !important;
}

.outcome-highlight-text {
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 21px !important;
    text-align: center !important;
    color: #189DA2 !important;
    max-width: 792px !important;
    width: 100% !important;
    margin: 40px auto 0 auto !important;
}

.usecase-slider-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.slider-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
    min-height: 320px;
}

.slider-title {
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
    font-size: 2.3rem;
    font-weight: 900 !important;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.slider-title strong {
    font-weight: 900 !important;
}

.active-slide-title-container {
    margin-bottom: 40px;
    min-height: 90px;
    overflow: hidden;
}

.active-slide-title {
    font-family: 'Raleway', sans-serif !important;
    font-style: normal;
    font-weight: bold !important;
    font-size: 16px;
    line-height: 19px;
    color: #1D2733;
    margin-top: 15px;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.active-slide-desc {
    font-size: 1rem;
    color: var(--text-muted-light);
    margin: 0;
    line-height: 1.55;
    opacity: 0.75;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.slider-controls-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.slider-nav-buttons {
    display: flex;
    gap: 12px;
}

.slider-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#slider-prev-btn {
    background-color: rgba(20, 184, 166, 0.1);
    color: #189DA2;
}

#slider-next-btn {
    background-color: #dc2626;
    color: #ffffff;
}

.slider-nav-btn:hover {
    transform: scale(1.08);
}

.slider-progress-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted-light);
}

.progress-bar-bg {
    width: 180px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #189DA2;
    width: 25%;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-right {
    width: 100%;
}

.slider-image-frame {
    width: 100%;
    aspect-ratio: 1.6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    background-color: #f3f4f6;
    position: relative;
    transition: box-shadow 0.4s ease;
}

.slider-image-frame:hover {
    box-shadow: 0 28px 55px rgba(20, 184, 166, 0.12), 0 20px 45px rgba(0, 0, 0, 0.08);
}

.slider-active-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cinematic zoomed crop — image fills frame with slight zoom */
    transform: scale(1.05);
    transform-origin: center center;
    transition: opacity 0.4s ease-in-out, transform 0.55s ease-in-out;
}

.slider-image-frame:hover .slider-active-image {
    transform: scale(1.1);
}

/* Slide-out state: used briefly during transition */
.slider-active-image.slide-out-left {
    opacity: 0;
    transform: scale(1.05) translateX(-30px);
}

.slider-active-image.slide-out-right {
    opacity: 0;
    transform: scale(1.05) translateX(30px);
}

/* Text parallax states */
.active-slide-title.text-exit {
    opacity: 0;
    transform: translateX(-18px);
}

.active-slide-desc.text-exit {
    opacity: 0;
    transform: translateX(-18px);
}

@media (max-width: 991px) {
    .outcome-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .usecase-slider-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slider-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .outcome-grid {
        grid-template-columns: 1fr;
    }
}

/* Section 5: Kinek szól a képzés? (Interactive Split-Panel Targets) */
.targets-container-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
}

.targets-container-box::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.targets-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.targets-section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.targets-section-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.targets-image-frame {
    width: 100%;
    aspect-ratio: 1.45;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    background-color: #0f172a;
    position: relative;
}

.targets-active-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cinematic zoom crop */
    transform: scale(1.05);
    transform-origin: center center;
    transition: opacity 0.45s ease-in-out, transform 0.55s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

/* Outgoing image state: fade out + subtle parallax */
.targets-active-image.targets-img-exit {
    opacity: 0;
    transform: scale(1.1) translateX(-15px);
}

.targets-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

@media (min-width: 1200px) {
    .targets-right {
        margin-top: 160px !important;
    }
}

.targets-tab-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.targets-tab-item {
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Inactive: strongly muted */
    opacity: 0.3;
    background-color: transparent;
    border-radius: 12px;
}

.targets-tab-item:hover {
    opacity: 0.65;
}

.targets-tab-item.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: none !important;
}

.targets-tab-heading {
    /* Inactive: cool grey */
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.45rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
    transition: color 0.35s ease;
}

.targets-tab-item.active .targets-tab-heading {
    /* Active: full white */
    color: #ffffff;
    font-weight: 800;
}

.targets-tab-desc {
    font-family: 'Raleway', var(--font-body), sans-serif !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.35s ease;
}

.targets-tab-item.active .targets-tab-desc {
    color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 991px) {
    .targets-container-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .targets-section-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .targets-container-box {
        padding: 24px;
        gap: 30px;
    }

    .targets-tab-item {
        padding: 16px 18px;
    }

    .targets-tab-heading {
        font-size: 1.25rem;
    }
}

/* Section 6: 4 ok, amiért a WebbySkill-t válasszátok (Why Choose Us Cards Grid) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.why-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.why-card-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000000;
    transition: all 0.4s ease;
    line-height: 1;
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    transition: color 0.4s ease;
}

.why-card-desc {
    font-family: 'Raleway', var(--font-body), sans-serif !important;
    font-size: 0.95rem;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
    transition: color 0.4s ease;
}

.why-card.active {
    background-color: #189DA2;
    border-color: #189DA2;
    box-shadow: 0 20px 45px rgba(24, 157, 162, 0.35);
    transform: translateY(-6px);
}

.why-card.active .why-card-num {
    color: #ffffff;
}

.why-card.active .why-card-title {
    color: #ffffff;
    font-weight: 800;
}

.why-card.active .why-card-desc {
    color: #ffffff;
}

.why-card:not(.active) {
    cursor: pointer;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Section 7: Mit ad a képzés? (Premium Split Section & Bottom Certificate layout) */
.what-gives-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 60px;
    align-items: flex-start !important;
    margin-bottom: 60px !important;
}

@media (min-width: 1200px) {
    .what-gives-grid {
        display: flex !important;
        justify-content: space-between !important;
        gap: 40px !important;
        max-width: 1200px !important;
        margin: 0 auto 60px auto !important;
    }
    .what-gives-left {
        max-width: 561px !important;
        width: 100% !important;
    }
}

.what-gives-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.what-gives-p {
    font-family: 'Raleway', sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 21px !important;
    color: #000000 !important;
    margin-bottom: 14px !important;
    text-indent: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.what-gives-p:last-child {
    margin-bottom: 0 !important;
}

.what-gives-right-card {
    background-color: #189DA2 !important;
    border-radius: 15px !important;
    padding: 48px !important;
    color: #ffffff !important;
    box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    box-sizing: border-box !important;
}

@media (min-width: 1200px) {
    .what-gives-right-card {
        max-width: 535px !important;
        width: 100% !important;
        height: 384px !important;
    }
    .what-gives-card-list {
        max-width: 384px !important;
        width: 100% !important;
    }
}

.what-gives-card-title {
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
    font-style: normal !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    line-height: 21px !important;
    margin: 0 !important;
    color: #ffffff !important;
}

.what-gives-card-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.what-gives-card-list li {
    font-family: 'Raleway', var(--font-body), sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 26px !important;
    color: #ffffff !important;
    position: relative !important;
    padding-left: 20px !important;
    margin-bottom: 12px !important;
}

.what-gives-card-list li:last-child {
    margin-bottom: 0 !important;
}

.what-gives-card-list li::before {
    content: "•" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 1.1rem !important;
    color: #ffffff !important;
    line-height: 26px !important;
}

.certificate-container-card {
    background-color: rgba(24, 157, 162, 0.15) !important;
    border-radius: 10px;
    min-height: 140px;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08);
    border: none;
    box-sizing: border-box;
}

.certificate-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.certificate-card-title {
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
    font-size: 21px;
    line-height: 25px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.certificate-card-desc {
    font-family: 'Raleway', sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;

    color: #000000;
}

.certificate-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.certificate-preview-img {
    width: 160px;
    aspect-ratio: 1.414;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: none;
}

@media (max-width: 991px) {
    .what-gives-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certificate-container-card {
        flex-direction: column;
        padding: 20px 24px;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .certificate-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .certificate-preview-img {
        width: 100%;
        max-width: 320px;
    }
}

/* Section 8: Mit fogtok megtanulni a képzésen? (Interactive Light Accordion Section) */
.curriculum-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.curriculum-item {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.curriculum-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.curriculum-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.curriculum-icon {
    color: #189DA2;
    transition: transform 0.35s ease, color 0.3s ease;
    flex-shrink: 0;
}

.curriculum-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.curriculum-content-inner {
    padding: 0 30px 24px 30px;
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

/* Active curriculum states */
.curriculum-item.active {
    background-color: #f0fdfa;
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.04);
}

.curriculum-item.active .curriculum-title {
    color: #000000;
}

.curriculum-item.active .curriculum-icon {
    transform: rotate(180deg);
    color: #0f766e;
}

.curriculum-item:hover:not(.active) {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .curriculum-header {
        padding: 20px;
    }

    .curriculum-content-inner {
        padding: 0 20px 20px 20px;
    }

    .curriculum-title {
        font-size: 1.05rem;
    }
}

/* Section 9: Bizonyított Működés & Képességek (Comparison and 5-Card Grid) */
.comparison-slide {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.capability-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    min-height: 180px;
}

.capability-icon {
    color: #189DA2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.capability-card-title {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
    transition: all 0.3s ease;
}

/* Active State for capability-card */
.capability-card.active {
    background-color: #189DA2;
    border-color: #189DA2;
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.25);
    transform: translateY(-4px);
}

.capability-card.active .capability-icon {
    color: #ffffff;
}

.capability-card.active .capability-card-title {
    color: #ffffff;
}

.capability-card:hover:not(.active) {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1200px) {
    .capabilities-grid {
        position: relative;
        width: 1200px;
        max-width: 1200px;
        height: 120px;
        margin: 20px auto 0 auto;
    }

    .capability-card {
        position: absolute !important;
        width: 221px !important;
        height: 120px !important;
        top: 0 !important;
        background: #FFFFFF !important;
        box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08) !important;
        border-radius: 15px !important;
        padding: 16px 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        min-height: auto !important;
        margin: 0 !important;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    .capability-card.active {
        background: #189DA2 !important;
        box-shadow: 0px 10px 40px rgba(24, 157, 162, 0.3) !important;
        transform: translateY(-4px) !important;
    }

    .capability-card:hover:not(.active) {
        transform: translateY(-4px) !important;
        box-shadow: 0px 10px 40px rgba(29, 39, 51, 0.15) !important;
    }

    .capability-card:nth-child(1) {
        left: 0 !important;
    }

    .capability-card:nth-child(2) {
        left: 245px !important;
    }

    .capability-card:nth-child(3) {
        left: 489px !important;
    }

    .capability-card:nth-child(4) {
        left: 734px !important;
    }

    .capability-card:nth-child(5) {
        left: 979px !important;
    }

    .capability-card .capability-icon svg {
        width: 30px !important;
        height: 30px !important;
    }

    .capability-card-title {
        font-size: 0.88rem !important;
        line-height: 1.35 !important;
        font-weight: 500 !important;
        color: var(--text-dark) !important;
    }

    .capability-card.active .capability-card-title {
        color: #ffffff !important;
    }
}

@media (max-width: 991px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

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

@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Section 10: Konkrét videós outputok & Ajánlatkérés */
.output-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.output-card {
    background-color: #ffffff;
    border: 2px solid transparent;
    border-radius: 15px;
    width: 100%;
    max-width: 384px;
    height: 290px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.output-card-icon {
    width: 48px;
    height: 48px;
    background-color: #189DA2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.output-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.output-card-desc {
    font-size: 0.98rem;
    color: #334155;
    margin: 0;
    line-height: 1.5;
}

/* Active State */
.output-card.active {
    background: radial-gradient(100% 100% at 0% 0%, #f0fdfa 0%, #ccfbf1 100%) !important;
    box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08) !important;
    transform: translateY(-6px);
    border-color: transparent !important;
}

.output-card.active .output-card-title {
    color: #189DA2 !important;
}

.output-card.active .output-card-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

.output-card:hover:not(.active) {
    transform: translateY(-6px);
    border-color: #189DA2;
    box-shadow: 0px 1px 40px rgba(29, 39, 51, 0.08);
}

.cta-dark-panel .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 12, 70, 0.35);
}

.cta-dark-panel .btn:last-child:hover {
    background-color: rgba(24, 157, 162, 0.65) !important;
    box-shadow: none;
}

@media (max-width: 991px) {
    .output-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .output-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Section 11: Kiktől tanultok? */
.instructor-profile-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.instructor-profile-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(20, 184, 166, 0.22) !important;
    border-color: rgba(20, 184, 166, 0.4) !important;
}

@media (max-width: 991px) {
    .instructor-split-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .instructor-left-col {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .instructor-cards-wrapper {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .instructor-profile-card {
        aspect-ratio: 0.9 !important;
    }
}

/* Section 12: Mit mondanak a résztvevők? */
.testimonial-pills-wrapper {
    display: flex;
    gap: 15px;
    height: 500px;
    align-items: stretch;
    width: 100%;
}

.testimonial-pill {
    flex: 1;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
}

.testimonial-pill-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-pill-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 2;
}

.testimonial-quote {
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #ffffff;
}

.testimonial-author {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Active Pill State */
.testimonial-pill.active {
    flex: 2.8;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-pill.active .testimonial-pill-overlay {
    opacity: 1;
}

.testimonial-pill.active .testimonial-pill-content {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .testimonial-pills-wrapper {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .testimonial-pill {
        flex: none;
        width: 100%;
        height: 100px;
        aspect-ratio: auto;
    }

    .testimonial-pill.active {
        height: 220px;
        flex: none;
    }

    .testimonial-pill-content {
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 6px;
    }
}

/* Section 13: Gyakran Ismételt Kérdések */
.faq-uj-item {
    background-color: #ffffff;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 4px rgba(16, 77, 77, 0.1);
    max-width: 792px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-uj-header {
    width: 100%;
    padding: 15.5px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-uj-title {
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    transition: all 0.3s ease;
}

.faq-uj-icon {
    color: #104D4D;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-uj-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-uj-content-inner {
    padding: 0 32px 28px 32px;
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

/* Active State */
.faq-uj-item.active {
    background: #EFFFFB !important;
    box-shadow: 0px 4px 4px rgba(16, 77, 77, 0.1) !important;
}

.faq-uj-item.active .faq-uj-title {
    color: #000000 !important;
}

.faq-uj-item.active .faq-uj-icon {
    transform: rotate(-135deg);
    color: #FFFFFF !important;
    stroke-width: 3.5px;
}

.faq-uj-item:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(16, 77, 77, 0.15);
}

/* Section 14: Final Call To Action Card */
.cta-white-card {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0px 20px 80px rgba(24, 157, 162, 0.18), 0px 1px 40px rgba(29, 39, 51, 0.08) !important;
}

.cta-white-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 30px 100px rgba(24, 157, 162, 0.3), 0px 1px 40px rgba(29, 39, 51, 0.12) !important;
}

.cta-white-card .btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.cta-white-card .btn:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 12, 70, 0.35) !important;
}

.cta-white-card .btn:last-child:hover {
    transform: translateY(-2px) !important;
    background-color: rgba(24, 157, 162, 0.15) !important;
    box-shadow: 0 12px 30px rgba(24, 157, 162, 0.4) !important;
}

@media (max-width: 768px) {
    .cta-white-card {
        padding: 50px 24px !important;
        border-radius: 24px !important;
    }

    .cta-white-card h3 {
        font-size: 1.8rem !important;
    }
}

/* Section 15: Erre ad megoldást a helyszíni képzésünk */
@media (max-width: 991px) {
    .solution-dark-panel {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        padding: 50px 36px !important;
        border-radius: 24px !important;
    }

    .solution-left {
        align-items: center !important;
        text-align: center !important;
    }
}

@media (max-width: 640px) {
    .solution-dark-panel {
        padding: 40px 24px !important;
        gap: 40px !important;
    }

    .solution-dark-panel h2 {
        font-size: 1.85rem !important;
    }
}

/* Section 16: Milyen eredményt értek el (Fluid interactive cards) */
.result-fluid-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.result-fluid-card.active {
    background-color: #189DA2 !important;
    border-color: #189DA2 !important;
    box-shadow: 0 20px 45px rgba(20, 184, 166, 0.22) !important;
    transform: translateY(-5px);
}

.result-fluid-card.active .result-fluid-card-title {
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .results-interactive-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 576px) {
    .results-interactive-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .result-fluid-card {
        padding: 35px 24px !important;
        min-height: 120px !important;
    }
}

/* Footer Section */
.footer {
    background: hsl(222, 47%, 4%);
    padding: 80px 0 40px 0;
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    border-top: none !important; /* Explicitly override and remove top border divider line */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-desc {
    margin-bottom: 20px;
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: none !important; /* Explicitly override and remove inner bottom border divider line */
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-dark);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-turquoise);
}

/* ==========================================================================
   MOBILE & TABLET OPTIMIZATION (iPhone, Android, and Tablets)
   ========================================================================== */

@media (max-width: 1199px) {
    /* 1. Fluid Layout & Body / Hero fixes */
    body {
        padding-top: 80px !important; /* Navbar height */
        background-image: none !important; /* Remove fixed desktop background gradient */
        background-color: var(--bg-dark) !important;
    }

    .hero {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: calc(100vh - 80px) !important;
        left: 0 !important;
        top: 0 !important;
        padding: 60px 24px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* 2. Hero Content Flow and centering */
    .hero-title {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 20px auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        text-align: center !important;
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
        padding: 0 !important;
    }

    .hero-subtitle {
        position: relative !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto 30px auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        color: #cbd5e1 !important;
        padding: 0 !important;
    }

    .hero-actions {
        position: relative !important;
        width: 100% !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 16px !important;
    }

    .hero-actions .btn-cta-pink,
    .hero-actions .btn-cta-teal {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        flex: 1 1 0px !important;
    }

    /* 3. Responsive Badges stacking */
    .hero-badge-bar {
        position: relative !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 40px auto 0 auto !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 0 !important;
    }

    .hero-badge-bar .hero-badge-pill {
        position: relative !important;
        width: 100% !important;
        max-width: 270px !important;
        min-width: 190px !important;
        height: 48px !important;
        flex: 1 1 190px !important;
        padding: 0 16px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 991px) {
    /* 4. Overriding inline style heights for testimonials & specific grids */
    .testimonial-pills-wrapper {
        flex-direction: column !important;
        height: auto !important;
        gap: 15px !important;
    }

    .output-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .instructor-desc-p {
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto 20px auto !important;
    }

    .instructor-left-col {
        text-align: center !important;
        padding-top: 0 !important;
    }
    
    .instructor-main-title {
        text-align: center !important;
    }

    .what-gives-right-card {
        padding: 30px !important;
    }

    .slider-left {
        min-height: auto !important;
        gap: 16px !important;
    }

    .active-slide-title-container {
        min-height: auto !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 16px !important;
    }

    .hero-title {
        font-size: 1.95rem !important;
        line-height: 1.3 !important;
    }

    .hero-actions {
        flex-direction: column !important; /* Stack buttons vertically on mobile */
        gap: 12px !important;
    }

    /* 5. Overriding inline styles in index.html with !important */
    .output-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .cta-dark-panel {
        padding: 40px 20px !important;
        min-height: auto !important;
    }

    .cta-white-card {
        padding: 40px 20px !important;
        min-height: auto !important;
    }

    .download-callout-card {
        padding: 40px 20px !important;
        min-height: auto !important;
    }

    /* Reduce vertical gaps and paddings across all sections on mobile */
    .section-padding {
        padding: 50px 0 !important;
    }

    /* Reduce what-gives card padding on mobile */
    .what-gives-right-card {
        padding: 24px 20px 24px 32px !important;
    }
}


/* Hero phone CTA */
.btn-cta-phone {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

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

@media (max-width: 768px) {
    .hero-actions {
        gap: 12px;
    }

    .btn-cta-phone {
        width: 100%;
        justify-content: center;
    }
}

/* v3 requested refinements: only nav/support CTA, cleaner hero phone link */
.nav-menu {
    display: none !important;
}

.btn-login {
    padding-left: 28px !important;
    padding-right: 28px !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
}

@media (min-width: 992px) {
    .btn-login {
        left: auto !important;
        right: 119px !important;
        width: auto !important;
        min-width: 150px !important;
        padding-left: 28px !important;
        padding-right: 28px !important;
        font-weight: 700 !important;
    }
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: #ffffff;
    font-family: 'Raleway', var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.95;
}

.hero-phone-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (min-width: 1200px) {
    .hero-actions {
        width: 620px !important;
    }

    .hero-phone-link {
        position: absolute !important;
        left: 214px !important;
        top: 0 !important;
        height: 48px !important;
    }

    .btn-cta-teal {
        left: 380px !important;
    }
}

@media (max-width: 1199px) {
    .hero-phone-link {
        width: 100%;
        justify-content: center;
        margin: 2px 0;
    }
}


/* Final hero phone + AI tool logo strip */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hero-phone-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Raleway', var(--font-heading), sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.hero-phone-link {
    display: inline !important;
    min-height: 0 !important;
    height: auto !important;
    color: #ffffff;
    font-family: 'Raleway', var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.96;
    margin-left: 6px;
}

.hero-phone-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero-tool-logos {
    z-index: 10;
    box-sizing: border-box;
    opacity: 0.82;
}

.hero-tool-logos-img {
    display: block;
    width: 100%;
    max-width: 980px;
    height: auto;
    max-height: 36px;
    object-fit: contain;
}

@media (min-width: 1200px) {
    .hero-actions {
        width: 720px !important;
    }

    .hero-phone-note {
        position: absolute !important;
        left: 210px !important;
        top: 0 !important;
        height: 48px !important;
    }

    .hero-phone-link {
        position: static !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
    }

    .btn-cta-teal {
        left: 430px !important;
    }

    .hero-tool-logos {
        position: absolute !important;
        left: 119px !important;
        top: 650px !important;
        width: 1202px !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 1199px) {
    .hero-phone-note {
        width: 100%;
        justify-content: center;
        margin: 2px 0;
        white-space: normal;
        text-align: center;
    }

    .hero-tool-logos {
        position: relative !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 28px auto 0 auto !important;
        padding: 0 24px !important;
        display: flex !important;
        justify-content: center !important;
    }

    .hero-tool-logos-img {
        max-height: 28px;
    }
}

@media (max-width: 640px) {
    .hero-tool-logos-img {
        max-height: 24px;
    }
}

/* Final testimonial tuning for 6 pillars */
.testimonial-pill {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.45;
}

.testimonial-author {
    font-weight: 700;
}

@media (max-width: 991px) {
    .testimonial-pill.active {
        height: 260px;
    }
}


/* v5 hero CTA + tool logo strip final tuning */
.hero-primary-cta {
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .hero-actions {
        width: 410px !important;
        height: 76px !important;
        left: 119px !important;
        top: 462px !important;
    }

    .hero-primary-cta {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 190px !important;
    }

    .hero-primary-cta .btn-cta-pink {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 190px !important;
        height: 48px !important;
    }

    .hero-actions > .btn-cta-teal {
        left: 214px !important;
        top: 0 !important;
    }
}

.hero-phone-note {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 8px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.hero-phone-link {
    margin-left: 4px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

@media (min-width: 1200px) {
    .hero-phone-note {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 190px !important;
    }
}

@media (max-width: 1199px) {
    .hero-primary-cta {
        width: 100% !important;
    }

    .hero-primary-cta .btn-cta-pink {
        width: 100% !important;
    }

    .hero-phone-note {
        width: 100% !important;
        margin: 8px 0 2px 0 !important;
    }
}

.hero-tool-logos-section {
    width: 100%;
    box-sizing: border-box;
    padding: 26px 24px 22px;
    background: #ffffff;
}

.hero-tool-logos-section .hero-tool-logos {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: min(980px, 100%) !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.82;
}

.hero-tool-logos-section .hero-tool-logos-img {
    width: 100% !important;
    max-width: 980px !important;
    height: auto !important;
    max-height: 36px !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 1199px) {
    .hero-tool-logos-section {
        padding: 22px 24px 18px;
    }

    .hero-tool-logos-section .hero-tool-logos {
        max-width: 600px !important;
    }

    .hero-tool-logos-section .hero-tool-logos-img {
        max-height: 28px !important;
    }
}

@media (max-width: 640px) {
    .hero-tool-logos-section {
        padding: 18px 18px 14px;
    }

    .hero-tool-logos-section .hero-tool-logos-img {
        max-height: 24px !important;
    }
}

/* v5 "Amit kapni fogtok" card vertical alignment tuning */
.what-gives-right-card {
    padding: 34px 44px !important;
    gap: 14px !important;
}

@media (min-width: 1200px) {
    .what-gives-right-card {
        justify-content: center !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

@media (max-width: 767px) {
    .what-gives-right-card {
        padding: 30px 26px !important;
    }
}


/* v6 final refinements: nav phone, hero CTA, larger tool logos and output-card icons */
.nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Raleway', var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-phone:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (min-width: 992px) {
    .nav-cta {
        position: absolute !important;
        right: 119px !important;
        top: 19px !important;
        height: 42px !important;
        display: flex !important;
        align-items: center !important;
        gap: 22px !important;
    }

    .nav-cta .btn-login {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        height: 42px !important;
    }
}

@media (max-width: 991px) {
    .nav-cta {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin-left: auto;
        margin-right: 18px;
    }

    .nav-phone {
        font-size: 12px;
    }

    .nav-cta .btn-login {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

@media (max-width: 640px) {
    .nav-phone {
        display: none;
    }
}

@media (min-width: 1200px) {
    .hero-actions {
        width: 410px !important;
        height: 48px !important;
        left: 119px !important;
        top: 462px !important;
    }

    .hero-primary-cta {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 190px !important;
        height: 48px !important;
    }

    .hero-primary-cta .btn-cta-pink {
        width: 190px !important;
        height: 48px !important;
    }

    .hero-actions > .btn-cta-teal {
        left: 214px !important;
        top: 0 !important;
    }
}

.hero-phone-note,
.hero-phone-link {
    display: none !important;
}

.hero-tool-logos-section {
    padding: 30px 24px 26px !important;
}

.hero-tool-logos-section .hero-tool-logos {
    width: min(1200px, 100%) !important;
    max-width: 1200px !important;
    opacity: 1 !important;
}

.hero-tool-logos-section .hero-tool-logos-img {
    width: 100% !important;
    max-width: 1200px !important;
    max-height: 68px !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 1199px) {
    .hero-tool-logos-section {
        padding: 24px 20px 22px !important;
    }

    .hero-tool-logos-section .hero-tool-logos {
        max-width: 900px !important;
    }

    .hero-tool-logos-section .hero-tool-logos-img {
        max-height: 54px !important;
    }
}

@media (max-width: 640px) {
    .hero-tool-logos-section {
        padding: 18px 18px 16px !important;
        overflow: hidden;
    }

    .hero-tool-logos-section .hero-tool-logos {
        width: 720px !important;
        max-width: none !important;
        transform: translateX(-8px);
        justify-content: flex-start !important;
    }

    .hero-tool-logos-section .hero-tool-logos-img {
        max-height: 40px !important;
    }
}

.output-card-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.output-card-icon {
    color: #ffffff !important;
}



/* === v7 refinements === */
.hero-tool-logos-section {
    padding: 26px 24px 18px !important;
}
.hero-tool-logos-section .hero-tool-logos {
    width: min(1280px, 100%) !important;
    max-width: 1280px !important;
}
.hero-tool-logos-section .hero-tool-logos-img {
    display: block !important;
    width: 100% !important;
    max-width: 1280px !important;
    height: auto !important;
    margin: 0 auto !important;
}

.output-card {
    height: auto !important;
    min-height: 220px !important;
    padding: 28px 30px 26px !important;
    justify-content: flex-start !important;
}
.output-card h3,
.output-card .output-card-title {
    margin-top: 0 !important;
}
.output-card p,
.output-card .output-card-desc {
    margin-top: 14px !important;
}
.output-card .output-card-icon {
    display: none !important;
}

.testimonial-pill-content {
    backdrop-filter: none;
}

@media (max-width: 1199px) {
    .hero-tool-logos-section .hero-tool-logos {
        width: min(1100px, 100%) !important;
        max-width: 1100px !important;
    }
}
@media (max-width: 991px) {
    .output-card {
        min-height: 190px !important;
        padding: 24px 24px 22px !important;
    }
    .hero-tool-logos-section {
        padding: 22px 18px 16px !important;
    }
    .hero-tool-logos-section .hero-tool-logos-img {
        width: 100% !important;
    }
}
@media (max-width: 767px) {
    .output-card {
        min-height: 0 !important;
        padding: 22px 20px 20px !important;
    }
}


/* Vimeo video embeds in "Mire használható az AI videógenerálás?" slider */
.slider-image-frame {
    background-color: #000 !important;
    overflow: hidden !important;
}

.slider-active-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 125% !important;
    height: 125% !important;
    max-width: none !important;
    max-height: none !important;
    border: 0 !important;
    display: block !important;
    object-fit: cover !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
    transform-origin: center center !important;
    transition: opacity 0.4s ease-in-out, transform 0.55s ease-in-out !important;
    pointer-events: none !important;
}

.slider-image-frame:hover .slider-active-video {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.slider-active-video.slide-out-left {
    opacity: 0 !important;
    transform: translate(-56%, -50%) scale(1.05) !important;
}

.slider-active-video.slide-out-right {
    opacity: 0 !important;
    transform: translate(-44%, -50%) scale(1.05) !important;
}

.active-slide-desc {
    font-size: 1rem;
    color: var(--text-muted-light);
    margin: 10px 0 0 0;
    line-height: 1.55;
    opacity: 0.78;
    max-width: 520px;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

@media (max-width: 768px) {
    .slider-active-video {
        width: 138% !important;
        height: 138% !important;
    }
}


/* === vimeo-v3 requested fixes === */

/* Use-case slider: make the explanatory text visible under the title */
.active-slide-title-container {
    min-height: 150px !important;
    margin-bottom: 28px !important;
}
.active-slide-title {
    margin-bottom: 12px !important;
}
.active-slide-desc {
    display: block !important;
    font-family: 'Raleway', var(--font-body), sans-serif !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    font-weight: 500 !important;
    color: #475569 !important;
    opacity: 1 !important;
    max-width: 520px !important;
    margin: 0 !important;
}

/* Vimeo crop: enlarge iframe to cut top/bottom letterbox bars */
.slider-image-frame {
    background-color: #000 !important;
    overflow: hidden !important;
}
.slider-active-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 155% !important;
    height: 155% !important;
    max-width: none !important;
    max-height: none !important;
    border: 0 !important;
    display: block !important;
    object-fit: cover !important;
    transform: translate(-50%, -50%) scale(1.08) !important;
    transform-origin: center center !important;
    transition: opacity 0.4s ease-in-out, transform 0.55s ease-in-out !important;
    pointer-events: none !important;
}
.slider-image-frame:hover .slider-active-video {
    transform: translate(-50%, -50%) scale(1.12) !important;
}
.slider-active-video.slide-out-left {
    opacity: 0 !important;
    transform: translate(-58%, -50%) scale(1.08) !important;
}
.slider-active-video.slide-out-right {
    opacity: 0 !important;
    transform: translate(-42%, -50%) scale(1.08) !important;
}

/* Kinek szól a képzés: inactive tab texts should be more readable */
.targets-tab-item {
    opacity: 1 !important;
}
.targets-tab-item:not(.active) .targets-tab-heading {
    color: rgba(255, 255, 255, 0.74) !important;
}
.targets-tab-item:not(.active) .targets-tab-desc {
    color: rgba(255, 255, 255, 0.66) !important;
}
.targets-tab-item:hover .targets-tab-heading {
    color: rgba(255, 255, 255, 0.9) !important;
}
.targets-tab-item:hover .targets-tab-desc {
    color: rgba(255, 255, 255, 0.78) !important;
}

@media (max-width: 768px) {
    .active-slide-title-container {
        min-height: 145px !important;
    }
    .active-slide-desc {
        font-size: 15px !important;
    }
    .slider-active-video {
        width: 175% !important;
        height: 175% !important;
    }
}


/* v4: static use-case copy, stronger video crop, slightly darker inactive target text */
.slider-active-video {
    width: 155% !important;
    height: 155% !important;
    transform: translate(-50%, -50%) scale(1.12) !important;
}

.slider-image-frame:hover .slider-active-video {
    transform: translate(-50%, -50%) scale(1.16) !important;
}

.slider-active-video.slide-out-left {
    opacity: 0 !important;
    transform: translate(-58%, -50%) scale(1.12) !important;
}

.slider-active-video.slide-out-right {
    opacity: 0 !important;
    transform: translate(-42%, -50%) scale(1.12) !important;
}

.active-slide-title-container {
    min-height: 150px !important;
}

.active-slide-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
    max-width: 560px !important;
}

.active-slide-desc {
    max-width: 560px !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    color: #475569 !important;
    opacity: 1 !important;
}

.targets-tab-item:not(.active) .targets-tab-heading {
    color: rgba(255, 255, 255, 0.72) !important;
}

.targets-tab-item:not(.active) .targets-tab-desc {
    color: rgba(226, 232, 240, 0.68) !important;
}

@media (max-width: 768px) {
    .slider-active-video {
        width: 170% !important;
        height: 170% !important;
    }

    .active-slide-title-container {
        min-height: auto !important;
    }
}


/* v5: slightly darker inactive target tab text + professional static use-case copy */
.targets-tab-item:not(.active) .targets-tab-heading {
    color: rgba(255, 255, 255, 0.62) !important;
}

.targets-tab-item:not(.active) .targets-tab-desc {
    color: rgba(226, 232, 240, 0.56) !important;
}


/* v6: vertical spacing and inner padding refinement */
#kinek-szol,
#megoldas-kepzes,
#mi-az-ai-kepzes,
#eredmenyek-es-hasznalat,
#kinek-szol-kifejezetten,
#miert-webbyskill,
#mit-ad-a-kepzes,
#tanterv-accordion,
#bizonyitott-mukodes,
#konkret-outputok {
    padding-top: 68px !important;
    padding-bottom: 72px !important;
}

#megoldas-kepzes {
    padding-top: 56px !important;
}

#kiktol-tanultok,
#resztvevok,
#faq-uj {
    padding-top: 76px !important;
    padding-bottom: 84px !important;
}

#ajanlatkeres {
    padding-top: 60px !important;
    padding-bottom: 92px !important;
}

.hero-tool-logos-section {
    padding-top: 24px !important;
    padding-bottom: 22px !important;
}

.section-header {
    margin-bottom: 42px !important;
}

.section-header.centered {
    margin-bottom: 42px !important;
}

.problem-grid {
    margin-bottom: 36px !important;
}

.problem-footer-text {
    margin-top: 36px !important;
}

.solution-card-container,
.targets-container-box {
    padding: 48px !important;
    gap: 48px !important;
}

.outcome-grid {
    margin-bottom: 34px !important;
}

.outcome-highlight-text {
    margin-top: 30px !important;
    margin-bottom: 48px !important;
}

.usecase-slider-container {
    gap: 48px !important;
}

.slider-left {
    min-height: 300px !important;
}

.active-slide-title-container {
    min-height: 132px !important;
    margin-bottom: 30px !important;
}

.slider-title {
    margin-bottom: 18px !important;
}

.slider-controls-group {
    gap: 18px !important;
}

.targets-left {
    gap: 18px !important;
}

.targets-section-subtitle {
    margin-bottom: 4px !important;
}

.targets-tab-list {
    gap: 14px !important;
}

.targets-tab-item {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
}

.why-grid,
.capabilities-grid,
.output-cards-grid {
    gap: 24px !important;
}

.output-cards-grid {
    margin-bottom: 56px !important;
}

.what-gives-grid {
    margin-bottom: 48px !important;
}

.what-gives-right-card {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.curriculum-accordion,
.faq-uj-accordion {
    gap: 14px !important;
}

.cta-dark-panel {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    min-height: 0 !important;
}

.download-callout-card,
.cta-white-card {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
}

.instructor-split-container {
    gap: 48px !important;
}

.instructor-cards-wrapper {
    gap: 24px !important;
}

.testimonial-pills-wrapper {
    height: 460px !important;
}

@media (max-width: 991px) {
    #kinek-szol,
    #megoldas-kepzes,
    #mi-az-ai-kepzes,
    #eredmenyek-es-hasznalat,
    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj,
    #ajanlatkeres {
        padding-top: 52px !important;
        padding-bottom: 56px !important;
    }

    .solution-card-container,
    .targets-container-box {
        padding: 36px 28px !important;
        gap: 34px !important;
    }

    .usecase-slider-container,
    .instructor-split-container {
        gap: 34px !important;
    }

    .active-slide-title-container {
        min-height: auto !important;
        margin-bottom: 24px !important;
    }

    .testimonial-pills-wrapper {
        height: auto !important;
    }
}

@media (max-width: 640px) {
    #kinek-szol,
    #megoldas-kepzes,
    #mi-az-ai-kepzes,
    #eredmenyek-es-hasznalat,
    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj,
    #ajanlatkeres {
        padding-top: 44px !important;
        padding-bottom: 48px !important;
    }

    .section-header,
    .section-header.centered {
        margin-bottom: 32px !important;
    }

    .solution-card-container,
    .targets-container-box,
    .download-callout-card,
    .cta-white-card,
    .cta-dark-panel {
        padding: 30px 20px !important;
    }
}


/* v7: targeted vertical spacing corrections only */
@media (min-width: 1200px) {
    .download-callout-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important;
        height: 220px !important;
        padding: 34px 40px !important;
    }

    .download-title,
    .download-subtitle,
    .download-action,
    .download-action .btn-download-ai {
        position: static !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .download-title {
        width: auto !important;
        height: auto !important;
        max-width: 820px !important;
    }

    .download-subtitle {
        width: auto !important;
        height: auto !important;
        max-width: 760px !important;
    }

    .download-action {
        width: auto !important;
        height: auto !important;
        margin-top: 8px !important;
    }

    .download-action .btn-download-ai {
        width: 210px !important;
        height: 48px !important;
    }

    #megoldas-kepzes {
        padding-top: 70px !important;
        padding-bottom: 54px !important;
    }

    #kinek-szol-kifejezetten {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 1199px) {
    .download-callout-card {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    #megoldas-kepzes {
        padding-top: 64px !important;
        padding-bottom: 52px !important;
    }

    #kinek-szol-kifejezetten {
        padding-top: 58px !important;
        padding-bottom: 58px !important;
    }
}


/* final: Kinek szól a képzés dark card vertical balance */
@media (min-width: 1200px) {
    #kinek-szol-kifejezetten .targets-container-box {
        padding-top: 38px !important;
        padding-bottom: 48px !important;
        align-items: start !important;
    }

    #kinek-szol-kifejezetten .targets-right {
        margin-top: 106px !important;
    }
}

@media (max-width: 1199px) {
    #kinek-szol-kifejezetten .targets-container-box {
        padding-top: 34px !important;
        padding-bottom: 42px !important;
    }
}


/* final targeted top-padding polish: solution block + output cards only */
@media (min-width: 1200px) {
    #megoldas-kepzes .solution-title {
        top: 54px !important;
    }

    #megoldas-kepzes .solution-desc-highlight {
        top: 172px !important;
    }

    #megoldas-kepzes .solution-desc-secondary {
        top: 274px !important;
    }

    #megoldas-kepzes .solution-action .btn-cta-pink {
        top: 354px !important;
    }

    #megoldas-kepzes .solution-right {
        top: 98px !important;
    }

    #konkret-outputok .output-card {
        padding-top: 22px !important;
    }

    #konkret-outputok .output-card-title {
        margin-top: 0 !important;
        margin-bottom: 14px !important;
    }

    #konkret-outputok .output-card-desc {
        margin-top: 0 !important;
    }
}

@media (max-width: 1199px) {
    #megoldas-kepzes .solution-card-container {
        padding-top: 38px !important;
    }

    #konkret-outputok .output-card {
        padding-top: 20px !important;
    }
}


/* final: compact output cards vertical balance */
.output-card {
    min-height: 158px !important;
    height: auto !important;
    padding-top: 22px !important;
    padding-bottom: 20px !important;
}

.output-card-title {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

.output-card-desc {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1.35 !important;
}

@media (min-width: 992px) {
    .output-card {
        min-height: 168px !important;
        padding-top: 24px !important;
        padding-bottom: 22px !important;
    }
}

@media (max-width: 768px) {
    .output-card {
        min-height: 0 !important;
        padding-top: 22px !important;
        padding-bottom: 20px !important;
    }
}


/* hero UX conversion refinements: CTA clarity, benefits, compact logo row */
#home .hero-badge-bar {
    display: none !important;
}

.hero-actions .hero-phone-note {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 10px 0 0 !important;
    min-height: 0 !important;
    height: auto !important;
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.76) !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.hero-actions .hero-phone-link {
    display: inline !important;
    margin-left: 5px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.hero-actions .hero-phone-link:hover {
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

@media (min-width: 1200px) {
    .hero-actions {
        width: 410px !important;
        height: 78px !important;
        left: 119px !important;
        top: 462px !important;
        display: block !important;
    }

    .hero-primary-cta {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 190px !important;
    }

    .hero-actions > .btn-cta-teal {
        position: absolute !important;
        left: 214px !important;
        top: 0 !important;
        width: 196px !important;
        height: 48px !important;
    }

    .hero-actions .hero-phone-note {
        position: absolute !important;
        left: 0 !important;
        top: 58px !important;
        width: 410px !important;
        margin: 0 !important;
    }
}

@media (max-width: 1199px) {
    .hero-actions {
        gap: 12px !important;
    }

    .hero-actions .hero-phone-note {
        margin-top: 4px !important;
    }
}

.hero-benefits-section {
    background: #ffffff !important;
    padding: 18px 24px 12px !important;
    color: #0f172a !important;
}

.hero-benefits-wrap {
    width: min(1120px, 100%) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.hero-benefit-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-height: 44px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 14px !important;
    background: rgba(248, 250, 252, 0.78) !important;
    color: #1d2733 !important;
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    cursor: default !important;
    pointer-events: none !important;
    user-select: none !important;
}

.hero-benefit-item svg {
    width: 18px !important;
    height: 18px !important;
    color: #189DA2 !important;
    flex: 0 0 auto !important;
}

.hero-tool-logos-section {
    background: #ffffff !important;
    padding: 10px 24px 22px !important;
}

.hero-tool-logos-grid {
    width: min(1120px, 100%) !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 18px 36px !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.hero-tool-logo-img {
    display: block !important;
    width: auto !important;
    height: 32px !important;
    max-height: 32px !important;
    max-width: 240px !important;
    object-fit: contain !important;
    box-shadow: none !important;
    background: transparent !important;
}

@media (max-width: 991px) {
    .hero-benefits-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .hero-tool-logo-img {
        height: 28px !important;
        max-height: 28px !important;
        max-width: 190px !important;
    }

    .hero-tool-logos-grid {
        gap: 14px 24px !important;
    }
}

@media (max-width: 560px) {
    .hero-benefits-section {
        padding: 14px 18px 10px !important;
    }

    .hero-benefits-wrap {
        grid-template-columns: 1fr !important;
    }

    .hero-benefit-item {
        min-height: 40px !important;
        font-size: 13px !important;
        justify-content: flex-start !important;
    }

    .hero-tool-logos-section {
        padding: 8px 18px 18px !important;
    }

    .hero-tool-logo-img {
        height: 24px !important;
        max-height: 24px !important;
        max-width: 150px !important;
    }
}


/* final hero UX refinement: premium copy, non-clickable dark benefits, visible header phone, larger logo row */
.hero-actions .hero-phone-note,
.hero-phone-note,
.hero-phone-link {
    display: none !important;
}

/* Desktop hero text layout */
@media (min-width: 1200px) {
    .hero-title {
        width: 780px !important;
        height: auto !important;
        left: 100px !important;
        top: 126px !important;
        font-size: 52px !important;
        line-height: 60px !important;
        letter-spacing: -0.02em !important;
    }

    .hero-subtitle {
        width: 760px !important;
        height: auto !important;
        left: 100px !important;
        top: 306px !important;
        font-size: 18px !important;
        line-height: 25px !important;
        color: rgba(246, 248, 248, 0.92) !important;
    }

    .hero-actions {
        width: 410px !important;
        height: 48px !important;
        left: 119px !important;
        top: 456px !important;
        display: block !important;
    }
}

/* Header phone remains visible and tappable */
.nav-phone {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 991px) {
    .nav-cta {
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        gap: 0 !important;
    }

    .nav-cta .btn-login,
    .nav-toggle {
        display: none !important;
    }

    .nav-phone {
        display: inline-flex !important;
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.94) !important;
    }
}

/* Benefits stay on the dark hero surface and read as information, not CTA buttons */
#home .hero-benefits-section {
    position: absolute !important;
    z-index: 12 !important;
    left: 100px !important;
    top: 570px !important;
    width: min(1040px, calc(100% - 200px)) !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.78) !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
}

#home .hero-benefits-wrap {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 16px 30px !important;
    padding: 0 !important;
}

#home .hero-benefit-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-family: 'Raleway', var(--font-heading), sans-serif !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
    cursor: default !important;
    pointer-events: none !important;
    user-select: none !important;
    transition: none !important;
    transform: none !important;
}

#home .hero-benefit-item svg {
    width: 15px !important;
    height: 15px !important;
    color: #2dd4bf !important;
    flex: 0 0 auto !important;
    opacity: 0.95 !important;
}

#home .hero-benefit-item:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

/* AI tool logo row: larger, clean white band, no boxes/shadows */
.hero-tool-logos-section {
    background: #ffffff !important;
    padding: 22px 24px 24px !important;
}

.hero-tool-logos-grid {
    width: min(1240px, 100%) !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 18px 42px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hero-tool-logo-img {
    display: block !important;
    width: auto !important;
    height: 42px !important;
    max-height: 42px !important;
    max-width: 260px !important;
    object-fit: contain !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Tablet/mobile hero flow */
@media (max-width: 1199px) {
    #home .hero-benefits-section {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 640px !important;
        margin: 24px auto 0 !important;
        padding: 0 24px !important;
    }

    #home .hero-benefits-wrap {
        justify-content: center !important;
        gap: 10px 18px !important;
    }

    #home .hero-benefit-item {
        font-size: 13px !important;
    }

    .hero-tool-logo-img {
        height: 34px !important;
        max-height: 34px !important;
        max-width: 220px !important;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.18 !important;
        max-width: 360px !important;
    }

    .hero-subtitle {
        max-width: 360px !important;
        font-size: 0.98rem !important;
        line-height: 1.45 !important;
        margin-bottom: 24px !important;
    }

    #home .hero-benefits-section {
        margin-top: 22px !important;
        padding: 0 !important;
    }

    #home .hero-benefits-wrap {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px 14px !important;
        width: 100% !important;
    }

    #home .hero-benefit-item {
        font-size: 12.5px !important;
        justify-content: flex-start !important;
    }

    .hero-tool-logos-section {
        padding: 18px 18px 20px !important;
    }

    .hero-tool-logos-grid {
        gap: 12px 20px !important;
    }

    .hero-tool-logo-img {
        height: 28px !important;
        max-height: 28px !important;
        max-width: 150px !important;
    }
}


/* final hero fine tuning: CTA alignment, hero vertical balance, larger AI logo row */
@media (min-width: 1200px) {
    body {
        background-size: 100% 650px !important;
        padding-top: 650px !important;
    }

    .hero {
        height: 650px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-title {
        left: 100px !important;
        top: 108px !important;
    }

    .hero-subtitle {
        left: 100px !important;
        top: 292px !important;
    }

    .hero-actions {
        left: 100px !important;
        top: 438px !important;
        width: 430px !important;
        height: 48px !important;
    }

    .hero-primary-cta {
        left: 0 !important;
        top: 0 !important;
    }

    .hero-actions > .btn-cta-teal {
        left: 226px !important;
        top: 0 !important;
    }

    #home .hero-benefits-section {
        left: 100px !important;
        top: 535px !important;
        width: min(1040px, calc(100% - 200px)) !important;
    }
}

.hero-tool-logos-section {
    padding: 20px 24px 22px !important;
}

.hero-tool-logos-grid {
    width: min(1280px, 100%) !important;
    gap: 20px 52px !important;
}

.hero-tool-logo-img {
    height: 54px !important;
    max-height: 54px !important;
    max-width: 320px !important;
}

@media (max-width: 1199px) {
    .hero-tool-logo-img {
        height: 42px !important;
        max-height: 42px !important;
        max-width: 260px !important;
    }

    .hero-tool-logos-grid {
        gap: 16px 32px !important;
    }
}

@media (max-width: 640px) {
    .hero-tool-logos-section {
        padding: 16px 18px 18px !important;
    }

    .hero-tool-logo-img {
        height: 34px !important;
        max-height: 34px !important;
        max-width: 170px !important;
    }

    .hero-tool-logos-grid {
        gap: 12px 20px !important;
    }
}


/* hero final micro-tuning: CTA closer to copy, shorter lower hero space, larger tool logos */
@media (min-width: 1200px) {
    body {
        background-size: 100% 600px !important;
        padding-top: 600px !important;
    }

    .hero {
        height: 600px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-title {
        top: 122px !important;
    }

    .hero-subtitle {
        top: 292px !important;
    }

    .hero-actions {
        top: 394px !important;
        left: 100px !important;
    }

    #home .hero-benefits-section {
        top: 505px !important;
    }
}

.hero-tool-logos-section {
    padding: 18px 24px 20px !important;
}

.hero-tool-logos-grid {
    width: min(1320px, 100%) !important;
    gap: 18px 56px !important;
}

.hero-tool-logo-img {
    height: 64px !important;
    max-height: 64px !important;
    max-width: 360px !important;
}

@media (max-width: 1199px) {
    .hero-tool-logo-img {
        height: 48px !important;
        max-height: 48px !important;
        max-width: 290px !important;
    }

    .hero-tool-logos-grid {
        gap: 14px 34px !important;
    }
}

@media (max-width: 640px) {
    .hero-tool-logos-section {
        padding: 14px 18px 16px !important;
    }

    .hero-tool-logo-img {
        height: 38px !important;
        max-height: 38px !important;
        max-width: 190px !important;
    }

    .hero-tool-logos-grid {
        gap: 10px 18px !important;
    }
}


/* hero final balance v4: vertical rhythm, CTA spacing, larger AI tool logos */
@media (min-width: 1200px) {
    body {
        background-size: 100% 560px !important;
        padding-top: 560px !important;
    }

    .hero {
        height: 560px !important;
        min-height: 560px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-title {
        top: 126px !important;
        line-height: 1.1 !important;
        margin: 0 !important;
    }

    .hero-subtitle {
        top: 268px !important;
        line-height: 1.42 !important;
        margin: 0 !important;
    }

    .hero-actions {
        top: 390px !important;
        left: 100px !important;
        width: 420px !important;
        height: 48px !important;
        gap: 32px !important;
    }

    .hero-primary-cta {
        left: 0 !important;
        top: 0 !important;
    }

    .hero-actions > .btn-cta-teal {
        left: 222px !important;
        top: 0 !important;
    }

    #home .hero-benefits-section {
        top: 494px !important;
        left: 100px !important;
        width: min(1040px, calc(100% - 200px)) !important;
    }
}

.hero-tool-logos-section {
    padding: 16px 24px 18px !important;
}

.hero-tool-logos-grid {
    width: min(1360px, 100%) !important;
    gap: 18px 60px !important;
}

.hero-tool-logo-img {
    height: 72px !important;
    max-height: 72px !important;
    max-width: 390px !important;
}

@media (max-width: 1199px) {
    .hero-title {
        line-height: 1.12 !important;
        margin-bottom: 22px !important;
    }

    .hero-subtitle {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-actions {
        margin-top: 38px !important;
        gap: 18px !important;
    }

    #home .hero-benefits-section {
        margin-top: 52px !important;
        margin-bottom: 0 !important;
    }

    .hero-tool-logo-img {
        height: 56px !important;
        max-height: 56px !important;
        max-width: 310px !important;
    }

    .hero-tool-logos-grid {
        gap: 16px 38px !important;
    }
}

@media (max-width: 640px) {
    .hero-title {
        line-height: 1.12 !important;
    }

    .hero-actions {
        margin-top: 36px !important;
        gap: 14px !important;
    }

    #home .hero-benefits-section {
        margin-top: 44px !important;
    }

    .hero-tool-logos-section {
        padding: 14px 18px 16px !important;
    }

    .hero-tool-logo-img {
        height: 44px !important;
        max-height: 44px !important;
        max-width: 210px !important;
    }

    .hero-tool-logos-grid {
        gap: 12px 22px !important;
    }
}


/* hero micro fix: H1/subtitle spacing + vertically centered hero background */
.hero {
    background-position: center center !important;
}

@media (min-width: 1200px) {
    .hero {
        background-position: center center !important;
    }

    .hero-title {
        line-height: 1.1 !important;
        height: auto !important;
        margin: 0 0 24px 0 !important;
    }

    .hero-subtitle {
        top: 318px !important;
    }

    .hero-actions {
        top: 438px !important;
    }

    #home .hero-benefits-section {
        top: 510px !important;
    }
}

@media (max-width: 1199px) {
    .hero-title {
        margin-bottom: 24px !important;
    }
}


/* final requested micro-fix: slightly more hero bottom space + lower hero background image on desktop */
@media (min-width: 1200px) {
    body {
        background-size: 100% 590px !important;
        padding-top: 590px !important;
    }

    .hero {
        height: 590px !important;
        min-height: 590px !important;
        background-position: center center, center 38% !important;
    }

    #home .hero-benefits-section {
        top: 510px !important;
    }
}

/* final non-hero rhythm + slider counter fix */
.slider-progress-block {
    align-items: center !important;
    gap: 14px !important;
}

.progress-counter {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 6px !important;
    min-width: 72px !important;
    white-space: nowrap !important;
}

.progress-divider {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--text-muted-light) !important;
    opacity: 0.75 !important;
}

/* non-hero vertical spacing tune */
#kinek-szol {
    padding-top: 88px !important;
    padding-bottom: 72px !important;
}

#megoldas-kepzes {
    padding-top: 40px !important;
    padding-bottom: 52px !important;
}

#mi-az-ai-kepzes {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
}

#eredmenyek-es-hasznalat {
    padding-top: 56px !important;
    padding-bottom: 72px !important;
}

#eredmenyek-es-hasznalat .usecase-slider-container {
    margin-top: 72px !important;
}

#kinek-szol-kifejezetten,
#miert-webbyskill,
#mit-ad-a-kepzes,
#tanterv-accordion,
#bizonyitott-mukodes,
#konkret-outputok {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

#kiktol-tanultok,
#resztvevok,
#faq-uj {
    padding-top: 84px !important;
    padding-bottom: 92px !important;
}

#ajanlatkeres {
    padding-top: 56px !important;
    padding-bottom: 92px !important;
}

@media (max-width: 768px) {
    #kinek-szol,
    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }

    #megoldas-kepzes,
    #mi-az-ai-kepzes,
    #ajanlatkeres {
        padding-top: 48px !important;
        padding-bottom: 52px !important;
    }

    #eredmenyek-es-hasznalat {
        padding-top: 48px !important;
        padding-bottom: 56px !important;
    }

    #eredmenyek-es-hasznalat .usecase-slider-container {
        margin-top: 52px !important;
    }

    .slider-progress-block {
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .progress-bar-bg {
        width: min(180px, 56vw) !important;
    }
}

/* final optical vertical spacing correction based on screenshots: non-hero only */
@media (min-width: 769px) {
    /* Match the gap between the outcome block and the use-case slider to the approved rhythm above */
    #eredmenyek-es-hasznalat .usecase-slider-container {
        margin-top: 96px !important;
    }

    /* Balance the white band before the dark solution card with the grey band above */
    #megoldas-kepzes {
        padding-top: 72px !important;
    }
}

@media (max-width: 768px) {
    #eredmenyek-es-hasznalat .usecase-slider-container {
        margin-top: 64px !important;
    }

    #megoldas-kepzes {
        padding-top: 52px !important;
    }
}

/* final post-usecase vertical rhythm: only sections below "Mire használható..." */
@media (min-width: 769px) {
    #eredmenyek-es-hasznalat {
        padding-bottom: 72px !important;
    }

    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj,
    #ajanlatkeres {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    .footer {
        padding-top: 72px !important;
    }
}

@media (max-width: 768px) {
    #eredmenyek-es-hasznalat {
        padding-bottom: 56px !important;
    }

    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj,
    #ajanlatkeres {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }

    .footer {
        padding-top: 56px !important;
    }
}


/* final micro-tune: more breathing room above the offer CTA panel */
@media (min-width: 769px) {
    #konkret-outputok .output-cards-grid {
        margin-bottom: 108px !important;
    }
}


/* final mobile-only tuning: compact hero, CTA cards, testimonials and target block */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    /* Mobile hero: compact, centered, desktop untouched */
    body {
        padding-top: 72px !important;
    }

    .nav-container {
        height: 72px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .logo-img {
        height: 34px !important;
        max-width: 150px !important;
        object-fit: contain !important;
    }

    .nav-phone {
        font-size: 12px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    #home.hero {
        min-height: auto !important;
        height: auto !important;
        padding: 42px 18px 30px !important;
        justify-content: center !important;
        align-items: center !important;
        background-position: center center, center 36% !important;
    }

    #home .hero-frame-label,
    #home .hero-vertical-lines {
        display: none !important;
    }

    #home .hero-title {
        font-size: clamp(1.85rem, 8.4vw, 2.25rem) !important;
        line-height: 1.1 !important;
        max-width: 390px !important;
        margin: 0 auto 16px auto !important;
        padding: 0 !important;
        text-align: center !important;
    }

    #home .hero-subtitle {
        font-size: 0.94rem !important;
        line-height: 1.42 !important;
        max-width: 390px !important;
        margin: 0 auto 22px auto !important;
        padding: 0 !important;
        text-align: center !important;
    }

    #home .hero-actions {
        width: 100% !important;
        max-width: 290px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    #home .hero-actions .btn-cta-pink,
    #home .hero-actions .btn-cta-teal {
        width: 100% !important;
        min-width: 0 !important;
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 18px !important;
        font-size: 0.88rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        flex: 0 0 auto !important;
    }

    #home .hero-actions .btn-cta-teal {
        height: 42px !important;
        min-height: 42px !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        background: rgba(24, 157, 162, 0.12) !important;
        border: 1px solid rgba(45, 212, 191, 0.28) !important;
        box-shadow: none !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    #home .hero-benefits-section {
        width: 100% !important;
        max-width: 390px !important;
        margin: 18px auto 0 !important;
        padding: 0 !important;
    }

    #home .hero-benefits-wrap {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px 12px !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: start !important;
    }

    #home .hero-benefit-item {
        font-size: 11.8px !important;
        line-height: 1.25 !important;
        gap: 6px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        min-width: 0 !important;
    }

    #home .hero-benefit-item svg {
        width: 13px !important;
        height: 13px !important;
    }

    .hero-tool-logos-section {
        padding: 14px 16px 16px !important;
    }

    /* Mobile CTA panels */
    .cta-dark-panel,
    .cta-white-card {
        min-height: auto !important;
        padding: 32px 20px !important;
        border-radius: 16px !important;
    }

    .cta-dark-panel > h3,
    .cta-white-card > h3 {
        font-size: 1.55rem !important;
        line-height: 1.18 !important;
        margin-bottom: 14px !important;
    }

    .cta-dark-panel > p,
    .cta-white-card > p {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
    }

    .cta-buttons-group {
        gap: 12px !important;
        width: 100% !important;
    }

    .cta-buttons-group .btn {
        width: min(100%, 260px) !important;
    }

    .cta-buttons-group a[download] {
        height: 40px !important;
        width: min(100%, 236px) !important;
        font-size: 0.82rem !important;
        font-weight: 500 !important;
        background: rgba(24, 157, 162, 0.12) !important;
        color: #189DA2 !important;
        box-shadow: none !important;
    }

    .cta-dark-panel .cta-buttons-group a[download] {
        color: rgba(255, 255, 255, 0.86) !important;
        background: rgba(24, 157, 162, 0.24) !important;
    }

    /* Mobile testimonials: no cropped accordion strips, simple stacked cards */
    #resztvevok {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
        overflow: visible !important;
    }

    #resztvevok .section-header {
        text-align: center !important;
        margin-bottom: 28px !important;
        max-width: 100% !important;
    }

    #resztvevok .section-title {
        font-size: 1.7rem !important;
        line-height: 1.16 !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .testimonial-pills-wrapper {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        height: auto !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .testimonial-pill,
    .testimonial-pill.active {
        flex: none !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        border-radius: 20px !important;
        cursor: default !important;
        background-size: cover !important;
        background-position: center 24% !important;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12) !important;
        transform: none !important;
        transition: none !important;
    }

    .testimonial-pill-overlay {
        opacity: 1 !important;
        background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.08) 38%, rgba(0,0,0,0.86) 100%) !important;
    }

    .testimonial-pill-content {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        padding: 230px 20px 22px !important;
        width: 100% !important;
        color: #ffffff !important;
    }

    .testimonial-quote {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        font-weight: 650 !important;
        margin-bottom: 10px !important;
    }

    .testimonial-author {
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
        color: rgba(255, 255, 255, 0.78) !important;
    }

    .testimonial-pill:nth-child(1) { background-position: center 20% !important; }
    .testimonial-pill:nth-child(2) { background-position: center 24% !important; }
    .testimonial-pill:nth-child(3) { background-position: center 22% !important; }
    .testimonial-pill:nth-child(4) { background-position: center 22% !important; }
    .testimonial-pill:nth-child(5) { background-position: center 22% !important; }
    .testimonial-pill:nth-child(6) { background-position: center 20% !important; }
    .testimonial-pill:nth-child(7) { background-position: center 18% !important; }

    /* Mobile target block: compact, no oversized dark image area */
    #kinek-szol-kifejezetten {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }

    #kinek-szol-kifejezetten .targets-container-box {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 30px 20px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    #kinek-szol-kifejezetten .targets-left {
        gap: 12px !important;
    }

    #kinek-szol-kifejezetten .targets-section-title {
        font-size: 1.75rem !important;
        line-height: 1.14 !important;
    }

    #kinek-szol-kifejezetten .targets-section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0 !important;
    }

    #kinek-szol-kifejezetten .targets-image-frame {
        display: none !important;
    }

    #kinek-szol-kifejezetten .targets-right {
        margin-top: 0 !important;
        width: 100% !important;
    }

    #kinek-szol-kifejezetten .targets-tab-list {
        gap: 12px !important;
    }

    #kinek-szol-kifejezetten .targets-tab-item {
        padding: 14px 14px !important;
        border-radius: 14px !important;
        opacity: 0.72 !important;
        background: rgba(255, 255, 255, 0.035) !important;
    }

    #kinek-szol-kifejezetten .targets-tab-item.active {
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    #kinek-szol-kifejezetten .targets-tab-heading {
        font-size: 1.05rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    #kinek-szol-kifejezetten .targets-tab-desc {
        font-size: 0.9rem !important;
        line-height: 1.42 !important;
    }
}

@media (max-width: 430px) {
    #home.hero {
        padding-top: 36px !important;
        padding-bottom: 26px !important;
    }

    #home .hero-title {
        font-size: clamp(1.72rem, 8vw, 2rem) !important;
        max-width: 350px !important;
    }

    #home .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.38 !important;
        max-width: 350px !important;
        margin-bottom: 20px !important;
    }

    #home .hero-actions {
        max-width: 280px !important;
    }

    #home .hero-benefits-section {
        margin-top: 16px !important;
        max-width: 350px !important;
    }

    #home .hero-benefit-item {
        font-size: 11.4px !important;
    }

    .testimonial-pill-content {
        padding-top: 218px !important;
    }

    .cta-dark-panel,
    .cta-white-card {
        padding: 30px 18px !important;
    }
}


/* final mobile micro-tune: h2 scale, section rhythm and instructor cards only */
@media (max-width: 768px) {
    /* Smaller mobile H2 hierarchy so long Hungarian headings fit more cleanly */
    .section-title,
    .solution-title,
    .slider-title,
    .targets-section-title,
    .instructor-main-title {
        font-size: clamp(1.5rem, 5.8vw, 1.85rem) !important;
        line-height: 1.14 !important;
        letter-spacing: -0.02em !important;
    }

    #kinek-szol .section-title {
        max-width: 350px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Uniform mobile vertical rhythm between sections, using the approved first-section spacing as reference */
    #kinek-szol,
    #megoldas-kepzes,
    #mi-az-ai-kepzes,
    #eredmenyek-es-hasznalat,
    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj,
    #ajanlatkeres {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }

    .section-header,
    .section-header.centered {
        margin-bottom: 30px !important;
    }

    /* Mobile instructor cards: keep faces clear from the text overlay */
    #kiktol-tanultok .instructor-split-container {
        gap: 30px !important;
    }

    #kiktol-tanultok .instructor-left-col {
        padding-top: 0 !important;
    }

    #kiktol-tanultok .instructor-cards-wrapper {
        gap: 20px !important;
    }

    #kiktol-tanultok .instructor-profile-card {
        aspect-ratio: auto !important;
        min-height: 460px !important;
        padding: 24px 22px !important;
        background-position: center top !important;
    }

    #kiktol-tanultok .instructor-info-block h3 {
        font-size: 1.45rem !important;
        line-height: 1.12 !important;
        margin-bottom: 4px !important;
    }

    #kiktol-tanultok .instructor-info-block h4 {
        font-size: 0.76rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    #kiktol-tanultok .instructor-info-block p {
        font-size: 0.82rem !important;
        line-height: 1.34 !important;
    }
}

@media (max-width: 430px) {
    .section-title,
    .solution-title,
    .slider-title,
    .targets-section-title,
    .instructor-main-title {
        font-size: clamp(1.42rem, 6.5vw, 1.68rem) !important;
        line-height: 1.15 !important;
    }

    #kinek-szol .section-title {
        max-width: 330px !important;
    }

    #kinek-szol,
    #megoldas-kepzes,
    #mi-az-ai-kepzes,
    #eredmenyek-es-hasznalat,
    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj,
    #ajanlatkeres {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    #kiktol-tanultok .instructor-profile-card {
        min-height: 505px !important;
        padding: 22px 20px !important;
    }
}


/* final mobile-only polish: requested text, rhythm and alignment fixes; desktop untouched */
.mobile-problem-break {
    display: none;
}

@media (max-width: 768px) {
    /* Dark PDF callout title should follow the same mobile H2 scale */
    .download-title {
        font-size: clamp(1.5rem, 5.8vw, 1.85rem) !important;
        line-height: 1.14 !important;
        letter-spacing: -0.02em !important;
        margin-bottom: 10px !important;
    }

    .download-callout-card {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    /* Force the requested mobile line break only in the workflow problem card */
    .mobile-problem-break {
        display: block !important;
    }

    /* Solution block mobile alignment: all text left, only CTA centered */
    #megoldas-kepzes .solution-card-container {
        text-align: left !important;
        align-items: stretch !important;
    }

    #megoldas-kepzes .solution-left,
    #megoldas-kepzes .solution-right,
    #megoldas-kepzes .solution-title,
    #megoldas-kepzes .solution-desc-highlight,
    #megoldas-kepzes .solution-desc-secondary,
    #megoldas-kepzes .topics-title,
    #megoldas-kepzes .topics-list,
    #megoldas-kepzes .topic-item,
    #megoldas-kepzes .topic-text {
        text-align: left !important;
    }

    #megoldas-kepzes .solution-left {
        align-items: flex-start !important;
    }

    #megoldas-kepzes .solution-action {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* Mobile vertical rhythm tightening after the approved early-section rhythm */
    #eredmenyek-es-hasznalat {
        padding-top: 40px !important;
        padding-bottom: 42px !important;
    }

    #eredmenyek-es-hasznalat .usecase-slider-container {
        margin-top: 44px !important;
    }

    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj,
    #ajanlatkeres {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .section-header,
    .section-header.centered {
        margin-bottom: 26px !important;
    }

    #konkret-outputok .output-cards-grid {
        margin-bottom: 66px !important;
    }

    /* Slightly larger mobile capability icons */
    .capability-card .capability-icon svg {
        width: 30px !important;
        height: 30px !important;
    }

    .capability-card {
        gap: 13px !important;
    }
}

@media (max-width: 430px) {
    .download-title {
        font-size: clamp(1.42rem, 6.5vw, 1.68rem) !important;
        line-height: 1.15 !important;
    }

    #eredmenyek-es-hasznalat,
    #kinek-szol-kifejezetten,
    #miert-webbyskill,
    #mit-ad-a-kepzes,
    #tanterv-accordion,
    #bizonyitott-mukodes,
    #konkret-outputok,
    #kiktol-tanultok,
    #resztvevok,
    #faq-uj,
    #ajanlatkeres {
        padding-top: 38px !important;
        padding-bottom: 38px !important;
    }

    #eredmenyek-es-hasznalat .usecase-slider-container {
        margin-top: 40px !important;
    }

    #konkret-outputok .output-cards-grid {
        margin-bottom: 62px !important;
    }

    .capability-card .capability-icon svg {
        width: 32px !important;
        height: 32px !important;
    }
}
