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

:root {
    --primary: #667eea;
    --secondary: #c7c800;
    --dark: #0f172a;
    --light: #f8fafc;
    --font-size-base: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #1e293b;
    background: #fff;
    overflow-x: hidden;
}

/* WCAG 2.1 AA High Contrast Mode */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast * {
    background-color: inherit;
    color: inherit;
}

body.high-contrast .header-morph {
    background: #000 !important;
    border-bottom: 3px solid #ffff00;
}

body.high-contrast .nav-link-morph,
body.high-contrast .nav-link-morph,
body.high-contrast .section-title-morph,
body.high-contrast .slide-title,
body.high-contrast .title-morph,
body.high-contrast h1, 
body.high-contrast h2, 
body.high-contrast h3,
body.high-contrast h4 {
    color: #fff !important;
}

body.high-contrast .subtitle-morph,
body.high-contrast .section-desc-morph,
body.high-contrast p,
body.high-contrast li {
    color: #fff !important;
}

body.high-contrast .flip-card-front,
body.high-contrast .flip-card-back,
body.high-contrast .liquid-item {
    border: 2px solid #ffff00 !important;
}

body.high-contrast .wave-feature,
body.high-contrast .support-card,
body.high-contrast .client-card,
body.high-contrast .faq-item {
    background: #000 !important;
    border: 2px solid #ffff00 !important;
}

body.high-contrast .morph-card h3,
body.high-contrast .wave-feature h3,
body.high-contrast .support-card h3,
body.high-contrast .client-card h3,
body.high-contrast .faq-item h3 {
    color: #ffff00 !important;
}

body.high-contrast .section-morph,
body.high-contrast .gallery-morph,
body.high-contrast .support-morph,
body.high-contrast .clients-morph,
body.high-contrast .faq-morph,
body.high-contrast .contact-morph,
body.high-contrast .about-morph {
    background: #000 !important;
}

body.high-contrast .footer-morph {
    background: #111 !important;
}

body.high-contrast .liquid-button {
    background: #ffff00 !important;
    color: #000 !important;
}

body.high-contrast .liquid-button-text {
    color: #000 !important;
}

body.high-contrast a {
    color: #ffff00 !important;
}

body.high-contrast .form-field input,
body.high-contrast .form-field textarea {
    background: #000 !important;
    color: #fff !important;
    border-color: #ffff00 !important;
}

body.high-contrast .form-field label {
    color: #ffff00 !important;
}

body.high-contrast *:focus-visible {
    outline: 3px solid #ffff00 !important;
}

body.high-contrast .liquid-button,
body.high-contrast .submit-morph,
body.high-contrast .accessibility-btn,
body.high-contrast .slider-btn,
body.high-contrast .swiper-button-next,
body.high-contrast .swiper-button-prev {
    background: #ffff00 !important;
    color: #000 !important;
    border: 2px solid #ffff00 !important;
}

body.high-contrast .liquid-button:hover,
body.high-contrast .submit-morph:hover,
body.high-contrast .accessibility-btn:hover {
    background: #000 !important;
    color: #ffff00 !important;
    border: 2px solid #ffff00 !important;
}

body.high-contrast .flip-card-front h3,
body.high-contrast .flip-card-back p {
    color: #fff !important;
}

body.high-contrast .slide-overlay {
    background: transparent !important;
}

body.high-contrast .hero-slide .hero-morph-content {
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 30px !important;
    border-radius: 20px !important;
}

body.high-contrast .title-morph,
body.high-contrast .slide-title {
    color: #ffff00 !important;
}

body.high-contrast .subtitle-morph {
    color: #fff !important;
}

.morphing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.blob {
    filter: blur(60px);
}

.accessibility-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.accessibility-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(199, 200, 0, 0.4);
    transition: all 0.3s ease;
    animation: morphPulse 3s ease-in-out infinite;
}

@keyframes morphPulse {
    0%, 100% {
        border-radius: 50%;
        transform: scale(1);
    }
    50% {
        border-radius: 30%;
        transform: scale(1.05);
    }
}

.accessibility-toggle:hover {
    animation: none;
    transform: scale(1.1);
    border-radius: 30%;
}

.accessibility-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    min-width: 200px;
    border: 2px solid var(--secondary);
}

.accessibility-options.hidden {
    display: none;
}

.accessibility-options h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.accessibility-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 8px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.accessibility-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.header-morph {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 100;
}

