/* ==========================================================================
   HOMEPAGE WRAPPER
   ========================================================================== */

.hp-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 24px 80px; /* Üst boşluk navbar'a göre dengelendi */
    position: relative;
    z-index: 1;
}

.hp-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 700px;
    background-image: radial-gradient(rgba(33, 40, 66, 0.25) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.15;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.hp-wrapper::after {
    content: '';
    position: absolute;
    top: -120px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(33, 40, 66, 0.07) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px; /* Gereksiz büyük boşluk azaltıldı */
    position: relative;
}

/* ── LEFT COLUMN ── */
.hp-hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
}

.hp-hero-left > * {
    opacity: 0;
    transform: translateY(22px);
    animation: hpItemIn 0.6s ease forwards;
}

.hp-hero-left > *:nth-child(1) { animation-delay: 0.35s; }
.hp-hero-left > *:nth-child(2) { animation-delay: 0.50s; }
.hp-hero-left > *:nth-child(3) { animation-delay: 0.65s; }
.hp-hero-left > *:nth-child(4) { animation-delay: 0.80s; }

@keyframes hpItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge above title */
.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-glass);
    color: var(--brand-primary);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    width: fit-content;
}

.hp-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(33, 40, 66, 0.18);
    animation: hpPulseDot 2s ease-in-out infinite;
}

@keyframes hpPulseDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(33, 40, 66, 0.18); }
    50% { box-shadow: 0 0 0 6px rgba(33, 40, 66, 0.06); }
}

/* Headline */
.hp-hero-title {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.08;
    color: var(--brand-primary);
    margin: 0;
}

.hp-hero-title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: hpShimmer 5s linear infinite;
}

@keyframes hpShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Description */
.hp-hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 440px;
    margin: 0;
}

/* CTA Buttons */
.hp-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hp-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(33, 40, 66, 0.35);
    transition: all var(--transition-base);
}

.hp-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(33, 40, 66, 0.45);
}

.hp-hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid var(--glass-border);
    color: var(--brand-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--bg-glass);
    transition: all var(--transition-base);
}

.hp-hero-btn-ghost:hover {
    border-color: var(--brand-primary);
    background: rgba(33, 40, 66, 0.08);
    transform: translateY(-2px);
}

/* Social row */
.hp-hero-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
}

.hp-socials-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.hp-socials-icons {
    display: flex;
    gap: 8px;
}

.hp-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--glass-border);
    background: var(--bg-glass);
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-base);
}

.hp-social-icon:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ── PARTICLE CANVAS ── */
#hp-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

/* ── RIGHT COLUMN — image ── */
.hp-hero-right {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: hpRightIn 0.7s 0.45s ease forwards;
}

@keyframes hpRightIn {
    from { opacity: 0; transform: translateX(32px); }
    to { opacity: 1; transform: translateX(0); }
}

.hp-hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1.5px var(--glass-border);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform-style: preserve-3d;
}

.hp-hero-img-wrap:hover {
    box-shadow: var(--shadow-glow), 0 0 0 1.5px rgba(33, 40, 66, 0.12);
}

.hp-hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(33, 40, 66, 0.08) 0%, transparent 50%, rgba(33, 40, 66, 0.22) 100%);
    z-index: 1;
    pointer-events: none;
}

.hp-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hp-hero-img-wrap:hover .hp-hero-img {
    transform: scale(1.04);
}

/* ==========================================================================
   RIPPLE KEYFRAME 
   ========================================================================== */

@keyframes hpRipple {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* =========================================
   INNOVATIVE ABOUT US & MISSION (TEMA UYUMLU)
   ========================================= */
.about-us-innovative {
    background-color: transparent; /* Arka planı genel body rengine bıraktık */
    padding: 80px 0; /* Boşluklar dengelendi */
    position: relative;
    overflow: hidden;
}

.innovative-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Sol Taraf: Metin */
.innovative-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    color: var(--brand-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
}

.innovative-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--brand-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.innovative-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Founder Box */
.founder-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    width: fit-content;
}

