/* ============================================================
   PIXELGRID — MAIN STYLESHEET
   Methodology: BEM (Block__Element--Modifier)
   ============================================================ */

/* === 1. CUSTOM PROPERTIES === */
:root {
    /* Colors */
    --color-coral:        #FF6B6B;
    --color-teal:         #4ECDC4;
    --color-yellow:       #FFD93D;
    --color-purple:       #9B59B6;
    --color-dark:         #2D3142;
    --color-midnight:     #1E2235;
    --color-white:        #FFFFFF;
    --color-text:         #3D3D3D;
    --color-text-light:   #6B6B6B;

    /* Section backgrounds */
    --bg-teal-wash:       #F0FDFB;
    --bg-purple-wash:     #F9F5FD;
    --bg-coral-wash:      #FFF8F8;

    /* Spacing scale (4px base) */
    --space-1:  4px;
    --space-2:  8px;
    --space-3:  16px;
    --space-4:  24px;
    --space-5:  32px;
    --space-6:  48px;
    --space-7:  64px;
    --space-8:  96px;
    --space-9:  128px;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body:    'Montserrat', sans-serif;

    /* Layout */
    --container-max:     1320px;
    --container-narrow:  760px;
    --container-padding: 24px;
    --nav-height:        72px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md:  0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);

    /* Diagonal section transitions */
    --diagonal: 48px;
}

/* === 2. RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
}

ul {
    list-style: none;
}

p {
    margin-bottom: var(--space-3);
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

/* === 3. TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: var(--space-4);
}

h1 { font-size: 56px; font-weight: 800; line-height: 1.15; }
h2 { font-size: 40px; font-weight: 700; line-height: 1.2;  }
h3 { font-size: 28px; font-weight: 600; line-height: 1.3;  }

/* === 4. LAYOUT === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container--narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-8) 0;
}

/* === 5. NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    height: var(--nav-height);
    transition: box-shadow 0.3s ease;
}

.nav--scrolled {
    box-shadow: var(--shadow-nav);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav__logo img {
    height: 70px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.nav__link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.2s ease;
    white-space: nowrap;
    text-decoration:none;

}

.nav__link:hover {
    color: var(--color-coral);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--color-coral);
    color: var(--color-white) !important;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
    white-space: nowrap;
}

.nav__cta:hover {
    background: #e85555;
}

/* --- Language switcher (custom select with SVG flags) --- */
.lang-switch {
    position: relative;
    margin-left: var(--space-3);
    list-style: none;
}

/* Hide default details marker */
.lang-switch summary {
    list-style: none;
}
.lang-switch summary::-webkit-details-marker {
    display: none;
}

.lang-switch__current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: var(--color-white);
    transition: border-color 0.2s;
    user-select: none;
}

.lang-switch__current:hover {
    border-color: var(--color-teal);
}

.lang-switch__code {
    letter-spacing: 0.04em;
}

.lang-switch__arrow {
    width: 10px;
    height: 6px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.lang-switch[open] .lang-switch__arrow {
    transform: rotate(180deg);
}

.lang-switch__flag {
    width: 22px;
    height: auto;
    border-radius: 2px;
    display: block;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.10);
    flex-shrink: 0;
}

.lang-switch__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-white);
    border: 1.5px solid rgba(0, 0, 0, 0.10);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    min-width: 90px;
    z-index: 200;
}

.lang-switch__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    transition: background 0.15s;
    cursor: pointer;
    white-space: nowrap;
}

.lang-switch__item:hover {
    background: rgba(78, 205, 196, 0.08);
}

.lang-switch__item--active {
    background: rgba(0, 0, 0, 0.04);
    cursor: default;
    color: var(--color-text-light);
}

.nav__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--color-dark);
    padding: var(--space-2);
    line-height: 1;
}

/* === 6. BUTTON === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    line-height: 1.3;
}

.btn--coral {
    background: var(--color-coral);
    color: var(--color-white);
}

.btn--coral:hover {
    background: #e85555;
    transform: translateY(-1px);
}

.btn--coral:active {
    transform: translateY(0);
}

/* Larger button variant */
.btn--lg {
    padding: 18px 48px;
    font-size: 18px;
}

/* Intermediate CTA section */
.cta-mid {
    padding: var(--space-10) 0;
}

.cta-mid__inner {
    display: flex;
    justify-content: center;
    margin-bottom:100px;
}
#ce-facem{
    margin-top:30px;
}
/* === 7. SECTION LABEL === */
.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.section__label--teal   { color: var(--color-teal); }
.section__label--coral  { color: var(--color-coral); }
.section__label--purple { color: var(--color-purple); }
.section__label--yellow { color: var(--color-yellow); }

