@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Monochrome Premium Palette */
    --primary: #000000;
    --accent: #FFFFFF;
    --accent-glow: rgba(255, 255, 255, 0.2);
    --secondary-accent: #888888;
    --bg-page: #FFFFFF;
    --surface: #FFFFFF;
    --surface-dark: #0A0A0A;
    --surface-glass: rgba(0, 0, 0, 0.05);
    --text-main: #000000;
    --text-muted: #666666;
    --text-on-dark: #FFFFFF;
    --border: rgba(0, 0, 0, 0.1);
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #222;
}
::-webkit-scrollbar-thumb:hover {
    background: #444;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .font-display {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    z-index: 1001;
    transition: width 0.1s;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* =====================
   NAVBAR
   ===================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2100;
    transition: all 0.4s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-brand {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
}

.logo-suffix {
    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
    margin-top: 3px;
    font-family: 'Inter', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-main);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.nav-cta:hover {
    background: transparent;
    color: #000;
}

/* Hide mobile-only CTA on desktop */
.nav-mobile-cta {
    display: none;
}

#navbar.scrolled {
    background: rgba(255,255,255,0.95) !important;
    border-bottom: 1px solid #eee;
    backdrop-filter:blur(20px);
}

#navbar.scrolled .logo-brand {
    font-size: 1.1rem;
}

#navbar.scrolled .logo-suffix {
    font-size: 0.4rem;
    letter-spacing: 3px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 6px;
    z-index: 3001;
}

.mobile-menu-btn i {
    width: 22px;
    height: 22px;
    display: block;
}

/* Mobile Overlay Backdrop */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Back-to-top must go below overlay when menu is open */
#back-to-top {
    z-index: 999;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 900px) {
    /* Show hamburger, hide CTA */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
    }

    .nav-cta {
        display: none !important;
    }

    /* Show Get Quote inside drawer */
    .nav-mobile-cta {
        display: block !important;
        border-bottom: none !important;
    }

    .nav-mobile-cta .nav-cta {
        display: inline-block !important;
        width: 100%;
        text-align: center;
        margin-top: 28px;
    }

    /* Drawer from right — narrower so logo stays visible */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 75vw);
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        padding: 80px 36px 60px;
        z-index: 2000;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -8px 0 40px rgba(0,0,0,0.15);
        border-left: 1px solid #eee;
    }

    .nav-links.show {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 0.85rem;
        letter-spacing: 2px;
        color: #000 !important;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    /* Hero Responsive Fixes */
    #hero {
        padding: 100px 0 60px 0;
        min-height: auto;
    }

    #hero h1 {
        font-size: clamp(2.2rem, 12vw, 4rem) !important;
        letter-spacing: -1px;
    }

    #hero p {
        font-size: 0.95rem !important;
        margin-bottom: 40px !important;
        padding: 0 10px;
    }

    #hero .flex-center {
        flex-direction: column;
        width: 100%;
        gap: 12px !important;
    }

    #hero .btn {
        width: 100%;
        margin: 0 !important;
        padding: 16px 30px !important;
    }

    .hero-stats-bar {
        flex-direction: column;
        gap: 0 !important;
        padding: 20px !important;
    }

    .stat-item {
        border-left: none !important;
        padding-left: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 20px 0 !important;
        width: 100%;
        text-align: center;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    /* Form & Grid Overrides — exclude footer */
    .grid:not(.footer-grid) {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    #about .container.grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    #about .about-image div:first-child {
        height: 350px !important;
    }

    #about .grid {
        grid-template-columns: 1fr !important;
    }

    /* Stats Section */
    #stats-counter .container.grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    #hero h1 {
        font-size: 2.2rem !important;
    }

    #stats-counter .container.grid {
        grid-template-columns: 1fr !important;
    }
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-primary:hover {
    background: transparent;
    color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero dark-background button overrides */
#hero .btn-primary {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

#hero .btn-primary:hover {
    background: transparent;
    color: #fff;
}

#hero .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
}

#hero .btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section specific stubs */
/* Hero SVG Background */
#hero {
    min-height: 100vh;
    background: var(--primary);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
}

