/* ==========================================================================
   SYSTEM DESIGN TOKENS & LENIS SETUP
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Lenis Smooth Scroll CSS */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

:root {
    --brand-orange: #ff5100;       
    --brand-orange-dark: #cc4100;  
    --bg-dark-core: #09090b;       
    --text-pure: #ffffff;
    --text-dimmed: rgba(255, 255, 255, 0.4);
}

body {
    background-color: var(--bg-dark-core);
    color: var(--text-pure);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    padding: clamp(10px, 2vw, 40px);
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ==========================================================================
   FADE IN REVEAL ANIMATION CLASSES
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* KHÔNG GIAN CAM MỜ (AMBIENT GLOW) */
.ambient-glow {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at 15% 50%, rgba(255, 81, 0, 0.04), transparent 40%),
                radial-gradient(circle at 85% 30%, rgba(255, 81, 0, 0.03), transparent 50%);
}

/* ==========================================================================
   INFINITE TICKER BAR
   ========================================================================== */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--brand-orange);
    padding: clamp(8px, 1vw, 16px) 0;
    margin-bottom: clamp(15px, 3vw, 30px);
    border-radius: 4px;
}
.ticker {
    display: flex;
    white-space: nowrap;
    animation: tickerMove 10s linear infinite;
}
.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: clamp(11px, 1.2vw, 20px);
    font-weight: 900;
    color: var(--text-pure);
    letter-spacing: 2px;
}
@keyframes tickerMove {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   STUDIO TOP BAR
   ========================================================================== */
.studio-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto clamp(30px, 5vw, 60px) auto;
    padding: 0 10px;
}
.brand-block {
    display: flex;
    align-items: center;
    gap: 12px;
}
.studio-logo {
    width: clamp(40px, 4.5vw, 65px);
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); 
}
.brand-text h2 {
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 900;
    color: var(--text-pure);
    letter-spacing: -0.5px;
}
.brand-text span {
    display: block;
    font-size: clamp(8px, 0.7vw, 11px);
    letter-spacing: 4px;
    color: var(--brand-orange);
    font-weight: 800;
}
.studio-horizontal-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu-item-soft {
    color: var(--text-dimmed);
    text-decoration: none;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-item-soft:hover {
    color: var(--brand-orange);
    transform: translateY(-2px);
}
.menu-divider { color: rgba(255, 255, 255, 0.1); }
.menu-contact { font-style: italic; }

/* ==========================================================================
   HERO CONTENT GRID
   ========================================================================== */
.creative-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto clamp(60px, 10vw, 120px) auto;
    padding: 0 10px;
}
@media (min-width: 1024px) {
    .creative-content-grid { grid-template-columns: 1.3fr 0.7fr; align-items: stretch; }
}
.main-hero-canvas {
    display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
}
.fluid-title {
    font-size: clamp(42px, 7.8vw, 135px); 
    font-weight: 900; line-height: 0.95; letter-spacing: -3px; color: var(--text-pure);
}
.text-stroke {
    color: transparent; -webkit-text-stroke: 2px var(--brand-orange);
}
.minimal-desc-box { max-width: 550px; }
.micro-text { font-size: clamp(13px, 1.1vw, 17px); line-height: 1.6; color: var(--text-dimmed); }