/* === 8. HERO === */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--nav-height) + var(--space-8));
    padding-bottom: var(--space-8);
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.hero__logo {
    margin: 0 auto var(--space-5);
    width: 200px;
}

.hero__logo img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: var(--space-4);
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

/* Organizers entrance animation */
@keyframes organizersFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__organizers {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
}

/* Hidden state before animation triggers */
.hero__organizers-label,
.hero__organizer-link {
    opacity: 0;
}

/* Label appears first */
.hero__organizers.is-visible .hero__organizers-label {
    animation: organizersFadeIn 0.5s ease forwards;
}

/* Logos appear sequentially after the label */
.hero__organizers.is-visible .hero__organizer-link:nth-child(2) {
    animation: organizersFadeIn 0.5s ease 0.35s forwards;
}
.hero__organizers.is-visible .hero__organizer-link:nth-child(3) {
    animation: organizersFadeIn 0.5s ease 0.55s forwards;
}
.hero__organizers.is-visible .hero__organizer-link:nth-child(4) {
    animation: organizersFadeIn 0.5s ease 0.75s forwards;
}

.hero__organizers-label {
    font-size: 15px;
    color: var(--color-text-light);
    white-space: nowrap;
}

.hero__organizer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hero__bullets {
    display: inline-flex;
    flex-direction: column;
    gap: var(--space-2);
    text-align: left;
    margin-bottom: 30px;
}

.hero__bullet {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: 16px;
    color: var(--color-text);
}

.hero__bullet i {
    color: var(--color-coral);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.hero__cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.hero__microtext {
    font-size: 13px;
    color: var(--color-text-light);
    max-width: 500px;
    text-align: left;
    line-height: 1.6;
}

/* === 8b. HERO SPLIT VARIANT === */
.hero--split {
    align-items: stretch;
    padding: 0;
    justify-content: flex-start;
    min-height: 0;
    min-height:100vh;
}

.hero--split .hero__inner {
    flex: 0 0 55%;
    max-width: none;
    position: relative;
    margin: 0;
    text-align: left;
    padding: calc(var(--nav-height)) var(--space-6) var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto; /* prevents content overflow on short viewports */
}

/* Logo as subtle background on hero inner column */
.hero--split .hero__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.emotionalculture.ro/wp-content/uploads/2026/04/Untitled-design-14.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60%;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}
.page-template-default main{
    text-align:left!important;
}
.hero--split .hero__inner > * {
    position: relative;
    z-index: 1;
}
.page-id-3 main > h1,
.page-id-69 main > h1{
    display:none;
}
.hero--split .hero__inner > * {
    position: relative;
    z-index: 1;
}

.hero--split .hero__bullets {
    text-align: left;
}

.hero--split .hero__cta-wrap {
    align-items: flex-start;
    margin-bottom:var(--space-4);
}

.hero__visual {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    display: block;
}

/* === HERO SCROLL HINT === */
.hero__scroll-hint {
    position: absolute;
    bottom: var(--space-5);
    left: 50%;
    transform: translateX(-50%);
    display: block;
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.2s;
    z-index: 10;
    animation: scrollHintFloat 2.8s ease-in-out infinite;
}

.hero__scroll-hint:hover {
    opacity: 0.8;
}

@keyframes scrollHintFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* Mouse body */
.hero__scroll-mouse {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid currentColor;
    border-radius: 11px;
    color: var(--color-text-light);
    position: relative;
}

