:root {
    --bg-main: #040814;
    --bg-card: #0a1125;
    --bg-card-border: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a0a6b5;
    
    --color-cyan: #00e5ff;
    --color-blue: #3a7bd5;
    --color-purple: #9d4edd;
    --color-pink: #f72585;
    --color-red: #ef233c;
    --color-orange: #f8961e;
    
    --glow-cyan: 0 0 15px rgba(0, 229, 255, 0.6);
    --glow-purple: 0 0 15px rgba(157, 78, 221, 0.6);
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography Utilities */
.text-cyan { color: var(--color-cyan); }
.text-blue { color: var(--color-blue); }
.text-purple { color: var(--color-purple); }
.text-pink { color: var(--color-pink); }
.text-red { color: var(--color-red); }
.text-orange { color: var(--color-orange); }
.text-gradient-blue-purple {
    background: linear-gradient(90deg, #2b76f5 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.font-bold { font-weight: bold; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-outline {
    border: 1px solid var(--text-secondary);
    border-radius: 30px;
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

.btn-outline-round {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--text-primary);
}

.btn-outline-round:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-neon {
    background: transparent;
    border: 1px solid var(--color-cyan);
    border-radius: 30px;
    color: var(--color-cyan);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    box-shadow: var(--glow-cyan);
    position: relative;
    overflow: hidden;
}

.btn-neon span {
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 700;
}

.btn-neon .fa-play {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.btn-neon .arrow-icon {
    font-size: 1.2rem;
}

.btn-neon:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.8);
}

.btn-submit {
    background: rgba(10, 17, 37, 0.8);
    border: 1px solid var(--color-purple);
    color: var(--text-primary);
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: rgba(157, 78, 221, 0.2);
    box-shadow: var(--glow-purple);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: rgba(4, 8, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    max-width: 250px;
}

.brand-logo {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav a:hover, .nav a.active {
    color: var(--text-primary);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-image: 
        radial-gradient(circle at 70% 50%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.neon-circle-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circular-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulse 4s infinite alternate;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.4));
}

@keyframes pulse {
    0% { transform: scale(0.95); filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(157, 78, 221, 0.5)); }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--color-cyan);
    border-color: var(--color-cyan);
    box-shadow: var(--glow-cyan);
}

/* CARDS COMMON */
.card-dark {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

/* WHY US SECTION */
.why-us {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 50px;
}

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

.why-us .icon-container {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-us p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* SERVICES SECTION */
.services {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(10, 17, 37, 0.5), transparent);
}

.cards-grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 2rem;
}

.service-card span {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

/* PILLARS SECTION */
.pillars {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(10, 17, 37, 0.3));
}

.pillars-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.pillars-header .header-left {
    flex: 1;
    max-width: 65%;
}

.pillars-header .header-left h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 15px;
    letter-spacing: -0.5px;
    text-transform: none; /* overrides default H2 uppercase if any */
}

.pillars-header .header-right {
    flex: 1;
    max-width: 35%;
}

.pillars-header .header-right p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-left: 2px solid rgba(0, 229, 255, 0.3);
    padding-left: 20px;
}

.pillars-header .subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-purple);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pillars-header .sub-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--color-purple);
}

.text-gradient-purple-cyan {
    background: linear-gradient(90deg, #9d4edd 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.pillar-card {
    background: rgba(10, 17, 37, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 540px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Card 1 specific glow on hover */
.pillar-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.15), 0 0 30px rgba(157, 78, 221, 0.1), inset 0 0 20px rgba(157, 78, 221, 0.05);
    border-color: rgba(157, 78, 221, 0.5);
}

/* Card 2 specific glow on hover */
.pillar-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(58, 123, 213, 0.15), 0 0 30px rgba(58, 123, 213, 0.1), inset 0 0 20px rgba(58, 123, 213, 0.05);
    border-color: rgba(58, 123, 213, 0.5);
}

/* Card 3 specific glow on hover */
.pillar-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.15), 0 0 30px rgba(0, 229, 255, 0.1), inset 0 0 20px rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.5);
}

.pillar-card-content {
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.pillar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px currentColor;
    -webkit-text-fill-color: transparent;
    opacity: 0.35;
}