.founder-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-light);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-details h4 {
    color: var(--brand-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.founder-details span {
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sağ Taraf: Kartlar */
.innovative-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.innovative-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--glass-border);
}

.innovative-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(33, 40, 66, 0.2);
}

/* İkonlar (Tema Renklerine Uyarlandı) */
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    transition: transform var(--transition-base);
    background: var(--gradient-primary); /* Hepsi tek kurumsal renk oldu */
    box-shadow: 0 4px 12px rgba(33, 40, 66, 0.2);
}

.innovative-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

.innovative-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.innovative-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Alt Sınır Gradient Efekti */
.card-border-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.innovative-card:hover .card-border-gradient {
    transform: scaleX(1);
}


/* =========================================
   8. TEAM SECTION (TEMA UYUMLU)
   ========================================= */
.clean-team-section {
    padding: 80px 0;
    overflow: hidden;
}

.section-header.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    color: var(--brand-primary);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-top: 5px;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 1.1rem;
}

.slider-container {
    position: relative;
    padding: 20px 0;
}

/* Slider Track */
.team-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none; 
    padding: 20px 10px;
    scroll-behavior: smooth;
    width: 100%;
    cursor: grab;
}

.team-slider-track::-webkit-scrollbar { display: none; }
.team-slider-track:active { cursor: grabbing; }

/* Team Card ve Hover Efektleri */
.team-card-hover {
    width: 300px;
    height: 450px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    background: var(--brand-primary);
}

.team-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card-hover:hover .team-bg-img {
    transform: scale(1.12);
}

/* Overlay Rengi Marka Rengine Uyarlandı */
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 40, 66, 0.98) 0%, rgba(33, 40, 66, 0.7) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    backdrop-filter: blur(2px);
}

.team-card-hover:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-overlay h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    transform: translateY(10px);
    transition: 0.4s 0.1s;
}

.role-accent {
    color: #8896b3; /* Light Blue/Gray accent from brand */
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: 0.4s 0.2s;
    letter-spacing: 1px;
}

.team-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.5;
    transform: translateY(10px);
    transition: 0.4s 0.3s;
}

.team-card-hover:hover h4,
.team-card-hover:hover .role-accent,
.team-card-hover:hover p {
    transform: translateY(0);
}

/* Slider Butonları */
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: #ffffff;
    color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.slider-btn:hover {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

/* Slider Pagination (Noktalar) */
.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    gap: 10px;
}