/* Scroll wheel dot */
.hero__scroll-wheel {
    display: block;
    width: 3px;
    height: 7px;
    background: var(--color-text-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelMove 1.8s ease-in-out infinite, wheelFade 1.8s ease-in-out infinite;
}

@keyframes wheelMove {
    0%, 61%, 100% { transform: translateX(-50%) translateY(0); }
    60%            { transform: translateX(-50%) translateY(10px); }
}

@keyframes wheelFade {
    0%, 59%, 100% { opacity: 1; }
    60%, 61%      { opacity: 0; }
}

/* Tablet landscape: 50/50, font ușor redus */
@media (max-width: 1200px) {
    .hero__title { font-size: 36px; }
}

@media (max-width: 1024px) {
    .hero--split .hero__inner { flex: 0 0 52%; }
    .hero__visual              { flex: 0 0 48%; }
    .hero__title               { font-size: 34px; }
    .hero__subtitle            { font-size: 16px; }
}

/* Tablet portrait: coloană unică, imagine jos */
@media (max-width: 768px) {
    .hero--split {
        height: auto;
        min-height: 100svh;
    }

    .hero--split .hero__inner {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
        padding: calc(var(--nav-height) + var(--space-5)) var(--container-padding) var(--space-5);
        justify-content: center;
        overflow-y: visible;
    }

    .hero--split .hero__inner::before {
        background-size: 80%;
    }

    .hero {
        flex-direction: column;
    }

    .hero--split .hero__inner {
        padding-bottom: 0;
    }

    .hero__visual {
        flex: 0 0 100%;
        height: 260px;
    }

    .hero__title      { font-size: 28px; }
    .hero__subtitle   { font-size: 16px; }
    .hero__organizers { font-size: 15px;     justify-content: center;}
    .hero__organizers-label{
        width:100%;
    }
    .for-whom__image{
        object-position: initial;
    }
    .hero__bullets {
        display: flex;
        text-align: left;
        width: 100%;
    }

    .hero--split .hero__cta-wrap {
        align-items: center;
    }

    .hero__microtext {
        text-align: center;
    }

    .hero__scroll-hint { display: none; }
}

/* Mobile mic */
@media (max-width: 480px) {
    .hero__title    { font-size: 24px; }
    .hero__subtitle { font-size: 15px; }
    .hero__bullet   { font-size: 14px; }

    .hero--split .hero__inner {
        padding: calc(var(--nav-height) + var(--space-4)) var(--space-3) var(--space-5);
        padding-top:0;
        padding-bottom:0;
    }
}

/* === 9. SECTION 2: EMOTIONS === */
.emotions {
    background: var(--bg-teal-wash);
}

.emotions__inner {
    display: grid;
    grid-template-columns: 44% 1fr;
    gap: var(--space-8);
    align-items: stretch;
}

.emotions__content {
    min-width: 0;
    padding: var(--space-2) 0;
}

.emotions__list {
    margin: var(--space-5) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.emotions__item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.emotions__item i {
    color: var(--color-teal);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.emotions__item-text {
    font-size: 16px;
    line-height: 1.7;
}

.emotions__closing {
    font-size: 16px;
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(78, 205, 196, 0.25);
    line-height: 1.7;
}

/* Image column */
.emotions__image-col {
    overflow: hidden;
    border-radius: 16px;
    will-change: transform;
}

.emotions__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1024px) {
    .emotions__inner {
        grid-template-columns: 42% 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .emotions__inner {
        grid-template-columns: 1fr;
    }
    .emotions__image-col {
        height: 280px;
    }
}

/* === 10. SECTION 3: WHY NOW === */
.why-now {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.why-now__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.why-now__shape--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.12) 0%, transparent 70%);
    top: -120px;
    right: -100px;
}

.why-now__shape--2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.10) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
}

.why-now__shape--3 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 38%;
}

.why-now .container {
    position: relative;
    z-index: 1;
}

.why-now__intro {
    border-left: 4px solid var(--color-coral);
    padding-left: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: 16px;
}

/* === 11. SECTION 4: WHAT WE DO === */
.what-we-do {
    background: var(--bg-purple-wash);
}

.what-we-do__header {
    margin-bottom: var(--space-6);
}

.what-we-do__banner-wrap {
    position: relative;
    width: 100%;
    height: 312px;
    overflow: hidden;
    margin-bottom: var(--space-6);
    border-radius: var(--radius-md);
}

@media (max-width: 1024px) { .what-we-do__banner-wrap { height: 220px; } }
@media (max-width: 768px)  { .what-we-do__banner-wrap { height: 180px; } }



.what-we-do__banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.what-we-do__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.step-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
}

.step-card__number {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 800;
    color: var(--color-purple);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: var(--space-3);
}

.step-card__text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
}

.step-card__text strong {
    color: var(--color-purple);
    font-weight: 700;
}

/* === 12. SECTION 5: SOCIAL PROOF === */
.social-proof {
    background: var(--color-white);
}

.social-proof__title {
    font-style: italic;
    text-align: center;
}

.social-proof .section__label {
    display: block;
    text-align: center;
}

.social-proof__intro {
    max-width: 720px;
    margin: 0 auto var(--space-6);
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
}

.social-proof__measures-label {
    text-align: center;
    margin-bottom: var(--space-5);
    font-size: 16px;
}

.social-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-bottom: var(--space-7);
}