#hero-svg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Ticker */
.ticker-wrapper {
    width: 100%;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker span {
    display: inline-block;
    padding: 0 40px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #cbd5e0;
    text-transform: uppercase;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.product-card {
    padding: 50px 40px;
    border-radius: 4px; /* Minimalist sharp/slight rounded */
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    background: #FAFAFA;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.product-card:hover::after {
    width: 100%;
}

.card-icon {
    margin-bottom: 24px;
    color: var(--primary);
}

.product-card h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.specs {
    list-style: none;
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.specs li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Waveform Animation */
.waveform-animation {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}

.waveform-animation span {
    width: 4px;
    background: var(--primary);
    animation: wave 1s ease-in-out infinite alternate;
}

.waveform-animation span:nth-child(2) { animation-delay: 0.2s; }
.waveform-animation span:nth-child(3) { animation-delay: 0.4s; }
.waveform-animation span:nth-child(4) { animation-delay: 0.1s; }
.waveform-animation span:nth-child(5) { animation-delay: 0.3s; }

@keyframes wave {
    0% { height: 5px; }
    100% { height: 25px; }
}

/* Ripple Animation */
.ripple-animation {
    position: relative;
    width: 60px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ripple {
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    opacity: 0.1;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
}

@keyframes ripple {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

/* Gauge Animation */
.gauge-animation {
    width: 60px;
    height: 30px;
    border: 3px solid #e2e8f0;
    border-bottom: none;
    border-radius: 60px 60px 0 0;
    position: relative;
    overflow: hidden;
}

.gauge-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform-origin: bottom center;
    animation: gauge 3s ease-in-out infinite alternate;
    opacity: 0.1;
}

@keyframes gauge {
    0% { transform: rotate(-90deg); }
    100% { transform: rotate(90deg); }
}

/* Services */
#services {
    background: #000000;
}

.service-item {
    padding: 40px;
    background: #0A0A0A;
    border: 1px solid #1A1A1A;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item i {
    color: var(--accent);
    width: 24px;
    height: 24px;
    z-index: 1;
}

.service-item h4 {
    color: var(--accent) !important;
    font-size: 0.8rem !important;
}

.service-item p {
    color: var(--secondary-accent) !important;
}

.service-item:hover {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Stats */
#stats-counter {
    background: #000000 !important;
}

.stat-box .number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.stat-box .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #a0aec0;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 0; /* Boxy minimalist */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 1px solid var(--accent);
    transition: var(--transition-base);
}

.process-step:hover .step-num {
    background: var(--accent);
    color: var(--primary);
}

.process-line {
    flex: 0.5;
    height: 2px;
    background: #e2e8f0;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .process-line { display: none; }
    .process-step { min-width: 45%; }
}

/* Certifications */
.cert-badge {
    padding: 15px 30px;
    border: 1px solid #e2e8f0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 4px;
    color: var(--text-muted);
}

/* Testimonials */
.testimonial-card {
    padding: 30px;
    border-radius: 12px;
}

.quote-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

.client-info {
    margin-top: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #f0f4fa;
    padding-top: 15px;
}

/* Industry Cards */
.industry-card {
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition-base);
}

.industry-card i {
    color: var(--accent);
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
}

.industry-card h4 {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.industry-card:hover {
    background: var(--surface);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 31, 60, 0.05);
    border-color: var(--accent);
}

/* Form Styles */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: #0A0A0A;
    border: 1px solid #1A1A1A;
    color: #fff;
    padding: 18px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    outline: none;
    transition: var(--transition-base);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #444;
    background: #111;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #000;
    border: 1px solid #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#back-to-top.active {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Footer Styles */
.footer {
    background: #000;
    color: white;
    padding: 100px 0 50px 0;
    border-top: 1px solid #1A1A1A;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 40px;
}

/* Ticker Styles */
.ticker span {
    color: #444;
    transition: 0.3s;
}
.ticker span:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .about-image div {
        height: 280px !important;
    }
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    padding-right: 20px;
}

.footer-column h4 {
    margin-bottom: 25px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 12px;
    padding: 0;
}

.footer-links a, .footer-contact-item {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1A1A1A;
    margin-top: 80px;
    padding-top: 50px;
    text-align: center;
    color: #444;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 50px !important;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .footer-column,
    .footer-brand {
        border-bottom: 1px solid #1A1A1A;
        padding-bottom: 30px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}
/* Professional Process Section */
#process {
    padding: 120px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.process-grid-pro {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid #000;
    border-bottom: 1px solid #f0f0f0;
}

.process-item-pro {
    padding: 50px 30px;
    border-right: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.process-item-pro:last-child {
    border-right: none;
}

.process-item-pro .step-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #888;
    display: block;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.process-item-pro .step-icon-wrap {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    margin-bottom: 30px;
    transition: 0.3s;
}

.process-item-pro h3 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.4;
    color: #000;
}

.process-item-pro p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Hover Effect: Professional "Active" State */
.process-item-pro:hover {
    background: #000;
}

.process-item-pro:hover .step-label {
    color: rgba(255,255,255,0.4);
}

.process-item-pro:hover .step-icon-wrap {
    background: #fff;
    transform: scale(1.1);
}

.process-item-pro:hover h3,
.process-item-pro:hover p {
    color: #fff;
}

/* Responsive adjustment */
@media (max-width: 1200px) {
    .process-grid-pro {
        grid-template-columns: repeat(3, 1fr);
        border-right: 1px solid #f0f0f0;
    }
    .process-item-pro:nth-child(3n) {
        border-right: none;
    }
    .process-item-pro {
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 768px) {
    .process-grid-pro {
        grid-template-columns: 1fr;
    }
    .process-item-pro {
        border-right: none;
        padding: 40px;
    }
}