.action-metrics-panel {
    display: flex; flex-direction: column; gap: 40px; justify-content: space-between;
}
.metric-card-group {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
@media (min-width: 1024px) { .metric-card-group { grid-template-columns: 1fr; } }
.metric-node {
    background: rgba(255, 81, 0, 0.04);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
    padding: 24px; border-radius: 12px;
}
.metric-node .num { display: block; font-size: clamp(30px, 3vw, 52px); font-weight: 900; color: var(--brand-orange); }
.metric-node .lbl { font-size: clamp(11px, 0.8vw, 13px); color: rgb(240, 230, 230); text-transform: uppercase; letter-spacing: 1px; font-weight: bold; }

.cta-trigger-zone { position: relative; }
.btn-firework-burst {
    position: relative; width: 100%; background: var(--brand-orange); color: var(--text-pure);
    border: none; padding: 20px; font-size: 16px; font-weight: 900; letter-spacing: 1px;
    border-radius: 8px; cursor: pointer; overflow: visible; transition: transform 0.2s ease, background-color 0.3s ease;
}
.btn-firework-burst::before, .btn-firework-burst::after {
    content: ""; position: absolute; left: 50%; top: 50%; width: 3px; height: 3px; border-radius: 50%;
    transform: translate(-50%, -50%) scale(0); opacity: 0; pointer-events: none; transition: all 0.6s cubic-bezier(0.1, 0.8, 0.3, 1);
}
.btn-firework-burst::before { box-shadow: -40px -40px 0 #fff, 40px -50px 0 var(--brand-orange), -60px 30px 0 var(--brand-orange), 50px 40px 0 #fff; }
.btn-firework-burst::after { box-shadow: -80px -20px 0 var(--brand-orange), 70px -60px 0 #fff, -30px 70px 0 #fff, 80px 20px 0 var(--brand-orange); }
.btn-firework-burst:hover { background: var(--brand-orange-dark); transform: scale(1.02); }
.btn-firework-burst:hover::before, .btn-firework-burst:hover::after { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
.btn-firework-burst span { position: relative; z-index: 2; }

/* ==========================================================================
   LAYOUT GRID GALLERY
   ========================================================================== */
.gallery-container { max-width: 1800px; margin: 0 auto clamp(60px, 10vw, 120px) auto; padding: 0 10px; }
.section-title {
    font-size: clamp(24px, 3vw, 44px); font-weight: 900; letter-spacing: 2px;
    margin-bottom: 30px; border-left: 5px solid var(--brand-orange); padding-left: 15px; text-transform: uppercase;
}
.gallery-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.thumb-card {
    position: relative; background: #121214; border-radius: 12px; overflow: hidden; cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; aspect-ratio: 16 / 9;
}
.thumb-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.thumb-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(255, 81, 0, 0.15); }
.thumb-card:hover img { transform: scale(1.03); }

.view-badge {
    position: absolute; bottom: 12px; right: 12px; background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px); color: #fff; padding: 6px 12px; font-size: 13px;
    font-weight: 700; border-radius: 6px; border: 1px solid rgba(255,255,255,0.05); 
}
.hidden-thumb { display: none !important; }

.show-more-box { display: flex; justify-content: center; margin-top: 40px; }
.btn-show-more {
    background: transparent; border: 2px solid var(--brand-orange); color: #fff;
    padding: 14px 36px; font-size: 16px; font-weight: 800; border-radius: 30px;
    cursor: pointer; position: relative; transition: all 0.3s ease; box-shadow: 0 0 15px rgba(255, 81, 0, 0.2);
}
.btn-show-more:hover { background: var(--brand-orange); box-shadow: 0 0 30px rgba(255, 81, 0, 0.6); transform: scale(1.03); }

.fade-in-up { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   TESTIMONIALS INFINITE TICKER & DRAG
   ========================================================================== */
.testimonials-container {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
}

.section-title-alt {
    font-size: clamp(24px, 3vw, 44px);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-pure);
}

.testimonials-ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.testimonials-track {
    display: flex;
    gap: 10px;
    width: max-content;
    cursor: grab;
    will-change: auto;
    transform: translateZ(0);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    backface-visibility: hidden;
}

.testimonials-track.active-drag {
    cursor: grabbing;
}

.review-card {
    width: clamp(280px, 20vw, 340px);
    background: #111113;
    border-radius: 14px;
    padding: 24px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform .35s ease, opacity .35s ease, filter .35s ease, border-color .35s ease, box-shadow .35s ease;
    user-select: none;
    -webkit-user-select: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-avatar,
.review-card img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.rev-meta h4 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.rev-meta p {
    font-size: 11px;
    color: var(--brand-orange);
    font-weight: 700;
}

.feedback-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,.75);
    font-style: italic;
}

.testimonials-track:hover .review-card {
    opacity: .2;
    filter: blur(3px);
}

.testimonials-track:hover .review-card:hover {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-10px) scale(1.03);
    /* Bỏ viền cứng, chuyển sang shadow phát sáng mượt */
    box-shadow: 0 10px 30px rgba(255,255,255,.15), inset 0 0 10px rgba(255,255,255,.05);
    z-index: 100;
}

/* ==========================================================================
   LIGHTBOX MODAL OVERLAY (GALLERY)
   ========================================================================== */