.proof-item {
    text-align: center;
    padding: var(--space-5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 217, 61, 0.35);
    transition: border-color 0.2s ease;
}

.proof-item:hover {
    border-color: rgba(255, 217, 61, 0.7);
}

.proof-item__icon {
    font-size: 32px;
    color: var(--color-yellow);
    margin-bottom: var(--space-3);
}

.proof-item__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-2);
}

.proof-item__text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.social-proof__closing {
    max-width: 720px;
    margin: 0 auto var(--space-3);
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
}

.social-proof__eci {
    max-width: 720px;
    margin: var(--space-4) auto 0;
    text-align: center;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* === 13. SECTION 6: WHY PARTICIPATE === */
.why-participate {
    background: var(--bg-coral-wash);
}

.why-participate__list {
    margin: var(--space-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.why-participate__item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.why-participate__item i {
    color: var(--color-coral);
    font-size: 16px;
    margin-top: 5px;
    flex-shrink: 0;
}

.why-participate__item--nested {
    margin-left: var(--space-6);
    font-style: italic;
    font-size: 16px;
    color: var(--color-text-light);
}

.why-participate__inner {
    display: grid;
    grid-template-columns: 44% 1fr;
    gap: var(--space-8);
    align-items: stretch;
}

.why-participate__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    will-change: transform;
}


.why-participate__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: -345px center;
}

.why-participate__content {
    min-width: 0;
    padding: var(--space-2) 0;
}

@media (max-width: 1024px) {
    .why-participate__inner { grid-template-columns: 42% 1fr; gap: var(--space-6); }
}

@media (max-width: 768px) {
    .why-participate__inner {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
    }
    .why-participate__image-wrap     { height: 260px; }
}

/* === 14. SECTION 7: FOR WHOM === */
.for-whom {
    background: var(--color-white);
}

.for-whom__list {
    margin: var(--space-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.for-whom__item {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

.for-whom__item i {
    color: var(--color-teal);
    font-size: 18px;
    flex-shrink: 0;
}

.for-whom__closing {
    font-style: italic;
    margin-top: var(--space-4);
    font-size: 16px;
    color: var(--color-text-light);
}

.for-whom__inner {
    display: grid;
    grid-template-columns: 1fr 44%;
    gap: var(--space-8);
    align-items: stretch;
}

.for-whom__image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    will-change: transform;
}

.for-whom__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -300px center;
    display: block;
}

.for-whom__content {
    min-width: 0;
    padding: var(--space-2) 0;
}

@media (max-width: 1024px) {
    .for-whom__inner { grid-template-columns: 1fr 42%; gap: var(--space-6); }
}

@media (max-width: 768px) {
    .for-whom__inner          { grid-template-columns: 1fr; }
    .for-whom__image-wrap     { height: 260px; }
}

/* === 15. SECTION 8: SAFETY + VIDEO + INDUSTRIES === */
.safety {
    background: linear-gradient(
            135deg,
            rgba(78,  205, 196, 0.07) 0%,
            rgba(255, 255, 255, 1)    30%,
            rgba(255, 107, 107, 0.06) 80%,
            rgba(155,  89, 182, 0.05) 100%
    );
    color: var(--color-text);
}

.safety h2 {
    color: var(--color-dark);
}

.safety p {
    color: var(--color-text);
}

.safety__intro {
    margin-bottom: var(--space-7);
}

.safety__video-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.industry-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid rgba(78, 205, 196, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    min-height:200px;
}

.industry-card:hover {
    border-color: var(--color-teal);
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.15);
}

.industry-card__icon {
    font-size: 28px;
    color: var(--color-teal);
    margin-bottom: 5px;
}

.industry-card__name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-2);
    line-height: 1.35;
}

.industry-card__link {
    font-size: 14px;
    color: var(--color-coral);
    font-weight: 500;
    margin-top: auto;
}

.industry-card__link i {
    font-size: 12px;
    margin-left: 4px;
}

.safety__cta-wrap {
    margin-top: var(--space-5);
    text-align: center;
}
.cf7-label{
    width: 100%;
    display: flex;
}

