/* ===========================================
   EIGEN & WIJZE - WORDPRESS OPTIMIZED CSS
   Opgeschoond, geen duplicaten, BEM naming
   =========================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --ew-primary: #FF6B00;
    --ew-secondary: #FFB03A;
    --ew-blue: #4A90E2;
    --ew-dark: #1A1A1A;
    --ew-light: #F5F5F5;
    --ew-white: #FFFFFF;
    --ew-text: #333333;
    --ew-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --ew-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --ew-shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --ew-transition: 0.3s ease;
    --ew-transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET ========== */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ========== BASE ========== */
html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--ew-text);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.ew-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TYPOGRAPHY ========== */
.ew-section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 60px;
    color: var(--ew-dark);
    position: relative;
}

.ew-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--ew-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.ew-section-title--light { color: var(--ew-white); }

.ew-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ew-text);
    margin-top: -40px;
    margin-bottom: 60px;
}

.ew-lead {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
}

.ew-highlight { color: var(--ew-primary); }

/* ========== BUTTONS ========== */
.ew-btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--ew-transition);
    display: inline-block;
}

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

.ew-btn--primary:hover {
    background: var(--ew-primary);
    color: var(--ew-white);
    transform: translateY(-3px);
    box-shadow: var(--ew-shadow-lg);
}

.ew-btn--secondary {
    background: transparent;
    color: var(--ew-white);
    border: 2px solid var(--ew-white);
}

.ew-btn--secondary:hover {
    background: var(--ew-white);
    color: var(--ew-primary);
    transform: translateY(-3px);
}

.ew-btn--submit {
    background: var(--ew-white);
    color: var(--ew-primary);
    padding: 15px 45px;
    font-size: 1.1rem;
}

.ew-btn--submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========== LOGO STYLING ========== */
.ew-logo-eigen { color: var(--ew-primary); }
.ew-logo-ampersand { color: var(--ew-dark); }
.ew-logo-wijze { color: var(--ew-blue); }

/* ========== HERO SECTION ========== */
.ew-hero {
    position: relative;
    height: 120vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ew-white);
    overflow: hidden;
}

.ew-hero__video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ew-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ew-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.8), rgba(255, 176, 58, 0.6));
}

.ew-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding-top: 10vh;
}

.ew-hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ew-hero__subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.ew-hero__text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.ew-hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.ew-hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.ew-hero__scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--ew-white);
    border-radius: 25px;
    position: relative;
}

.ew-hero__scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--ew-white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: ew-scroll 2s infinite;
}

@keyframes ew-scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Floating Videos */
.ew-floating-videos {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.ew-floating-video {
    position: absolute;
    width: 280px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    will-change: transform;
    opacity: 0;
    animation: ew-fadeInVideo 0.8s ease forwards;
}

.ew-floating-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ew-floating-video--1 { top: 15%; right: 5%; animation-delay: 0.2s; }
.ew-floating-video--2 { top: 45%; left: 2%; animation-delay: 0.4s; }
.ew-floating-video--3 { top: 40%; right: 10%; animation-delay: 0.6s; }
.ew-floating-video--4 { top: 25%; left: 8%; animation-delay: 0.8s; }

@keyframes ew-fadeInVideo {
    to { opacity: 1; }
}

/* ========== TRUSTED BY / LOGO CAROUSEL ========== */
.ew-trusted-by {
    padding: 60px 0 80px;
    background: var(--ew-light);
    overflow: hidden;
}

.ew-trusted-by__title {
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 600;
}

.ew-logo-carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ew-logo-carousel__track {
    display: flex;
    gap: 80px;
    animation: ew-scrollLogos 30s linear infinite;
    width: max-content;
}

.ew-logo-carousel__item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ew-primary);
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity var(--ew-transition);
}

.ew-logo-carousel__item:hover { opacity: 1; }

@keyframes ew-scrollLogos {
    to { transform: translateX(-50%); }
}

/* ========== SERVICES SECTION ========== */
.ew-services {
    padding: 100px 0;
    background: var(--ew-white);
}