.pagination-dot {
    width: 32px;
    height: 6px;
    background-color: var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.pagination-dot.active {
    background-color: var(--brand-primary);
    width: 48px; /* Aktif olan nokta biraz daha geniş olur */
}

.pagination-dot:hover:not(.active) {
    background-color: var(--brand-light);
}

/* ==========================================================================
   RESPONSIVE YAPI (Genel)
   ========================================================================== */

@media (max-width: 1024px) {
    .hp-hero { gap: 40px; }
    .innovative-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 820px) {
    .hp-wrapper { padding: 100px 20px 60px; }
    .hp-hero {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: 60px;
    }
    .hp-hero-img { height: 320px; }
    .slider-btn { display: none; /* Mobilde oklar gizlenir, kaydırma kullanılır */ }
    .team-slider-track { padding: 10px 0; }
}

@media (max-width: 576px) {
    .hp-wrapper { padding: 90px 16px 40px; }
    .hp-hero-title { font-size: 2.4rem; }
    .innovative-cards-wrapper { grid-template-columns: 1fr; }
    .about-us-innovative { padding: 60px 0; }
    .clean-team-section { padding: 60px 0; }
}

/* ==========================================================================
   HOMEPAGE MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --hp-mobile-pad: 14px;
    }

    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden !important;
        background:
            radial-gradient(circle at 0% 0%, rgba(89, 103, 232, .08), transparent 28%),
            linear-gradient(180deg, #f8f9fc 0%, #f1f3f8 55%, #eceff5 100%);
    }

    body::before,
    body::after {
        max-width: 100vw;
        overflow: hidden;
    }

    /* ------------------------------------------------------------------
       MAIN CONTENT
       ------------------------------------------------------------------ */

    .hp-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding:
            calc(76px + env(safe-area-inset-top))
            var(--hp-mobile-pad)
            28px;
        overflow: hidden;
    }

    .hp-wrapper::before {
        height: 470px;
        background-size: 22px 22px;
        opacity: .075;
    }

    .hp-wrapper::after {
        display: none;
    }

    .hp-hero {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 17px;
        margin: 0 0 38px;
    }

    .hp-hero-left,
    .hp-hero-right {
        width: 100%;
        min-width: 0;
    }

    .hp-hero-left {
        gap: 12px;
    }

    .hp-hero-left > * {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hp-hero-badge {
        padding: 6px 10px;
        border-radius: 9px;
        font-size: .50rem;
        letter-spacing: 1.25px;
    }

    .hp-hero-badge-dot {
        width: 5px;
        height: 5px;
    }

    .hp-hero-title {
        max-width: 100%;
        font-size: clamp(2.0rem, 10.5vw, 2.9rem);
        line-height: .98;
        letter-spacing: -1.7px;
        overflow-wrap: anywhere;
    }

    .hp-hero-desc {
        max-width: 100%;
        font-size: .77rem;
        line-height: 1.55;
    }

    .hp-hero-actions {
        width: 100%;
        margin-top: 1px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .hp-hero-btn-primary,
    .hp-hero-btn-ghost {
        width: 100%;
        min-width: 0;
        min-height: 43px;
        padding: 9px 8px;
        justify-content: center;
        border-radius: 12px;
        font-size: .66rem;
        white-space: nowrap;
    }

    .hp-hero-socials {
        width: 100%;
        gap: 8px;
    }

    .hp-socials-label {
        flex: 0 0 auto;
        font-size: .48rem;
        letter-spacing: .75px;
    }

    .hp-socials-icons {
        min-width: 0;
        flex: 1;
        display: flex;
        gap: 5px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hp-socials-icons::-webkit-scrollbar {
        display: none;
    }

    .hp-social-icon {
        width: 31px;
        height: 31px;
        flex: 0 0 31px;
        font-size: .72rem;
    }

    #hp-particles {
        display: none;
    }

    .hp-hero-right {
        order: 2;
        opacity: 1;
        animation: none;
    }

    .hp-hero-img-wrap {
        width: 100%;
        max-width: 100%;
        border-radius: 18px;
        transform: none !important;
        box-shadow: 0 9px 26px rgba(33, 40, 66, .12);
    }

    .hp-hero-img {
        width: 100%;
        height: clamp(220px, 62vw, 300px);
        object-fit: cover;
        object-position: center;
        transition: none;
    }

    /* ------------------------------------------------------------------
       ABOUT
       ------------------------------------------------------------------ */

    .about-us-innovative {
        width: 100%;
        padding: 36px 0 28px;
        overflow: visible;
    }

    .about-us-innovative .container,
    .clean-team-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .innovative-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .innovative-text,
    .innovative-cards-wrapper {
        width: 100%;
        min-width: 0;
    }

    .innovative-tag {
        margin-bottom: 9px;
        padding: 5px 9px;
        font-size: .54rem;
    }

    .innovative-title {
        margin-bottom: 10px;
        font-size: clamp(1.55rem, 7.6vw, 2.05rem);
        line-height: 1.05;
    }

    .innovative-desc {
        margin-bottom: 12px;
        font-size: .72rem;
        line-height: 1.58;
    }

    .founder-box {
        width: 100%;
        margin-top: 14px;
        padding: 10px;
        gap: 10px;
        border-radius: 13px;
    }

    .founder-avatar {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

    .founder-details h4 {
        font-size: .78rem;
    }

    .founder-details span {
        font-size: .62rem;
    }

    .innovative-cards-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .innovative-card {
        min-height: 0;
        padding: 12px;
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        grid-template-areas:
            "icon title"
            "icon text";
        column-gap: 10px;
        row-gap: 2px;
        border-radius: 13px;
        box-shadow: 0 4px 14px rgba(33, 40, 66, .055);
    }

    .innovative-card:hover {
        transform: none;
        box-shadow: 0 4px 14px rgba(33, 40, 66, .055);
    }

    .icon-box {
        grid-area: icon;
        width: 38px;
        height: 38px;
        margin: 0;
        border-radius: 11px;
        font-size: .92rem;
    }

    .innovative-card h3 {
        grid-area: title;
        align-self: end;
        margin: 0;
        font-size: .76rem;
    }

    .innovative-card p {
        grid-area: text;
        margin: 1px 0 0;
        font-size: .60rem;
        line-height: 1.42;
    }

    .card-border-gradient {
        height: 3px;
        transform: scaleX(1);
        opacity: .45;
    }

    /* ------------------------------------------------------------------
       TEAM
       ------------------------------------------------------------------ */

    .clean-team-section {
        width: 100%;
        padding: 36px 0 14px;
        overflow: visible;
    }

    .section-header.center-text {
        width: 100%;
        margin: 0 auto 14px;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
    }

    .section-desc {
        margin-top: 4px;
        font-size: .68rem;
    }

    .slider-container {
        width: 100%;
        margin: 0;
        padding: 4px 0 0;
        overflow: hidden;
    }

    .slider-btn {
        display: none !important;
    }

    .team-slider-track {
        width: 100%;
        max-width: 100%;
        gap: 9px;
        padding: 5px 0 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        cursor: default;
    }

    .team-slider-track::-webkit-scrollbar {
        display: none;
    }

    .team-card-hover {
        width: min(82vw, 292px);
        height: min(112vw, 410px);
        max-width: 292px;
        max-height: 410px;
        flex: 0 0 min(82vw, 292px);
        border-radius: 17px;
        scroll-snap-align: start;
        box-shadow: 0 8px 22px rgba(33, 40, 66, .13);
    }

    .team-bg-img {
        transition: none;
    }

    .team-card-hover:hover .team-bg-img {
        transform: none;
    }

    .team-overlay,
    .team-card-hover:hover .team-overlay {
        opacity: 1;
        transform: none;
        padding: 18px 14px 14px;
        background:
            linear-gradient(
                to top,
                rgba(20, 26, 48, .98) 0%,
                rgba(20, 26, 48, .91) 28%,
                rgba(20, 26, 48, .44) 57%,
                transparent 82%
            );
        backdrop-filter: none;
    }

    .team-overlay h4,
    .team-card-hover:hover h4 {
        margin-bottom: 1px;
        transform: none;
        font-size: .90rem;
    }

    .role-accent,
    .team-card-hover:hover .role-accent {
        margin-bottom: 6px;
        transform: none;
        font-size: .55rem;
        letter-spacing: .55px;
    }

    .team-overlay p,
    .team-card-hover:hover p {
        margin: 0;
        transform: none;
        font-size: .57rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slider-pagination {
        margin-top: 3px;
        gap: 5px;
    }

    .pagination-dot {
        width: 16px;
        height: 4px;
    }

    .pagination-dot.active {
        width: 28px;
    }

    /* Disable desktop hover transforms on touch-sized layout */
    .hp-hero-btn-primary:hover,
    .hp-hero-btn-ghost:hover,
    .hp-social-icon:hover,
    .innovative-card:hover,
    .team-card-hover:hover {
        transform: none;
    }
}

@media (max-width: 390px) {
    :root {
        --hp-mobile-pad: 10px;
    }

    .hp-hero-title {
        font-size: clamp(1.82rem, 10.3vw, 2.35rem);
    }

    .hp-hero-actions {
        grid-template-columns: 1fr;
    }

    .hp-socials-label {
        display: none;
    }

    .hp-socials-icons {
        justify-content: space-between;
    }

    .team-card-hover {
        width: 84vw;
        flex-basis: 84vw;
    }
}