/* === 15b. SPONSORS SECTION === */
.sponsors {
    padding: var(--space-8) 0;
    background: var(--color-white, #fff);
}

.sponsors__header {
    text-align: left;
    margin-bottom: var(--space-md);
}

.sponsors__title {
    margin-top: var(--space-xs);
}

.sponsors__grid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.sponsors__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.sponsors__item:hover {
    opacity: 0.75;
}

.sponsors__logo {
    max-height: 80px;
    width: auto;
    max-width:142px;
    object-fit: contain;
}

/* === 16. FORM SECTION (CF7) === */
/* === 16. FORM SECTION (CF7) === */
.form-section {
    background: linear-gradient(
            135deg,
            rgba(255, 107, 107, 0.05) 0%,
            rgba(255, 255, 255, 1)    40%,
            rgba(78,  205, 196, 0.06) 100%
    );
    padding: var(--space-8) 0;
}

.form-section__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.form-section__title {
    margin-bottom: var(--space-2);
    text-align: center;
    margin-bottom:50px;
}

.form-section__subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
    font-size: 16px;
}

/* --- Grid layout --- */
.cf7-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.cf7-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf7-col--full {
    grid-column: 1 / -1;
}

/* --- Labels --- */
.cf7-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.01em;
}

.cf7-required {
    color: var(--color-coral);
    margin-left: 2px;
}

/* --- Inputs, select, textarea --- */
.cf7-input,
.cf7-select,
.cf7-textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-dark);
    background: var(--color-white);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.cf7-input::placeholder,
.cf7-textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: var(--color-text-light);
    font-size: 14px;
}

.cf7-input:focus,
.cf7-select:focus,
.cf7-textarea:focus,
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.15);
}

/* Select arrow */
.cf7-select,
.wpcf7-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.cf7-textarea,
.wpcf7-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

/* --- Validation states --- */
.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
    border-color: var(--color-coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    color: var(--color-coral);
    margin-top: 4px;
    display: block;
}

.wpcf7-response-output {
    margin-top: var(--space-4) !important;
    padding: 12px 16px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 14px !important;
    border: none !important;
}

.wpcf7-form.sent .wpcf7-response-output {
    background: rgba(78, 205, 196, 0.12);
    color: #1a7a74;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
    background: rgba(255, 107, 107, 0.10);
    color: #c0392b;
}

/* --- Submit --- */
.cf7-submit-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-2);
}

.wpcf7-form .wpcf7-submit {
    background: var(--color-coral);
    color: var(--color-white);
    border: none;
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.wpcf7-form .wpcf7-submit:hover {
    background: #e85555;
    transform: translateY(-1px);
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0);
}

.wpcf7-spinner {
    margin: 0 !important;
}

/* --- Responsive --- */
@media (max-width: 640px) {
    .cf7-grid {
        grid-template-columns: 1fr;
    }
    .cf7-submit-wrap {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Thank you message --- */
.form-section__thankyou {
    text-align: center;
    padding: var(--space-7) var(--space-4);
    animation: fadeInUp 0.5s ease both;
}

.thankyou__icon {
    font-size: 64px;
    color: var(--color-teal);
    margin-bottom: var(--space-4);
    line-height: 1;
}

.thankyou__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-3);
}

.thankyou__text {
    font-size: 17px;
    color: var(--color-text);
    max-width: 560px;
    margin: 0 auto var(--space-3);
    line-height: 1.7;
}

.thankyou__subtext {
    font-size: 14px;
    color: var(--color-text-light);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* === 17. FOOTER === */
.site-footer {
    background: var(--color-dark);
    /*padding: var(--space-7) 0;*/
    padding:40px 0;
}

.site-footer__inner {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.site-footer__text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-4);
}

.site-footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.site-footer__legal {
    margin-top: var(--space-4);
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer__legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__legal a:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* === 18. RESPONSIVE === */

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
    :root { --diagonal: 40px; }

    h1 { font-size: 44px; }
    h2 { font-size: 34px; }

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

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

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

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
    :root { --diagonal: 28px; }

    h1 { font-size: 32px; line-height: 1.2; }
    h2 { font-size: 26px; line-height: 1.25; }
    h3 { font-size: 22px; line-height: 1.35; }

    .section {
        padding: var(--space-7) 0;
    }

    /* Nav mobile drawer */
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 280px;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--nav-height) + var(--space-5)) var(--space-5) var(--space-5);
        gap: var(--space-4);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav--open .nav__links {
        right: 0;
    }

    .nav__hamburger {
        display: block;
        z-index: 1001;
    }

    /* Lang switch inside mobile drawer */
    .lang-switch {
        position: static;
        margin-left: 0;
        margin-top: auto;
        padding-top: var(--space-4);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        width: 100%;
    }

    .lang-switch__current {
        width: 100%;
        justify-content: flex-start;
    }

    .lang-switch__dropdown {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
        margin-top: 6px;
        border-radius: var(--radius-sm);
    }

    /* Hero */
    .hero {
        padding-top: calc(var(--nav-height) + var(--space-6));
        min-height: 80vh;
    }

    .hero__blob {
        width: 280px;
        top: 40px;
        right: -40px;
    }

    .hero__logo { width: 140px; }
    .hero__title { font-size: 30px; }
    .hero__subtitle { font-size: 16px; }

    .btn {
        font-size: 16px;
        padding: 14px 32px;
    }

    /* Grids → 1 col */
    .what-we-do__grid   { grid-template-columns: 1fr; }
    .social-proof__grid { grid-template-columns: 1fr; }
    .industry-grid      { grid-template-columns: 1fr; }

    .step-card__number { font-size: 60px; }

    .why-participate__item--nested {
        margin-left: var(--space-4);
    }
}

