/* =========================================
   MODERN CORPORATE TECH THEME
   Style: Professional / Clean / High Performance
   ========================================= */

:root {
    /* Color Palette */
    --primary: #3b82f6;
    /* Modern Blue */
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    /* Violet */
    --accent: #22d3ee;
    /* Cyan */

    --bg-darker: #0f172a;
    /* Deep Slate */
    --bg-dark: #1e293b;
    /* Slate 800 */
    --bg-card: rgba(30, 41, 59, 0.7);

    --text-white: #f8fafc;
    --text-muted: #cbd5e1;

    --border-color: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --container-width: 1200px;
    --section-gap: 80px;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.mdi-svg {
    vertical-align: middle;
    display: inline-block;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* === LAYOUT UTILITIES === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-gap) 0;
}

.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Backgrounds */
.bg-darker {
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-gradient-dark {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

/* Grids */
.grid-2-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}



@media (max-width: 768px) {
    .grid-2-contact {
        grid-template-columns: 1fr;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    /* Standard rounded */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

/* === HERO SECTION === */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Professional sleek background image restored */
    background: url('../images/bg-01-1920x1000.webp') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
    /* Overlay covers background */
}

/* Galaxy Canvas will be z-index: 2 injected by JS */

.hero-content {
    position: relative;
    z-index: 10;
    /* Content on top of everything */
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* === SECTIONS & CARDS === */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Feature Cards */
.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Services */
.service-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-dark);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.service-item span {
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.5;
}

.service-item:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-item:hover .service-icon-wrapper {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.service-item:hover span {
    color: #fff;
}

/* === PRICING === */
/* === PRICING === */
.pricing-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* Interaction hint */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth animation */
}

/* Hover Effect */
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Active / Featured State */
.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.15), rgba(15, 23, 42, 0.9));
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--primary);
    /* Stronger glow */
}



.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 10px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-desc {
    font-size: 0.9rem;
}

.pricing-features {
    flex-grow: 1;
    /* Push button down */
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li strong {
    color: #fff;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}

/* === SOFTWARE BOX === */
.software-box {
    background: linear-gradient(90deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .software-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* === CONTACT FORM === */
.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info .mdi {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* === FOOTER === */
.footer {
    padding: 30px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === NEW SECTIONS: HERO BADGE, TESTIMONIALS, FAQ === */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    /* Red tint */
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.5);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Featured/Popular Card */
.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
    transform: scale(1.05);
    /* Make it pop out */
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

/* Testimonials */
.testimonial-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.8);
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.5;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer h5 {
    color: #fff;
    margin-bottom: 2px;
    font-size: 1rem;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--primary);
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    margin: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-question .mdi {
    transition: transform 0.3s;
}

.faq-item.active .mdi {
    transform: rotate(180deg);
}

/* === NAVIGATION === */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 20px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.g-letter {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .main {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-white);
}

.logo-text .tech {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--text-white);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.btn {
    padding: 10px 24px;
    color: #fff;
}

.nav-links li a.btn::after {
    display: none;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 100;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
    bottom: 0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 50%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(10px);
        z-index: 40;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav-social {
        display: flex !important;
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }
}

/* ===============================
   NEW LOGO STYLES
=============================== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.logo-icon {
    width: 64px;
    height: 64px;
    border: 3px solid #00e5ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.6);
    transition: transform 0.3s ease;
    animation: logo-pulse 3s infinite;
    background: transparent;
}

.logo-icon::before,
.logo-icon::after {
    content: '';
    position: absolute;
    background-color: #00e5ff;
}

.logo-icon::before {
    width: 60%;
    height: 2px;
    bottom: 8px;
}

.logo-icon::after {
    width: 2px;
    height: 60%;
    right: 8px;
}

.g-letter {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #00e5ff;
    letter-spacing: 1px;
}

.logo-text {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.logo-text .main {
    color: #ffffff;
    font-weight: 600;
}

.logo-text .tech {
    color: #00e5ff;
    font-weight: 600;
    margin-left: 4px;
}

@keyframes logo-pulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.9);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
    }
}

.logo-container:hover .logo-icon {
    transform: scale(1.1) rotate(2deg);
}

.logo-container:hover .tech {
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.9);
}

.logo-container.clicked .logo-icon {
    transform: scale(0.95);
}

@media (max-width: 600px) {
    .logo-container {
        gap: 10px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        border-width: 2px;
        border-radius: 10px;
    }

    .logo-icon::before {
        height: 2px;
        bottom: 5px;
    }

    .logo-icon::after {
        width: 2px;
        right: 5px;
    }

    .g-letter {
        font-size: 13px;
    }

    .logo-text {
        font-size: 12px;
    }
}

/* ===============================
   TRUST INDICATORS VISIBILITY FIX
=============================== */
.trust-indicators {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(15 23 42 / 0%);
    /* Darker semi-transparent bg */
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    transform: translateY(-2px);
}



.trust-item span {
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    /* Strong text shadow */
}

@media (max-width: 600px) {
    .trust-indicators {
        gap: 12px;
    }

    .trust-item {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}
/* ===============================
   PROCESS SECTION REDESIGN
=============================== */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Connecting Line Background */
.process-timeline::before {
    content: "";
    position: absolute;
    top: 110px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Progress Line (Animated) */
.process-timeline::after {
    content: "";
    position: absolute;
    top: 110px;
    left: 50px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1;
    animation: process-line-flow 4s infinite ease-in-out;
}

@keyframes process-line-flow {
    0% { width: 0; left: 50px; opacity: 0; }
    20% { opacity: 1; }
    80% { width: calc(100% - 100px); left: 50px; opacity: 1; }
    100% { width: calc(100% - 100px); left: 50px; opacity: 0; }
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 220px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

/* Step Indicator (Circle) */
.step-indicator {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 10px var(--bg-darker); /* Visual mask for line */
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bg-card);
    color: var(--text-white);
    width: 30px;
    height: 30px;
    line-height: 26px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid var(--border-color);
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-icon-inner {
    color: var(--text-muted);
    transition: all 0.3s ease;
    transform: scale(1);
}

.step-icon-inner svg {
    width: 40px;
    height: 40px;
}

/* Hover Effects */
.process-step:hover .step-indicator {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.15), 0 0 0 10px var(--bg-darker);
    background: rgba(30, 41, 59, 1);
}

.process-step:hover .step-icon-inner {
    color: var(--accent);
    transform: scale(1.1);
}

.process-step:hover .step-number {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: scale(1.1) translate(5px, -5px);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3 {
    color: var(--accent);
}

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

/* Mobile Responsive */
@media (max-width: 900px) {
    .process-timeline {
        flex-direction: column;
        gap: 40px;
        padding-left: 0;
        align-items: center;
    }

    .process-timeline::before {
        width: 2px;
        height: calc(100% - 100px);
        top: 50px;
        left: 50%; 
        transform: translateX(-1px);
        right: auto;
    }

    .process-timeline::after {
        display: none; 
    }

    .process-step {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

