/* Landing Page Specific Rules */
#landing-page.view.active {
    overflow-y: auto;
    height: 100vh;
    scroll-behavior: smooth;
    display: block;
}

#landing-page .glass-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.hero-headline {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.animate-in-1 {
    animation: slideIn 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in-2 {
    animation: slideIn 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in-3 {
    animation: slideIn 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in-4 {
    animation: slideIn 0.8s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in-5 {
    animation: slideIn 0.8s 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in-6 {
    animation: slideIn 0.8s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--purple), var(--blue), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.connect-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: clamp(24px, 5vw, 48px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

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

    to {
        transform: rotate(360deg);
    }
}

.avatar-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 32px;
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.avatar-upload-area:hover,
.avatar-upload-area.drag-over {
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.07);
    transform: scale(1.01);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.avatar-upload-area.drag-over {
    border-style: solid;
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.12);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    pointer-events: none;
}

.upload-icon {
    font-size: 38px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Avatar Preview: square, rounded corners, centered ─── */
.upload-preview-container {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 18px;
    overflow: visible;
    border: 3px solid rgba(139, 92, 246, 0.7);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(139, 92, 246, 0.15);
    transition: transform 0.3s;
}

.upload-preview-container:hover {
    transform: scale(1.04);
}

.upload-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.remove-avatar-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--danger);
    border: 2px solid #0a0a15;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: all 0.2s;
}

.remove-avatar-btn:hover {
    background: #dc2626;
    transform: scale(1.15);
}

.remove-avatar-btn .material-icons-round {
    font-size: 14px;
}

.room-inputs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
    z-index: 1;
    position: relative;
}

.glass-input-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.glass-input-wrap:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.glass-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-size: 16px;
    outline: none;
    width: 100%;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.icon-btn-action {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.icon-btn-action:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-2px);
}

.primary-cta {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    z-index: 1;
    position: relative;
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
    filter: brightness(1.1);
}

.primary-cta:active {
    transform: translateY(-2px);
}
.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--purple) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modal-overlay {
    backdrop-filter: blur(12px) !important;
}

.schedule-card {
    background: rgba(18, 18, 28, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6) !important;
}

.schedule-card .glass-input-wrap {
    background: rgba(255, 255, 255, 0.03);
}

.success-badge {
    animation: bounceIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-footer {
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.daral-text-small {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .landing-container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-headline {
        margin-bottom: 16px;
    }

    .hero-tagline {
        margin-bottom: 32px;
    }

    .connect-glass-card {
        padding: 30px 20px;
    }

    .features-grid {
        padding: 40px 0;
        gap: 20px;
    }

    .feature-card {
        padding: 30px;
    }
}

@media (min-width: 1024px) {
    .room-inputs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ─── Shared Section Headers ─── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.section-badge .material-icons-round {
    font-size: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* ─── How It Works Section ─── */
.how-to-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.steps-container {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 28px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.step-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

.step-tip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    color: #34d399;
    margin-top: auto;
}

.step-tip .material-icons-round {
    font-size: 16px;
    flex-shrink: 0;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    min-width: 60px;
    gap: 8px;
}

.connector-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
}

.connector-arrow {
    font-size: 20px;
    color: rgba(139, 92, 246, 0.5);
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(4px);
    }
}

/* Mobile: hide desktop steps, show pills */
.mobile-steps {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 0 4px;
}

.mobile-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 20px 24px;
    transition: all 0.3s;
}

.mobile-step:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

/* ─── AI-POWERED STEP CARDS ─── */
.step-card.ai-powered {
    overflow: hidden;
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.step-card.ai-powered:hover {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.ai-badge-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.mobile-step.ai-mini {
    background: rgba(139, 92, 246, 0.04);
    border-color: rgba(139, 92, 246, 0.15);
}

/* ─── TESTIMONIALS ─── */
.testimonial-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.t-quote {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    position: relative;
}

.t-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    opacity: 0.1;
    font-family: serif;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.t-name {
    font-size: 15px;
    font-weight: 700;
}

.t-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── TEAM CARD UPDATES ─── */
.team-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 8px 0 16px 0;
    min-height: 60px;
}

/* ─── FOOTER REFINEMENT ─── */
.footer-copyright-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.copyright-team {
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.02em;
}

/* ─── FEEDBACK SECTION ─── */
.feedback-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.feedback-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.feedback-card {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    backdrop-filter: blur(24px);
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.star {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    line-height: 1;
}

.star.hovered,
.star.selected {
    color: #f59e0b;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    transform: scale(1.25);
}

.star.selected {
    animation: star-bounce 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes star-bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1.25);
    }
}

.rating-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    min-height: 20px;
    transition: all 0.3s;
    font-weight: 500;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.feedback-input-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 18px;
    transition: all 0.3s;
}