/* === 19. DIAGONAL SECTION TRANSITIONS === */

/* S2: teal-wash — clips bottom-right lower */
.emotions {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--diagonal)), 0 100%);
    padding-bottom: calc(var(--space-8) + var(--diagonal));
}

/* S3: white — pulled up by S2, clips bottom-left lower */
.why-now {
    margin-top: calc(var(--diagonal) * -1);
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--diagonal)));
    padding-bottom: calc(var(--space-8) + var(--diagonal));
}

/* S4: purple-wash — pulled up by S3 */
.what-we-do {
    margin-top: calc(var(--diagonal) * -1);
    position: relative;
    z-index: 2;
}

/* S6: coral-wash — clips bottom-right lower */
.why-participate {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--diagonal)), 0 100%);
    padding-bottom: calc(var(--space-8) + var(--diagonal));
}

/* S7: white — pulled up by S6, clips bottom-left lower */
.for-whom {
    margin-top: calc(var(--diagonal) * -1);
    position: relative;
    z-index: 3;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--diagonal)));
    padding-bottom: calc(var(--space-8) + var(--diagonal));
}

/* S8: midnight — pulled up by S7 */
.safety {
    margin-top: calc(var(--diagonal) * -1);
    position: relative;
    z-index: 4;
}

/* ==========================================================================
   MEDIUM-LARGE SCREENS — between 1024px and 1400px
   ========================================================================== */
@media (min-width: 1024px) and (max-width: 1400px) {

    /* --- Global headings --- */
    h1 { font-size: 46px; }
    h2 { font-size: 34px; }
    h3 { font-size: 24px; }

    /* --- Hero --- */
    .hero__title      { font-size: 36px; }
    .hero__subtitle        { font-size: 16px; }
    .hero__organizer-logo  { height: 32px; }

    /* --- Step cards (Ce facem) --- */
    .step-card__number { font-size: 64px; }
    .step-card__text   { font-size: 15px; }

    /* --- Social proof items --- */
    .proof-item__icon  { font-size: 26px; }
    .proof-item__title { font-size: 16px; }
    .proof-item__text  { font-size: 15px; }

    .social-proof__closing { font-size: 15px; }

    /* --- Emotions list --- */
    .emotions__item-text { font-size: 15px; }

    /* --- Why participate / For whom --- */
    .why-participate__item { font-size: 15px; }
    .for-whom__item        { font-size: 15px; }

    /* --- Industry cards --- */
    .industry-card__icon { font-size: 22px; }
    .industry-card__name { font-size: 14px; }

    /* --- Thank you --- */
    .thankyou__icon  { font-size: 52px; }
    .thankyou__title { font-size: 24px; }
    .thankyou__text  { font-size: 15px; }
    .btn{
        font-size: 15px;
    }
    .hero--split .hero__inner {
        justify-content: center;
    }

}
@media (max-width: 1024px) {
    .for-whom__image{
        object-position: initial;
    }
    .cta-mid__inner{
        margin-bottom:0;
    }
    .section.cta-mid{
        padding-top:0;
    }
    #de-ce-acum{
        padding-bottom:50px;
    }
    #for-whom{
        padding-bottom:50px;
    }
    .hero__organizers{
        margin-bottom:25px;
    }
    #why-now{
        padding-bottom: 50px;
    }
    .why-participate__image{
        object-position: unset;
    }
    #de-ce-acum + .section.cta-mid{
        padding-bottom: 30px;
    }
    #pentru-cine{
        padding-bottom:50px;
    }
    .emotions__inner{
        flex-direction: column-reverse;
        display: flex;
    }

}
.hero__scroll-hint{
    display:none;
}