.lightbox-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 4, 6, 0.7); z-index: 1000; display: flex;
    justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; padding: 20px;
}
.lightbox-modal.active { opacity: 1; pointer-events: auto; }
.close-modal {
    position: absolute; top: clamp(20px, 4vw, 40px); right: clamp(20px, 4vw, 40px);
    font-size: 44px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.2s ease, transform 0.2s ease; z-index: 1010;
}
.close-modal:hover { color: var(--brand-orange); transform: scale(1.1); }
.modal-content-wrapper { position: relative; max-width: 1200px; width: 100%; display: flex; flex-direction: column; align-items: center; }

/* VÙNG CLICK ĐỂ MỞ YOUTUBE */
.modal-img-container { position: relative; display: inline-block; cursor: pointer; }
.play-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80px; height: 80px; display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-img-container:hover .play-overlay { opacity: 1; }

.play-triangle {
    width: 0; height: 0; border-top: 18px solid transparent; border-bottom: 18px solid transparent; border-left: 30px solid white;
    z-index: 2; margin-left: 8px;
}
.play-pulse {
    position: absolute; width: 70px; height: 70px; border-radius: 50%;
    background: rgba(255, 0, 0, 0.3); border: 2px solid red; z-index: 1;
    animation: pulseRed 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
@keyframes pulseRed { 0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(255,0,0,0.5); } 100% { transform: scale(1.6); opacity: 0; box-shadow: 0 0 0 20px rgba(255,0,0,0); } }

.modal-img {
    width: 100%; max-height: 90vh; object-fit: contain; border-radius: 12px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.8); transform: scale(0.95); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.active .modal-img { transform: scale(1); }