.container-morph {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.header-morph .container-morph {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-morph svg {
    animation: logoRotate 10s linear infinite;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-morph {
    display: flex;
    gap: 40px;
}

.nav-link-morph {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-morph::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link-morph:hover {
    color: var(--primary);
}

.hero-morph {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: 80px;
}

.hero-swiper {
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 500px;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(102, 126, 234, 0.7) 100%);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--secondary);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
}

.hero-cta-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.hero-morph-content {
    text-align: center;
    z-index: 10;
}

.title-morph {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    animation: titleFloat 3s ease-in-out infinite;
}

.slide-title {
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        text-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
        text-shadow: 0 15px 40px rgba(0,0,0,0.4);
    }
}

.morph-letter {
    display: inline-block;
    animation: letterMorph 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.morph-letter:nth-child(1) { --i: 1; }
.morph-letter:nth-child(2) { --i: 2; }
.morph-letter:nth-child(3) { --i: 3; }
.morph-letter:nth-child(4) { --i: 4; }
.morph-letter:nth-child(5) { --i: 5; }
.morph-letter:nth-child(6) { --i: 6; }
.morph-letter:nth-child(7) { --i: 7; }
.morph-letter:nth-child(8) { --i: 8; }
.morph-letter:nth-child(9) { --i: 9; }
.morph-letter:nth-child(10) { --i: 10; }
.morph-letter:nth-child(11) { --i: 11; }
.morph-letter:nth-child(12) { --i: 12; }

@keyframes letterMorph {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) scale(1.1) rotate(5deg);
    }
    50% {
        transform: translateY(0) scale(0.9) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) scale(1.05) rotate(3deg);
    }
}

.subtitle-morph {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.liquid-button-container {
    position: relative;
    display: inline-block;
}

.liquid-button {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    z-index: 1;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.liquid-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199, 200, 0, 0.4);
}

.liquid-button .liquid-shape {
    display: none;
}

.liquid-button-text {
    position: relative;
    z-index: 2;
}

.liquid-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.liquid-button:hover .liquid-path {
    animation-duration: 2s;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape-morph {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatMorph 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary), transparent);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f093fb, transparent);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatMorph {
    0%, 100% {
        transform: translateY(0) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translateY(-30px) scale(1.1);
        border-radius: 40%;
    }
    50% {
        transform: translateY(-60px) scale(0.9);
        border-radius: 60%;
    }
    75% {
        transform: translateY(-30px) scale(1.05);
        border-radius: 45%;
    }
}

.section-morph {
    padding: 120px 0;
    position: relative;
}

