/* =========================================
   ROOT / VARIABLES
========================================= */

:root {
    --bg-color: #0b0b0f;
    --primary-start: #f31313;
    --primary-end: #ff914d;
    --primary-gradient: linear-gradient(135deg, var(--primary-start), var(--primary-end));

    --accent-glow: rgba(243, 19, 19, 0.15);

    --text-light: #ffffff;
    --text-muted: #888888;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}


/* =========================================
   RESET / GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


/* =========================================
   GLOBAL HELPERS
========================================= */

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

.text-center {
    text-align: center;
}


/* =========================================
   BACKGROUND EFFECTS
========================================= */

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: #3232322d;
    background-size: 50px 50px;

    z-index: -2;
}


/* =========================================
   DETAIL CTA BUTTON
========================================= */

.detail-cta-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.big-detail-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 40px;

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    text-decoration: none;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    position: relative;
    overflow: hidden;
}

.big-detail-btn:hover {
    border-color: var(--primary-start);

    transform: translateY(-5px);

    background: rgba(243, 19, 19, 0.05);

    box-shadow: 0 15px 30px rgba(243, 19, 19, 0.15);
}



a{
    text-decoration: none;
}
/* =========================================
   POLITUR TIMELINE
========================================= */

.process-timeline {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 40px;
}

.timeline-item {
    flex: 1;
    text-align: center;
}