.text-gradient-purple-pink {
    background: linear-gradient(135deg, #9d4edd 0%, #f72585 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple-blue {
    background: linear-gradient(135deg, #9d4edd 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cyan-blue {
    background: linear-gradient(135deg, #00e5ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--text-primary);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

/* Icons specific colors */
.pillar-card:nth-child(1) .pillar-icon {
    border-color: rgba(157, 78, 221, 0.3);
    color: var(--color-purple);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.pillar-card:nth-child(2) .pillar-icon {
    border-color: rgba(58, 123, 213, 0.3);
    color: var(--color-blue);
    box-shadow: 0 0 15px rgba(58, 123, 213, 0.2);
}

.pillar-card:nth-child(3) .pillar-icon {
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.pillar-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.pillar-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    transition: width 0.3s ease;
}

.pillar-card:nth-child(1) h3::after { background-color: var(--color-purple); }
.pillar-card:nth-child(2) h3::after { background-color: var(--color-blue); }
.pillar-card:nth-child(3) h3::after { background-color: var(--color-cyan); }

.pillar-card:hover h3::after {
    width: 45px;
}

.pillar-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 95%;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 75%;
    z-index: 2;
    position: relative;
}

.pillar-list li {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pillar-list li i {
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    opacity: 0.35;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-list li i {
    opacity: 1;
    filter: drop-shadow(0 0 4px currentColor);
}

.pillar-card:nth-child(1) .pillar-list li i { color: var(--color-purple); }
.pillar-card:nth-child(2) .pillar-list li i { color: var(--color-blue); }
.pillar-card:nth-child(3) .pillar-list li i { color: var(--color-cyan); }

.pillar-graphic {
    position: absolute;
    right: -25px;
    bottom: -20px;
    width: 65%;
    height: 52%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pillar-graphic img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pillar-card:hover .pillar-graphic {
    opacity: 0.85;
}

.pillar-card:hover .pillar-graphic img {
    transform: scale(1.08) translate(-10px, -8px);
}

/* BANNER STYLES */
.pillars-banner {
    background: #060b1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.pillars-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pillars-banner .banner-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.pillars-banner .banner-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
}

.pillars-banner .banner-left p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.pillars-banner .banner-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pillars-banner .banner-right p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: right;
}

.pillars-banner .banner-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.pillars-banner .banner-btn:hover {
    background: var(--color-purple);
    border-color: var(--color-purple);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

/* RESPONSIVE STYLES FOR PILLARS */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pillar-card {
        padding: 40px;
    }
    .pillar-graphic {
        flex: 1;
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .pillars-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .pillars-header .header-left,
    .pillars-header .header-right {
        max-width: 100%;
    }
    .pillars-header .header-right p {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0, 229, 255, 0.2);
        padding-top: 15px;
    }
    .pillars-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 35px 30px;
    }
    .pillars-banner .banner-right {
        width: 100%;
        justify-content: space-between;
    }
    .pillars-banner .banner-right p {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .pillar-card {
        flex-direction: column;
        gap: 35px;
    }
    .pillar-card-content {
        width: 100%;
    }
    .pillar-graphic {
        width: 100%;
        max-width: 100%;
    }
}

/* TEAM SECTION */
.team {
    padding: 100px 0;
}

.section-header-row {
    margin-bottom: 40px;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 1;
    overflow: hidden;
}

.carousel-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    color: var(--color-cyan);
    border-color: var(--color-cyan);
    box-shadow: var(--glow-cyan);
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 8px;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.1;
    object-fit: cover;
    border-bottom: 1px solid var(--bg-card-border);
}

/* Alignment of heads in the portraits (aligned with comfortable breathing room above the heads) */
.team-card img.avatar-marisela {
    object-position: center 10%;
}

.team-card img.avatar-arelis {
    object-position: center 10%;
}

.team-card img.avatar-edward {
    object-position: center 11%;
}

.team-card img.avatar-esther {
    object-position: center 12%;
}



.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-info .role {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: bold;
}

.team-info .degree {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
}

.dot.active {
    background: var(--color-cyan);
    box-shadow: var(--glow-cyan);
}

/* CLIENTS */
.clients {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.clients-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-item:hover {
    color: var(--text-primary);
}

.logo-item img {
    max-height: 40px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.8) contrast(0.8) opacity(0.6);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1.2) contrast(1) opacity(1);
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.client-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.client-info h4 {
    font-size: 1rem;
    color: var(--color-cyan);
}

.client-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.client-logo {
    color: var(--text-secondary);
    opacity: 0.5;
    display: flex;
    align-items: center;
}

.client-logo img {
    max-height: 35px;
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.8) opacity(0.6);
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-logo img {
    filter: grayscale(0%) brightness(1.2) opacity(1);
}

.no-border {
    border: none;
}

/* CONTACT */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
}

.contact-form-section h2 {
    margin-bottom: 10px;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
}

.social-links a:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input, .form-row select, textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.form-row input:focus, .form-row select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
}

.contact-graphic {
    display: flex;
    justify-content: flex-end;
}

.graphic-box {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 229, 255, 0.1));
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(157, 78, 221, 0.1);
    position: relative;
    overflow: hidden;
}

.neon-play-small-wrapper {
    display: inline-block;
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.1) rotate(-1080deg);
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.7));
    animation: logoEntrance 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.neon-play-small-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    animation: pulse 4s infinite alternate 1.8s;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.neon-play-small-wrapper:hover .neon-play-small-img {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.95)) !important;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(-1080deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.graphic-text h3 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* FOOTER */
.footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(4, 8, 20, 0.9);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    max-width: 250px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

.back-to-top {
    width: 40px;
    height: 40px;
    background: var(--color-cyan);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--glow-cyan);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .cards-grid-4, .carousel-track, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards-grid-8 {
        grid-template-columns: repeat(4, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none; /* simple mobile menu hidden for now */
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        margin-bottom: 50px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .cards-grid-4, .carousel-track, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .cards-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-logos {
        justify-content: center;
    }
    .form-row {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