.section-title-morph {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.split-text {
    display: inline-block;
    opacity: 0;
    animation: splitReveal 1s ease forwards;
    color: var(--dark);
}

@keyframes splitReveal {
    to {
        opacity: 1;
    }
}

.section-desc-morph {
    text-align: center;
    font-size: 1.25rem;
    max-width: 100%;
    margin: 0 auto 80px;
    color: #64748b;
    line-height: 1.8;
}

.morph-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Flip Card Styles */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.flip-card-front {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.flip-card-front h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-top: 20px;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.morph-card-shape {
    width: 150px;
    height: 150px;
}

.morph-card-shape svg {
    width: 100%;
    height: 100%;
}

.gallery-morph {
    padding: 120px 0;
    background: var(--light);
}

.liquid-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.liquid-item {
    position: relative;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.liquid-item:hover {
    transform: scale(1.05);
    border-radius: 20px;
    z-index: 10;
}

.liquid-item-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.liquid-item:hover .liquid-item-bg {
    transform: scale(1.2);
}

.liquid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transition: all 0.4s ease;
}

.liquid-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.ripple-button {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.liquid-item:hover .ripple-button {
    opacity: 1;
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(199, 200, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 0 30px rgba(199, 200, 0, 0);
    }
}

.about-morph {
    padding: 120px 0;
}

.about-content-morph {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-lead-morph {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.wave-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.wave-feature {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.wave-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.wave-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.wave-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.wave-feature p {
    color: #64748b;
}

.contact-morph {
    padding: 120px 0;
    background: var(--light);
}

.form-morph {
    max-width: 700px;
    margin: 60px auto 0;
}

.form-field {
    position: relative;
    margin-bottom: 50px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-field label {
    position: absolute;
    top: 20px;
    left: 0;
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-field input:focus ~ label,
.form-field input:valid ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:valid ~ label {
    top: -20px;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.4s ease;
}

.form-field input:focus ~ .form-wave,
.form-field textarea:focus ~ .form-wave {
    width: 100%;
}

.submit-morph {
    position: relative;
    width: 100%;
    padding: 20px 40px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-morph:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199, 200, 0, 0.4);
}

.submit-morph .button-morph-bg {
    display: none;
}

.submit-morph span {
    position: relative;
    z-index: 2;
}

.button-morph-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Checkbox field */
.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-field input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label {
    position: static !important;
    font-size: 0.95rem;
    color: #64748b;
    cursor: pointer;
}

/* Error messages */
.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-field.error input,
.form-field.error textarea {
    border-bottom-color: #dc2626;
}

/* Form status */
.form-status {
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #dc2626;
}

/* Focus styles for accessibility - same as hover effects */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: none;
}

/* Buttons focus = hover */
.liquid-button:focus-visible,
.submit-morph:focus-visible,
.accessibility-btn:focus-visible {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199, 200, 0, 0.4);
}

/* Flip cards focus = hover */
.flip-card:focus-visible .flip-card-inner {
    transform: rotateY(180deg);
}

/* Liquid items focus = hover */
.liquid-item:focus-visible {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.liquid-item:focus-visible .liquid-overlay {
    opacity: 1;
}

/* Nav links focus = hover */
.nav-link-morph:focus-visible {
    color: var(--primary);
}

/* Support cards focus = hover */
.support-card:focus-visible,
.client-card:focus-visible,
.wave-feature:focus-visible {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* FAQ items focus = hover */
.faq-item:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Form inputs focus */
input:focus-visible,
textarea:focus-visible {
    border-bottom-color: var(--primary) !important;
}

/* EU Logos */
.eu-logos-container {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eu-logos-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

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

.footer-morph {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.footer-morph h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-desc {
    margin-top: 15px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-info {
    margin-top: 20px;
    opacity: 0.7;
}

.about-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 20px;
}

.contact-desc {
    margin-bottom: 40px;
}

.modal-morph {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-morph.hidden {
    display: none;
}

.modal-content-morph {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: 30px;
    padding: 50px;
    animation: modalMorph 0.5s ease;
}

@keyframes modalMorph {
    from {
        opacity: 0;
        transform: scale(0.8);
        border-radius: 50%;
    }
    to {
        opacity: 1;
        transform: scale(1);
        border-radius: 30px;
    }
}

.modal-close-morph {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-morph:hover {
    transform: rotate(90deg) scale(1.1);
    border-radius: 30%;
}

.modal-video-morph {
    width: 100%;
    height: 500px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-morph {
    padding: 120px 0;
    background: var(--light);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.support-card {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.4;
}

.clients-morph {
    padding: 120px 0;
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.client-card {
    background: var(--light);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
}

.client-card:hover {
    transform: scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

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

.client-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.client-card ul {
    list-style: none;
    padding: 0;
}

.client-card ul li {
    color: #64748b;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.client-card ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.faq-morph {
    padding: 120px 0;
    background: var(--light);
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .title-morph {
        font-size: 3rem;
    }
    
    .section-title-morph {
        font-size: 2.5rem;
    }
    
    .morph-cards,
    .liquid-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flip-card {
        height: 300px;
    }
    
    .eu-logos {
        gap: 30px;
    }
    
    .hero-cta-overlay {
        bottom: 60px;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wave-features {
        grid-template-columns: 1fr;
    }
    
    .liquid-item {
        height: 280px;
    }
    
    .container-morph {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .title-morph {
        font-size: 2rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .hero-swiper {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-morph-content {
        padding: 0 20px;
    }
    
    .hero-cta {
        padding: 20px;
    }
    
    .liquid-button-text {
        font-size: 0.9rem;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .hero-swiper .swiper-button-next:after,
    .hero-swiper .swiper-button-prev:after {
        font-size: 0.9rem;
    }
    
    .section-title-morph {
        font-size: 2rem;
    }
    
    .morph-cards,
    .liquid-gallery,
    .support-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .flip-card {
        height: 280px;
    }
    
    .flip-card-front h3 {
        font-size: 1.1rem;
    }
    
    .eu-logos {
        flex-direction: column;
        gap: 25px;
    }
    
    .eu-logo-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta-overlay {
        bottom: 40px;
        width: 90%;
    }
    
    .liquid-button-text {
        font-size: 0.8rem;
    }
    
    .nav-morph {
        display: none;
    }
    
    .liquid-item {
        height: 250px;
    }
    
    .container-morph {
        padding: 0 20px;
    }
    
    .hero-morph {
        min-height: 70vh;
        padding: 80px 0;
    }
    
    .section-morph,
    .gallery-morph,
    .about-morph,
    .support-morph,
    .clients-morph,
    .faq-morph {
        padding: 80px 0;
    }
    
    .liquid-overlay h3 {
        font-size: 1.2rem;
    }
    
    .ripple-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .subtitle-morph {
        font-size: 1.2rem;
    }
    
    .client-card {
        padding: 30px;
    }
    
    .client-card h3 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .eu-logos-container {
        padding: 20px;
    }
    
    .eu-logos-img {
        max-height: 60px;
    }
}
