/* ==================== MODULES ==================== */
.modules-wrapper {
    position: relative;
}

.modules-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 200px;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    max-width: 100vw;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.module-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.module-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    border-radius: 30px;
}

.module-card:hover {
    border-color: var(--violet);
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 32px 64px rgba(139, 92, 246, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.1);
}

.module-card:hover::before {
    transform: scaleX(1);
}

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

.module-card.premium {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(245, 158, 11, 0.02) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.module-card.premium::before {
    background: linear-gradient(135deg, var(--violet) 0%, var(--amber) 100%);
}

.module-card-inner {
    position: relative;
    z-index: 1;
}

.module-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.module-card:hover .module-icon {
    transform: scale(1.1) rotate(-8deg);
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    box-shadow: 0 16px 32px rgba(139, 92, 246, 0.3);
}

.module-icon-ring {
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 28px;
    animation: ring-rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.module-card:hover .module-icon-ring {
    opacity: 1;
}

@keyframes ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.module-title-area {
    flex: 1;
}

.module-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
    transition: color 0.3s;
}

.module-card:hover h3 {
    color: var(--violet);
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.module-tag {
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-tag.ai {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    color: white;
}

.module-tag.premium-tag {
    background: linear-gradient(135deg, var(--amber) 0%, #f97316 100%);
    color: white;
    animation: premium-glow 2s ease-in-out infinite;
}

@keyframes premium-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(245, 158, 11, 0.2); }
}

.module-description {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.module-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.module-feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--emerald);
}

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

.module-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--violet);
}

.module-cta-arrow {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.module-card:hover .module-cta-arrow {
    background: var(--violet);
    color: white;
    transform: translateX(8px);
}

/* Full-width module card */
.module-card.full-width {
    grid-column: span 2;
}

/* ==================== TIMELINE ==================== */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--violet), var(--cyan), var(--emerald));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -52px;
    width: 24px;
    height: 24px;
    background: var(--violet);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.timeline-content {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.timeline-week {
    display: inline-block;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.timeline-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==================== TEAM ==================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
    position: relative;
    transition: transform 0.4s;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

.team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%); }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%); }
.team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }
.team-card:nth-child(5) .team-avatar { background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%); }
.team-card:nth-child(6) .team-avatar { background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%); }
.team-card:nth-child(7) .team-avatar { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); }
.team-card:nth-child(8) .team-avatar { background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%); }

.team-count {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    border: 3px solid white;
}

.team-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.team-card p {
    font-size: 13px;
    color: var(--gray-500);
}

.team-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 48px;
}

.team-summary-item {
    text-align: center;
}

.team-summary-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-summary-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

/* ==================== FUTURE PHASES ==================== */
.phases-container {
    position: relative;
}

.phase-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 32px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-radius: 3px 0 0 3px;
}

.phase-card:nth-child(1)::before { background: linear-gradient(to bottom, var(--cyan), #0891b2); }
.phase-card:nth-child(2)::before { background: linear-gradient(to bottom, var(--emerald), #059669); }
.phase-card:nth-child(3)::before { background: linear-gradient(to bottom, var(--amber), #d97706); }
.phase-card:nth-child(4)::before { background: linear-gradient(to bottom, var(--rose), #dc2626); }

.phase-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateX(8px);
    border-color: rgba(255,255,255,0.2);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.phase-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.phase-card:nth-child(1) .phase-icon { background: linear-gradient(135deg, var(--cyan) 0%, #0891b2 100%); }
.phase-card:nth-child(2) .phase-icon { background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%); }
.phase-card:nth-child(3) .phase-icon { background: linear-gradient(135deg, var(--amber) 0%, #d97706 100%); }
.phase-card:nth-child(4) .phase-icon { background: linear-gradient(135deg, var(--rose) 0%, #dc2626 100%); }

.phase-title-area h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.phase-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-description {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 800px;
}

.phase-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.phase-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.phase-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.phase-feature-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ==================== EXCLUSIONS ==================== */
.exclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.exclusion-card {
    background: rgba(244, 63, 94, 0.03);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: 20px;
    padding: 28px;
}

.exclusion-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exclusion-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.note-box {
    margin-top: 48px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    text-align: center;
}

.note-box p {
    font-size: 15px;
    color: var(--gray-600);
}

.note-box strong {
    color: var(--violet);
}

/* ==================== CTA ==================== */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--violet) 0%, #6366f1 100%);
    color: white;
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(139, 92, 246, 0.4);
}

.cta-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--black);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    opacity: 0.5;
    font-size: 14px;
}

.footer a {
    color: var(--violet);
    text-decoration: none;
}

/* ==================== INTERACTIVE DEMO ==================== */
.demo-section {
    overflow: hidden;
}

.demo-container {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.demo-input-side,
.demo-output-side {
    flex: 1;
}

.demo-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.demo-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-panel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-panel-dot.red { background: #ff5f56; }
.demo-panel-dot.yellow { background: #ffbd2e; }
.demo-panel-dot.green { background: #27ca40; }

.demo-panel-title {
    margin-left: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.demo-panel-content {
    padding: 24px;
}

.demo-input-group {
    margin-bottom: 16px;
}

.demo-input-group label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.demo-textarea {
    min-height: 80px;
    line-height: 1.5;
}

.demo-generate-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.demo-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.demo-generate-btn .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.demo-generate-btn.loading .btn-icon,
.demo-generate-btn.loading .btn-text {
    display: none;
}

.demo-generate-btn.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

.demo-arrow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--violet), transparent);
}

.demo-arrow-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.3); }
}

.demo-resume {
    background: white;
    border: none;
}

.demo-resume .demo-panel-header {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

.demo-resume .demo-panel-title {
    color: #666;
}

.demo-resume .demo-panel-content {
    background: white;
    color: #333;
}

.demo-resume-header {
    border-bottom: 2px solid var(--violet);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.demo-resume-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.demo-resume-title {
    font-size: 14px;
    color: var(--violet);
    font-weight: 500;
    margin-top: 4px;
}

.demo-resume-section {
    margin-bottom: 16px;
}

.demo-resume-section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.demo-resume-company {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.demo-resume-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    opacity: 1;
    transition: all 0.3s;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background: var(--violet);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.bullet-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.demo-bullet.typing .bullet-text::after {
    content: '|';
    animation: blink-cursor 0.7s infinite;
    color: var(--violet);
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.demo-bullet.highlight {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), transparent);
    margin-left: -8px;
    padding-left: 8px;
    border-radius: 4px;
}

.demo-resume-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.demo-skill {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 6px;
    font-size: 12px;
    color: var(--violet);
    font-weight: 500;
}

.demo-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.demo-stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.demo-stat-text {
    display: flex;
    flex-direction: column;
}

.demo-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.demo-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== TECH STACK ==================== */
.tech-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-category {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: var(--violet);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.1);
    transform: translateY(-4px);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.tech-category-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.tech-category h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.tech-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    transform: translateX(4px);
}

.tech-item.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.tech-logo {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tech-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tech-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.tech-desc {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-note {
    margin-top: 48px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tech-note-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tech-note p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.tech-note strong {
    color: var(--violet);
}