.feedback-input-group:focus-within {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.06);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.feedback-input-icon {
    color: var(--text-muted);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feedback-input,
.feedback-textarea {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 15px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    resize: none;
    line-height: 1.6;
    width: 100%;
}

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

.feedback-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    font-family: 'Poppins', sans-serif;
    margin-top: 8px;
}

.feedback-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(139, 92, 246, 0.45);
    filter: brightness(1.1);
}

.feedback-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon {
    font-size: 56px !important;
    color: #10b981;
    filter: drop-shadow(0 0 24px rgba(16, 185, 129, 0.6));
}

.feedback-success h3 {
    font-size: 24px;
    font-weight: 700;
}

.feedback-success p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ─── TEAM SECTION — TRENDY CARDS ─── */
.team-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 40px 28px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Gradient border on hover via ::before */
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0), rgba(59, 130, 246, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.45s;
    pointer-events: none;
}

.team-card:hover::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.8));
}

/* Spotlight glow on hover */
.team-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.45s;
    pointer-events: none;
}

.team-card:hover::after {
    opacity: 1;
}

.team-card:hover {
    background: rgba(139, 92, 246, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.15);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.08);
    margin-bottom: 4px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-avatar {
    transform: scale(1.08) rotate(-3deg);
}

.team-name {
    font-size: 17px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
}

.team-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 2px 0;
}

.team-role {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    display: none;
}

.team-bio {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 4px 0 12px;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 102, 194, 0.1);
    border: 1px solid rgba(10, 102, 194, 0.3);
    color: #60a5fa;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 4px;
}

.linkedin-btn:hover {
    background: rgba(10, 102, 194, 0.25);
    border-color: rgba(10, 102, 194, 0.6);
    color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.25);
}

/* ─── Footer Enhancements ─── */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-link:hover {
    color: white;
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.08);
}


/* ─── MOBILE ADJUSTMENTS ─── */
@media (max-width: 900px) {
    .steps-container {
        display: none;
    }

    .mobile-steps {
        display: flex;
    }

    .how-to-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
        padding: 0 4px;
    }

    .how-to-section,
    .testimonial-section,
    .feedback-section,
    .team-section {
        padding: 60px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .feedback-card {
        padding: 32px 20px;
    }

    .star {
        font-size: 34px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-card {
        padding: 28px 20px;
    }

    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .team-bio {
        min-height: auto;
    }

    .footer-links {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-name {
        font-size: 14px;
    }

    .linkedin-btn span {
        display: none;
    }

    .linkedin-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
}

/* ─── AI-POWERED STEP CARDS ─── */
.step-card.ai-powered {
    overflow: hidden;
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.step-card.ai-powered:hover {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.ai-badge-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.mobile-step.ai-mini {
    background: rgba(139, 92, 246, 0.04);
    border-color: rgba(139, 92, 246, 0.15);
}

/* ─── TESTIMONIALS ─── */
.testimonial-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.t-quote {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    position: relative;
}

.t-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    opacity: 0.1;
    font-family: serif;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.t-name {
    font-size: 15px;
    font-weight: 700;
}

.t-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── TEAM CARD UPDATES ─── */
.team-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 8px 0 16px 0;
    min-height: 60px;
}

/* ─── FOOTER REFINEMENT ─── */
.footer-copyright-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.copyright-team {
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.02em;
}

/* ─── MOBILE ADJUSTMENTS ─── */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .team-bio {
        min-height: auto;
    }
}