/* =========================
   CSS VARIABLES & DESIGN TOKENS
   ========================= */
:root {
    /* Color Palette */
    --color-bg: #050505;
    --color-bg-alt: #0a0a0c;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-surface-hover: rgba(255, 255, 255, 0.08);
    --color-border: rgba(255, 255, 255, 0.1);

    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;

    --color-primary: #3b82f6;
    /* Neon Blue */
    --color-primary-glow: rgba(59, 130, 246, 0.5);
    --color-secondary: #8b5cf6;
    /* Neon Purple */
    --color-accent: #06b6d4;
    /* Cyan */

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Transitions */
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   GLOBAL RESET
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1,
h2,
h3,
h4,
.nav-brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* =========================
   UTILITIES
   ========================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.dark-variant {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.glass {
    background: var(--color-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
}

.text-glow {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px var(--color-primary-glow);
}

/* =========================
   UI ELEMENTS
   ========================= */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all var(--transition-short);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: var(--color-surface);
    transform: translateY(-2px);
}

.btn-primary.lg,
.btn-secondary.lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.pulse-glow {
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px var(--color-primary-glow);
    }

    100% {
        box-shadow: 0 0 30px var(--color-primary-glow);
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hover-glow {
    transition: all var(--transition-smooth);
}

.hover-glow:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

/* =========================
   CURSOR GLOW FOLLOWER
   ========================= */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: left 0.1s linear, top 0.1s linear;
}

/* =========================
   NAVIGATION
   ========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.nav-brand-text {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.nav-links a:not(.btn-primary):hover {
    color: #ffffff;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
    margin-left: 0.5rem;
}

.lang-switch a {
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background: transparent;
}

.lang-switch a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 4px;
}

.menu-toggle span:nth-child(2) {
    bottom: 4px;
}

/* =========================
   HERO
   ========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Interactive Hover Effects variables will be injected via JS */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* =========================
   SOLUTIONS
   ========================= */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-desc {
    max-width: 600px;
    margin: 1rem auto 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    padding: 3rem 2.5rem;
    transition: transform 0.1s ease, box-shadow var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.card-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.card:hover .card-spotlight {
    opacity: 1;
}

.card>* {
    transform: translateZ(30px);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-icon {
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.card-tag {
    font-size: 0.725rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.06);
    color: var(--color-primary);
    border: 1px solid rgba(59, 130, 246, 0.12);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
    transition: all var(--transition-short) ease;
}

.card:hover .card-tag {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    color: #ffffff;
}

/* =========================
   APPROACH / TIMELINE
   ========================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 3rem;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 2rem;
    transition: transform 0.1s ease, box-shadow var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.timeline-content-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.timeline-content:hover .timeline-content-spotlight {
    opacity: 1;
}

.timeline-content>* {
    transform: translateZ(20px);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: var(--color-bg);
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 32px;
    right: -8px;
    z-index: 1;
    box-shadow: 0 0 15px var(--color-primary);
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
    background: var(--color-bg-alt);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* =========================
   ANIMATIONS (REVEAL)
   ========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Initial Load Fades */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

.st-1 {
    animation-delay: 0.1s;
}

.st-2 {
    animation-delay: 0.3s;
}

.st-3 {
    animation-delay: 0.5s;
}

.st-4 {
    animation-delay: 0.7s;
}

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

/* =========================
   MEDIA QUERIES
   ========================= */
@media screen and (max-width: 900px) {
    .hero-cta {
        flex-direction: column;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 23px;
        right: auto;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 100;
    }

    .nav-links.active {
        transform: translateY(0);
    }
}

/* =========================
   CONTACT MODAL
   ========================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 100%;
    max-width: 540px;
    padding: 3rem;
    position: relative;
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 50px rgba(59, 130, 246, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 1.5rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: left;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.03);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.btn-primary.w-full {
    width: 100%;
    margin-top: 0.5rem;
}

/* Success state */
.modal-success-message {
    text-align: center;
    padding: 2rem 0;
    animation: modalFadeIn 0.5s forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.modal-success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-success-message p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-success-close {
    cursor: pointer;
    padding: 0.75rem 2rem;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media screen and (max-width: 576px) {
    .modal-container {
        padding: 2rem;
        margin: 1rem;
        max-width: 100%;
    }

    .modal-header h3 {
        font-size: 1.75rem;
    }
}

/* =========================
   PARTNERS SECTION
   ========================= */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.partner-card:hover {
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.03);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.partner-logo {
    width: 100%;
    height: 100%;
    max-height: 40px;
    max-width: 130px;
    object-fit: contain;
    opacity: 0.45;
    filter: brightness(0) invert(1);
    transition: all var(--transition-fast);
}

.partner-card:hover .partner-logo {
    opacity: 0.95;
    transform: translateY(-8px);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.partner-name {
    position: absolute;
    bottom: 12px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-fast);
    pointer-events: none;
    letter-spacing: 0.5px;
}

.partner-card:hover .partner-name {
    opacity: 0.85;
    transform: translateY(0);
}

/* =========================
   GEOGRAPHIC PRESENCE SECTION
   ========================= */
.presence-content {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.presence-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.presence-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.presence-card:hover,
.presence-card.active {
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.03);
    box-shadow: 0 10px 30px -15px rgba(59, 130, 246, 0.2);
}

.presence-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.presence-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.presence-region {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.presence-details p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.presence-map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 600px;
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.presence-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 24px;
    background: #0a0a0c;
    /* Custom premium dark filter for real Google Maps widget */
    filter: invert(90%) hue-rotate(180deg) grayscale(40%) contrast(120%) brightness(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 992px) {
    .presence-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .presence-map-wrapper {
        height: 450px;
    }
}

/* =========================
   TYPICAL ENGAGEMENTS & WHY TSM
   ========================= */
.engagement-card {
    padding: 2.5rem 2rem;
    transition: transform var(--transition-short), border-color var(--transition-short), box-shadow var(--transition-smooth);
}

.engagement-icon {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.engagement-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.engagement-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.why-card {
    padding: 3rem 2rem;
    position: relative;
    transition: transform var(--transition-short), border-color var(--transition-short), box-shadow var(--transition-smooth);
}

.why-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
}

.why-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
    color: #ffffff;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}