.modal-meta-left { position: absolute; bottom: -90px; left: 10px; text-align: left; max-width: 70%; }
.meta-name-wrapper { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.modal-mini-logo { width: clamp(20px, 2vw, 26px); height: clamp(20px, 2vw, 26px); object-fit: cover; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.meta-name { display: block; font-size: 16px; font-weight: 700; color: var(--brand-orange); margin-bottom: 4px; }
.meta-title { font-size: clamp(18px, 2.2vw, 28px); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 6px; }
.meta-views { display: block; font-size: 13px; color: var(--text-dimmed); font-weight: 600; }
.modal-brand-right { position: absolute; bottom: -75px; right: 10px; }
.modal-right-avatar { width: clamp(35px, 4vw, 50px); height: clamp(35px, 4vw, 50px); border-radius: 50%; object-fit: cover; box-shadow: 0 5px 15px rgba(255, 81, 0, 0.3); }

/* ==========================================================================
   YOUTUBE CONFIRMATION MODAL
   ========================================================================== */
.yt-confirm-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(10px);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.yt-confirm-overlay.active { opacity: 1; pointer-events: auto; }
.yt-confirm-box {
    background: #111; padding: 40px; border-radius: 20px;
    text-align: center; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(255,0,0,0.2);
}
.yt-confirm-box h3 { color: #fff; font-size: 24px; margin-bottom: 30px; font-weight: 800; }
.yt-btn-group { display: flex; gap: 20px; justify-content: center; }
.btn-yt {
    background: #ff0000; color: #fff; padding: 12px 30px; border-radius: 30px;
    text-decoration: none; font-weight: 800; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-yt:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255,0,0,0.5); }
.btn-cancel {
    background: transparent; color: rgba(255,255,255,0.6); border: 2px solid rgba(255,255,255,0.2);
    padding: 12px 30px; border-radius: 30px; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.btn-cancel:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.1); }

/* ==========================================================================
   TEAM SIMPLE LIGHTBOX
   ========================================================================== */
.team-lightbox {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85); z-index: 1050; display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.team-lightbox.active { opacity: 1; pointer-events: auto; }
.close-team-modal {
    position: absolute; top: 30px; right: 40px; color: rgba(255,255,255,0.5);
    font-size: 50px; cursor: pointer; transition: 0.2s;
}
.close-team-modal:hover { color: var(--brand-orange); transform: scale(1.1); }
.team-lightbox-img {
    max-width: 90vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transform: scale(0.95); transition: transform 0.4s ease;
}
.team-lightbox.active .team-lightbox-img { transform: scale(1); }

/* ==========================================================================
   ĐƯỜNG LINE ZICZAC NGĂN CÁCH
   ========================================================================== */
.section-divider {
    height: 16px; width: 100%; max-width: 1920px; margin: 60px auto;
    background: url('data:image/svg+xml;utf8,<svg width="40" height="16" viewBox="0 0 40 16" xmlns="http://www.w3.org/2000/svg"><path d="M0 8 L10 2 L30 14 L40 8" fill="none" stroke="%23cc4100" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') repeat-x center;
    mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
}

/* ==========================================================================
   GET IN TOUCH TODAY SECTION & AVATARS
   ========================================================================== */
.get-in-touch-section { display: flex; flex-direction: column; align-items: center; gap: 30px; padding: 20px 0; }
.btn-get-touch {
    background: transparent; border: 2px solid var(--brand-orange); color: #fff;
    padding: 14px 36px; font-size: 16px; font-weight: 800; border-radius: 30px;
    cursor: pointer; position: relative; transition: all 0.3s ease; box-shadow: 0 0 15px rgba(255, 81, 0, 0.2);
}
.btn-huge { min-width: clamp(280px, 30vw, 360px); padding: 22px 50px; font-size: 22px; border-radius: 40px; letter-spacing: 1px;}
.btn-get-touch .touch-text { position: relative; z-index: 2; }
.btn-get-touch:hover { background: var(--brand-orange); box-shadow: 0 0 30px rgba(255, 81, 0, 0.6); transform: scale(1.03); }

.avatar-group-external, .avatar-group-internal { display: flex; gap: 20px; justify-content: center; align-items: center; }
.brand-avatar {
    display: flex; justify-content: center; align-items: center; border-radius: 50%;
    background: #111; color: rgba(255, 255, 255, 0.5); cursor: pointer; text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.brand-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; filter: grayscale(100%) opacity(0.5); }
.size-ext { width: 65px; height: 65px; } .size-ext svg { width: 30px; height: 30px; }
.size-int { width: 85px; height: 85px; } .size-int svg { width: 40px; height: 40px; }
.brand-avatar:hover { transform: translateY(-10px); }
.brand-x:hover { background: #000000; color: #ffffff; box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2); }
.brand-discord:hover { background: #5865F2; color: #ffffff; box-shadow: 0 15px 25px rgba(88, 101, 242, 0.4); }
.brand-tf:hover { background: var(--brand-orange); box-shadow: 0 15px 25px rgba(255, 81, 0, 0.4); }
.brand-tf:hover img { filter: grayscale(0%) opacity(1); }

/* ==========================================================================
   MODAL TOUCH GLASS
   ========================================================================== */
.touch-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 2000; display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.touch-modal-overlay.active { opacity: 1; pointer-events: auto; }
.close-touch-modal { position: absolute; top: 30px; right: 40px; color: rgba(255,255,255,0.6); font-size: 50px; cursor: pointer; transition: color 0.2s; }
.close-touch-modal:hover { color: #cc4100; }
.touch-modal-glass {
    width: 60vw; max-width: 1152px; height: 250px; background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 15px rgba(255,255,255,0.02);
    border-radius: 24px; display: flex; justify-content: center; align-items: center;
}

/* ==========================================================================
   FORM SEND US A BRIEFF
   ========================================================================== */
.contact-form-section { max-width: 800px; margin: 0 auto; text-align: center; }
.form-title { font-size: clamp(30px, 4vw, 50px); margin-bottom: 40px; }
.form-title .white-txt { color: #fff; font-weight: 500; }
.form-title .orange-txt { color: #cc4100; font-weight: 900; font-size: 1.2em; } 

.brieff-form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; gap: 20px; }
.brieff-form input, .brieff-form textarea {
    width: 100%; padding: 18px 24px; color: #fff; background: #141416; border: none;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.4); border-radius: 20px; font-size: 16px; outline: none; transition: background 0.3s, box-shadow 0.3s;
}
.brieff-form input:focus, .brieff-form textarea:focus { background: #1c1c1f; box-shadow: inset 0 2px 6px rgba(0,0,0,0.4), 0 0 0 2px var(--brand-orange); }

/* ==========================================================================
   TEAM GALLERY
   ========================================================================== */
.team-section-container { max-width: 1200px; margin: 0 auto; padding: 20px 10px; text-align: center; }
.team-title-box { margin-bottom: 40px; }
.fancy-team { font-family: 'Dancing Script', cursive; font-size: clamp(36px, 5vw, 60px); color: var(--brand-orange); font-style: italic; font-weight: 700; line-height: 0.8; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
    position: relative; background: #111; border-radius: 12px; overflow: hidden;
    aspect-ratio: 16 / 9; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.4s ease, box-shadow 0.4s ease; cursor: pointer;
}
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; pointer-events: none;}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(255, 81, 0, 0.2); }
.team-card:hover img { transform: scale(1.05); }
.hidden-team { display: none !important; }

/* ==========================================================================
   FOOTER & TOAST DISCORD
   ========================================================================== */
.footer-section { display: flex; justify-content: space-between; align-items: center; max-width: 1800px; margin: 0 auto; padding: 20px 10px 60px 10px; }
.copyright-txt { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 500; }
.footer-socials { display: flex; gap: 20px; align-items: center; }
.social-icon { display: flex; justify-content: center; align-items: center; width: 44px; height: 44px; background: rgba(255,255,255,0.03); border-radius: 50%; cursor: pointer; transition: transform 0.2s, background 0.2s; }
.social-icon img, .social-icon svg { width: 22px; height: 22px; }
.social-icon img { border-radius: 50%; object-fit: cover; }
.social-icon:hover { transform: scale(1.15); background: rgba(255,255,255,0.08); }

.toast-notification {
    position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%); background: rgba(15,15,18,0.9);
    backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.6); border: none; border-radius: 12px;
    padding: 15px 30px; text-align: center; z-index: 3000; opacity: 0; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); overflow: hidden; 
}
.toast-notification.active { bottom: 50px; opacity: 1; }
.toast-notification p { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 5px;}
.toast-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--brand-orange); width: 100%; }
.toast-notification.active .toast-progress { animation: liveLine 5s linear forwards; }
@keyframes liveLine { 0% { width: 100%; } 100% { width: 0%; } }