.ew-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ew-service-card {
    background: var(--ew-white);
    border: 2px solid var(--ew-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--ew-transition);
    position: relative;
    overflow: hidden;
}

.ew-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.ew-service-card:hover::before { left: 100%; }

.ew-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
    border-color: var(--ew-primary);
}

.ew-service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--ew-primary);
    transition: transform var(--ew-transition);
}

.ew-service-card:hover .ew-service-card__icon {
    transform: scale(1.2) rotate(5deg);
}

.ew-service-card__icon--rotating {
    animation: ew-gentleRotate 10s linear infinite;
}

@keyframes ew-gentleRotate {
    to { transform: rotate(360deg); }
}

.ew-service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--ew-dark);
}

.ew-service-card p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--ew-text);
}

.ew-service-card__list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.ew-service-card__list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--ew-text);
}

.ew-service-card__list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--ew-primary);
    font-weight: bold;
}

/* ========== SECTORS SECTION ========== */
.ew-sectors {
    padding: 100px 0;
    background: var(--ew-light);
    min-height: 90vh;
}

.ew-sectors__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.ew-sectors__list {
    display: flex;
    flex-direction: column;
}

.ew-sectors__item {
    padding: 25px 30px;
    cursor: pointer;
    transition: all var(--ew-transition);
    border-left: 4px solid transparent;
}

.ew-sectors__item h3 {
    font-size: 2rem;
    color: #999;
    transition: all var(--ew-transition);
    margin: 0;
    font-weight: 400;
}

.ew-sectors__item:hover h3,
.ew-sectors__item.is-active h3 {
    color: var(--ew-dark);
    font-weight: 600;
    transform: translateX(15px);
}

.ew-sectors__item.is-active {
    border-left-color: var(--ew-primary);
}

.ew-sectors__item.is-active h3 {
    color: var(--ew-primary);
    font-weight: 700;
}

/* Sector Bubble */
.ew-sectors__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.ew-sectors__bubble {
    position: relative;
    width: 400px;
    height: 400px;
    transition: all var(--ew-transition-bounce);
}

