/* ============================================
   ABOUT PAGE - Mission & Vision
   ============================================ */

.about-mission {
    padding: 5rem 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(113, 23, 242, 0.3);
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   ABOUT PAGE - Story Section
   ============================================ */

.about-story {
    padding: 6rem 0;
    background: var(--bg-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.story-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-text p:last-of-type {
    margin-bottom: 0;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.visual-wrapper {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 360px;
    position: relative;
    overflow: hidden;
}

.visual-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(113, 23, 242, 0.3) 0%, transparent 50%);
}

.visual-wrapper .visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, #ff9f43 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(255, 200, 87, 0.3);
}

.visual-wrapper .visual-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.visual-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.visual-stats-grid .visual-stat {
    text-align: center;
}

.visual-stats-grid .value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.visual-stats-grid .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT PAGE - Features Section
   ============================================ */

.about-features {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(113, 23, 242, 0.1) 0%, rgba(30, 31, 99, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    transform: scale(1.1) rotate(5deg);
}

.feature-card .feature-icon i {
    font-size: 1.75rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    -webkit-text-fill-color: white;
    background: none;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

/* ============================================
   ABOUT PAGE - Stats Section
   ============================================ */

.about-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 50%, rgba(113, 23, 242, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 70% 70%, rgba(255, 200, 87, 0.15) 0%, transparent 50%);
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
}

.about-stats .stat-item::after {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.about-stats .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-stats .stat-item:hover .stat-icon {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
}

.about-stats .stat-icon i {
    font-size: 1.75rem;
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: currentColor;
    transition: all 0.3s ease;
}

.about-stats .stat-item:hover .stat-icon i {
    color: var(--accent-color);
}

.about-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: currentColor;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   ABOUT PAGE - Tech Stack Section
   ============================================ */

.about-tech {
    padding: 5rem 0;
    background: var(--bg-light);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-item {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.tech-item i {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    display: block;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.contact-item svg {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
}

.contact-reasons {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.contact-reasons h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-reasons li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.contact-reasons li svg {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(113, 23, 242, 0.1);
}

/* ============================================
   NEWSLETTER CTA SECTION - Modern Design
   ============================================ */

.newsletter-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(113, 23, 242, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 20s ease-in-out infinite;
}

.newsletter-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 31, 99, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 15s ease-in-out infinite reverse;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.newsletter-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-glow);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.newsletter-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.newsletter-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.newsletter-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form-inline {
    display: flex;
    gap: 1rem;
    max-width: 520px;
    margin: 0 auto;
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-input-inline {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    background: transparent;
}

.newsletter-input-inline:focus {
    outline: none;
}

.newsletter-input-inline::placeholder {
    color: var(--text-muted);
}

.newsletter-form-inline .btn {
    white-space: nowrap;
    padding: 1rem 2rem;
    background: var(--gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(113, 23, 242, 0.3);
}

.newsletter-form-inline .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 23, 242, 0.4);
}

.newsletter-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.newsletter-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.newsletter-trust i {
    color: var(--success);
}

/* ============================================
   CTA SECTION - Animated Gradient
   ============================================ */

.cta {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: var(--white);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(113, 23, 242, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 200, 87, 0.15) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(255, 200, 87, 0.1), transparent),
        radial-gradient(1px 1px at 50% 30%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 70% 70%, rgba(113, 23, 242, 0.2), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.15), transparent);
    background-size: 200px 200px;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.cta-badge i {
    color: var(--gold);
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta .btn {
    background: var(--gold);
    color: var(--accent-color);
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 200, 87, 0.4);
    position: relative;
    overflow: hidden;
}

.cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta .btn:hover::before {
    left: 100%;
}

.cta .btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 200, 87, 0.5);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.cta-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ============================================
   ERROR PAGES
   ============================================ */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .about-mission {
        padding: 4rem 0;
    }

    .mission-card {
        padding: 2rem;
    }

    .mission-icon {
        width: 70px;
        height: 70px;
    }

    .mission-icon i {
        font-size: 1.75rem;
    }

    .about-story {
        padding: 4rem 0;
    }

    .story-text h2 {
        font-size: 1.75rem;
    }

    .visual-wrapper {
        padding: 2rem;
        max-width: 100%;
    }

    .visual-wrapper .visual-icon {
        width: 80px;
        height: 80px;
    }

    .visual-wrapper .visual-icon i {
        font-size: 2rem;
    }

    .about-features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 2rem;
    }

    .about-stats {
        padding: 4rem 0;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-stats .stat-item::after {
        display: none;
    }

    .about-tech {
        padding: 4rem 0;
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .tech-item {
        padding: 1rem 0.5rem;
    }

    .tech-item i {
        font-size: 1.5rem;
    }

    .tech-item span {
        font-size: 0.7rem;
    }

    .newsletter-cta {
        padding: 4rem 0;
    }

    .newsletter-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .newsletter-icon-wrapper i {
        font-size: 1.75rem;
    }

    .newsletter-form-inline {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .newsletter-input-inline {
        width: 100%;
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .newsletter-form-inline .btn {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .newsletter-trust {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .cta {
        padding: 5rem 0;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 1.05rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mission-card {
        padding: 1.5rem;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
    }

    .mission-icon i {
        font-size: 1.5rem;
    }

    .mission-card h3 {
        font-size: 1.25rem;
    }

    .visual-stats-grid {
        gap: 1rem;
    }

    .visual-stats-grid .value {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .about-stats .stats-grid {
        gap: 1rem;
    }

    .about-stats .stat-item {
        padding: 1rem 0.5rem;
        min-width: 0;
    }

    .about-stats .stat-number {
        font-size: 2.25rem;
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }

    .tech-item {
        padding: 0.75rem 0.25rem;
    }

    .tech-item i {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .tech-item span {
        font-size: 0.65rem;
    }

    .newsletter-cta {
        padding: 3rem 0;
    }

    .newsletter-text h2 {
        font-size: 1.5rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .cta {
        padding: 4rem 0;
    }

    .cta-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.95rem;
    }

    .cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .error-code {
        font-size: 6rem;
    }

    .error-content h1 {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .newsletter-cta::before,
    .newsletter-cta::after,
    .newsletter-icon-wrapper,
    .cta::before,
    .mission-card,
    .feature-card,
    .tech-item {
        animation: none;
        transition: none;
    }
}

/* Inline SVG icons (replaced the legacy icon font). Size and color inherit
   from each icon's context; these are the shared defaults. */
.svg-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: -0.125em;
}