@media (max-width: 768px) {
    .modal-meta-left { position: static; margin-top: 20px; max-width: 100%; }
    .modal-brand-right { position: static; margin-top: 15px; align-self: flex-start; margin-left: 10px; }
    .modal-content-wrapper { align-items: initial; }
    .input-group { flex-direction: column; }
    .footer-section { flex-direction: column; gap: 20px; }
    .touch-modal-glass { width: 90vw; }
    .btn-huge { min-width: 80%; }
}

/* ===== TESTIMONIALS 2026 VISUAL UPGRADE ===== */

.testimonials-container{
    position:relative;
    padding:90px 0 70px;
}

.testimonials-container::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle, rgba(255,180,80,.10) 0%, rgba(255,180,80,0) 70%);
    pointer-events:none;
    filter:blur(40px);
}

.section-title-alt{
    font-size:clamp(32px,4vw,58px);
    letter-spacing:4px;
    margin-bottom:55px;
    text-shadow:0 0 25px rgba(255,180,80,.15);
}

.review-card{
    background:linear-gradient(180deg, rgba(28,28,32,.95), rgba(16,16,18,.98));
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    backdrop-filter:blur(12px);
    overflow:hidden;
    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.review-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,190,100,.12), transparent 35%);
    pointer-events:none;
}

.rev-avatar{
    width:64px;
    height:64px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid rgba(255,190,100,.4);
    box-shadow:0 0 20px rgba(255,190,100,.25);
}

.rev-meta h4{
    font-size:18px;
    margin-bottom:4px;
}

.rev-meta p{
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.feedback-text{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.86);
    position:relative;
    padding-top:12px;
}

.feedback-text::before{
    display:none;
}

.testimonials-track{
    gap:20px;
}

.testimonials-track:hover .review-card{
    opacity:.28;
    filter:blur(2px);
}

.testimonials-track:hover .review-card:hover{
    opacity:1;
    filter:none;
    transform:translateY(-14px) scale(1.04);
    border-color:rgba(255,190,100,.35);
    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        0 0 35px rgba(255,190,100,.15),
        inset 0 1px 0 rgba(255,255,255,.08);
}