.ew-sectors__bubble-image {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ew-primary), var(--ew-secondary));
    background-size: 150%;
    background-position: center;
    transition: all 0.8s var(--ew-transition-bounce);
    box-shadow: var(--ew-shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

/* Sector Gradients */
.ew-sectors__bubble-image[data-sector="ecommerce"] { background: linear-gradient(135deg, #667eea, #764ba2); }
.ew-sectors__bubble-image[data-sector="zorg"] { background: linear-gradient(135deg, #f093fb, #f5576c); }
.ew-sectors__bubble-image[data-sector="finance"] { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.ew-sectors__bubble-image[data-sector="horeca"] { background: linear-gradient(135deg, #fa709a, #fee140); }
.ew-sectors__bubble-image[data-sector="bouw"] { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.ew-sectors__bubble-image[data-sector="retail"] { background: linear-gradient(135deg, #ffecd2, #fcb69f); }

.ew-sectors__bubble-content {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 15px;
    min-width: 350px;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease-out 0.2s;
    box-shadow: var(--ew-shadow-lg);
}

.ew-sectors__bubble-content p {
    color: var(--ew-white);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.ew-sectors__item.is-active ~ .ew-sectors__visual .ew-sectors__bubble-content {
    opacity: 1;
    bottom: -120px;
}

/* ========== VIDEO GALLERY ========== */
.ew-video-gallery {
    padding: 100px 0;
    background: var(--ew-white);
}

.ew-video-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ew-video-card {
    background: var(--ew-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ew-shadow);
    transition: all var(--ew-transition);
}

.ew-video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ew-shadow-xl);
}

.ew-video-card__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.ew-video-card__wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.ew-video-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.3rem;
    color: var(--ew-dark);
    margin: 0;
}

.ew-video-card p {
    padding: 0 25px 25px;
    color: var(--ew-text);
    margin: 0;
}

/* ========== WHY AI TIMELINE ========== */
.ew-why-ai {
    padding: 100px 0;
    background: var(--ew-light);
}

.ew-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 0;
}

.ew-timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--ew-primary), var(--ew-secondary));
    transform: translateX(-50%);
    transition: height 0.5s ease-out;
    border-radius: 2px;
}

.ew-timeline__item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0.5;
    transition: all 0.6s ease-out;
}

.ew-timeline__item.is-unlocked { opacity: 1; }

.ew-timeline__dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--ew-white);
    border: 4px solid var(--ew-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all var(--ew-transition);
}

.ew-timeline__item.is-unlocked .ew-timeline__dot {
    background: var(--ew-primary);
    transform: translateX(-50%) scale(1.1);
}

.ew-timeline__icon {
    font-size: 2rem;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all var(--ew-transition);
}

.ew-timeline__item.is-unlocked .ew-timeline__icon {
    filter: grayscale(0);
    opacity: 1;
}

.ew-timeline__content {
    background: var(--ew-white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: calc(50% - 60px);
    transition: all var(--ew-transition);
}

.ew-timeline__item:hover .ew-timeline__content {
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
    transform: scale(1.02);
}

.ew-timeline__item:nth-child(odd) .ew-timeline__content {
    margin-left: auto;
    margin-right: 60px;
}

.ew-timeline__item:nth-child(even) .ew-timeline__content {
    margin-right: auto;
    margin-left: 60px;
}

.ew-timeline__content h3 {
    color: var(--ew-primary);
    font-size: 1.8rem;
    margin: 0 0 15px;
    font-weight: 700;
}

.ew-timeline__content p {
    color: var(--ew-text);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.ew-why-ai__text {
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0;
}

/* ========== SCROLL TEXT SECTION ========== */
.ew-scroll-text-section {
    padding: 150px 0;
    background: var(--ew-dark);
    overflow: hidden;
}

.ew-scroll-text-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ew-scroll-text {
    margin: 60px 0;
    opacity: 0;
}

.ew-scroll-text h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--ew-white);
    margin: 0;
}

.ew-scroll-text--left {
    text-align: left;
    padding-left: 10%;
    transform: translateX(-100px);
}

.ew-scroll-text--right {
    text-align: right;
    padding-right: 10%;
    transform: translateX(100px);
}

.ew-scroll-text.is-active {
    opacity: 1;
    transform: translateX(0) !important;
    transition: all 1s var(--ew-transition-bounce);
}

/* ========== ABOUT SECTION ========== */
.ew-about {
    padding: 100px 0;
    background: var(--ew-white);
}

.ew-about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ew-about__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ew-usps { margin-top: 40px; }

.ew-usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.ew-check-icon {
    width: 35px;
    height: 35px;
    background: var(--ew-primary);
    color: var(--ew-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.ew-about__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ew-shadow-xl);
}

.ew-about__image img {
    width: 100%;
    display: block;
}

.ew-about__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 107, 0, 0.95), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: transform var(--ew-transition);
    color: var(--ew-white);
}

.ew-about__image:hover .ew-about__image-overlay {
    transform: translateY(0);
}

.ew-about__image-overlay p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.ew-about__image-overlay strong {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Mission & Vision */
.ew-mission-vision { margin-top: 80px; }

.ew-mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ew-mission-box,
.ew-vision-box,
.ew-values-box {
    background: var(--ew-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--ew-transition);
    border: 2px solid transparent;
}

.ew-mission-box:hover,
.ew-vision-box:hover,
.ew-values-box:hover {
    transform: translateY(-10px);
    border-color: var(--ew-primary);
    box-shadow: var(--ew-shadow-lg);
}

.ew-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--ew-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    box-shadow: var(--ew-shadow);
}

.ew-mission-box h3,
.ew-vision-box h3,
.ew-values-box h3 {
    font-size: 1.5rem;
    color: var(--ew-dark);
    margin: 0 0 15px;
}

.ew-mission-box p,
.ew-vision-box p,
.ew-values-box p {
    color: var(--ew-text);
    line-height: 1.7;
    margin: 0;
}

/* ========== TEAM SECTION ========== */
.ew-team {
    padding: 100px 0;
    background: var(--ew-white);
}

.ew-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

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

.ew-team__portrait {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--ew-shadow-lg);
    cursor: pointer;
}

.ew-team__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: opacity var(--ew-transition);
}

.ew-team__portrait-hover { opacity: 0; }

.ew-team__portrait:hover .ew-team__portrait-hover { opacity: 1; }
.ew-team__portrait:hover .ew-team__portrait-default { opacity: 0; }

.ew-team__member h3 {
    font-size: 1.5rem;
    color: var(--ew-dark);
    margin: 0 0 8px;
}

.ew-team__role {
    color: var(--ew-primary);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 15px;
}

.ew-team__bio {
    color: var(--ew-text);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ========== CONTACT SECTION ========== */
.ew-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ew-primary), var(--ew-secondary));
    color: var(--ew-white);
}

.ew-contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.ew-contact__form-wrapper h3,
.ew-contact__info h3 {
    font-size: 2rem;
    margin: 0 0 15px;
}

.ew-contact__form-wrapper p {
    font-size: 1.1rem;
    margin: 0 0 30px;
    opacity: 0.9;
}

.ew-contact-form input,
.ew-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
}

.ew-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.ew-contact__info { margin-top: 15px; }

.ew-contact__item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.ew-contact__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.ew-contact__item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.ew-contact__item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.ew-social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.ew-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--ew-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ew-white);
    text-decoration: none;
    font-weight: bold;
    transition: all var(--ew-transition);
}

.ew-social-link:hover {
    background: var(--ew-white);
    color: var(--ew-primary);
    transform: translateY(-5px);
}

/* ========== FOOTER ========== */
.ew-footer {
    background: var(--ew-dark);
    color: var(--ew-white);
    padding: 60px 0 30px;
}

.ew-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.ew-footer__logo h3 {
    font-size: 1.5rem;
    margin: 0 0 15px;
}

.ew-footer__logo p {
    opacity: 0.8;
    margin: 0;
}

.ew-footer h4 {
    margin: 0 0 20px;
    color: var(--ew-primary);
    font-size: 1.2rem;
}

.ew-footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ew-footer__links li { margin-bottom: 12px; }

.ew-footer__links a {
    color: var(--ew-white);
    text-decoration: none;
    transition: color var(--ew-transition);
    opacity: 0.8;
}

.ew-footer__links a:hover {
    color: var(--ew-primary);
    opacity: 1;
}

.ew-footer__contact p {
    margin: 0 0 10px;
    opacity: 0.8;
}

.ew-footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.ew-footer__bottom p { margin: 0; }

/* ========== ANIMATIONS ========== */
.ew-scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ew-scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .ew-sectors__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ew-sectors__visual {
        order: -1;
        min-height: 450px;
    }

    .ew-sectors__bubble {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .ew-hero__title { font-size: 2.2rem; }
    .ew-services__grid { grid-template-columns: 1fr; }
    .ew-video-gallery__grid { grid-template-columns: 1fr; }

    .ew-timeline__line { left: 40px; }
    .ew-timeline__dot {
        left: 40px;
        width: 60px;
        height: 60px;
    }
    .ew-timeline__icon { font-size: 1.5rem; }
    .ew-timeline__content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        margin-right: 0 !important;
    }

    .ew-scroll-text h2 { font-size: 2.5rem; }
    .ew-scroll-text--left { padding-left: 5%; }
    .ew-scroll-text--right { padding-right: 5%; }

    .ew-about__content { grid-template-columns: 1fr; gap: 40px; }
    .ew-contact__content { grid-template-columns: 1fr; gap: 50px; }
    .ew-footer__content { grid-template-columns: 1fr; text-align: center; }
    .ew-team__grid { grid-template-columns: 1fr; }
    .ew-team__portrait { width: 200px; height: 200px; }
    .ew-mission-vision__grid { grid-template-columns: 1fr; }
    .ew-floating-videos { display: none; }

    .ew-sectors__bubble { width: 280px; height: 280px; }
    .ew-sectors__bubble-content { min-width: 250px; padding: 20px 25px; }
}

@media (max-width: 480px) {
    .ew-hero__title { font-size: 1.8rem; }
    .ew-section-title { font-size: 2rem; }
    .ew-sectors__item h3 { font-size: 1.5rem; }
    .ew-scroll-text h2 { font-size: 2rem; }
}
