/* =============================================
   ARISTIQ STUDIO - Main Stylesheet
   ============================================= */

/* ----- Variables ----- */
:root {
    --bg-primary: #15171A;
    --bg-secondary: #1C1F23;
    --bg-card: #1E2126;
    --accent-blue: #2563EB;
    --accent-gold: #C8A25A;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* ----- Reset & Base ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
    background-color: rgba(21, 23, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
}

.logo-img {
    height: 300px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active {
    color: var(--accent-gold);
}

/* ----- Mobile Menu Button ----- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
}

.btn-ghost:hover {
    color: var(--accent-gold);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 162, 90, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(200, 162, 90, 0.1);
    border: 1px solid rgba(200, 162, 90, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.hero-play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    fill: var(--bg-primary);
}

.hero-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-floating-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.hero-floating-card strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats {
    padding: 6rem 2rem;
    background-color: var(--bg-secondary);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.stats-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.stats-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.stats-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: 6rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(200, 162, 90, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-blue);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: var(--accent-gold);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
    padding: 6rem 2rem;
    background-color: var(--bg-secondary);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-image {
    position: relative;
}

.process-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.process-card {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    max-width: 320px;
    box-shadow: var(--shadow-soft);
    z-index: 10;
}


.process-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.process-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.process-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.process-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-check {
    width: 24px;
    height: 24px;
    background-color: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent-blue);
}

.process-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why {
    padding: 6rem 2rem;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.why-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(200, 162, 90, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold);
}

.why-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.why-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

/* =============================================
   PARTNERS SECTION
   ============================================= */
.partners {
    padding: 5rem 2rem;
    background-color: var(--bg-secondary);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.partners-container p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    padding: 6rem 2rem;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 3.5rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-banner {
    display: block;
}

.footer-banner-img {
    height: 180px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 320px;
    text-align: right;
    padding: 1.25rem 1.5rem;
    border-left: 2px solid var(--accent-gold);
    background: linear-gradient(90deg, rgba(200, 162, 90, 0.05), transparent);
    letter-spacing: 0.01em;
}

.footer-tagline strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 3rem 2rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-column p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--accent-gold);
    background-color: rgba(200, 162, 90, 0.1);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    transition: stroke 0.2s ease;
}

.footer-social a:hover svg {
    stroke: var(--accent-gold);
}

.footer-bottom {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-legal a.active {
    color: var(--accent-gold);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
    .hero-container,
    .stats-container,
    .process-container,
    .why-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-banner {
        display: flex;
        justify-content: center;
    }

    .footer-tagline {
        text-align: center;
        max-width: 100%;
        border-left: none;
        border-top: 2px solid var(--accent-gold);
        background: linear-gradient(180deg, rgba(200, 162, 90, 0.05), transparent);
        padding: 1.25rem 1rem;
    }

    .process-card {
        position: relative;
        right: 0;
        transform: none;
        margin-top: -60px;
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .hero-floating-card {
        bottom: -20px;
        right: 20px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   (MODIFICADO para:
   - NAV más baja y logo solo móvil
   - Hero padding-top para nav fija
   - Hero floating card sin superposición
   - Process card sin superposición
   - Botones del hero full width
   ============================================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* --- NAV más compacta en móvil --- */
    .nav {
        padding: 0.6rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    /* SOLO móvil: achicar logo (PC queda intacto) */
    .logo-img {
        height: 44px;
    }

    /* --- Hero: que no quede tapado por nav fija --- */
    .hero {
        padding: 6.5rem 1.5rem 3rem; /* antes: 7rem 1.5rem 3rem */
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    /* Botones a ancho completo */
    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Imagen del hero un poco más baja */
    .hero-image {
        height: 320px;
    }

    /* Floating card: que no se superponga ni se corte */
    .hero-visual {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-floating-card {
        position: static;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    /* --- Services & stats --- */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* --- Process: tarjeta sin superposición --- */
    .process-card {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 1rem;
        right: auto;
        top: auto;
    }

    .process-image img {
        height: 320px;
    }

    /* --- Footer --- */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-banner-img {
        height: 55px;
    }

    .cta-container {
        padding: 2.5rem 1.5rem;
    }

    .section-header h2,
    .stats-content h2,
    .process-content h2,
    .why-content h2,
    .cta h2 {
        font-size: 1.75rem;
    }
}
/* =============================================
   FIXES MOBILE (PEGAR AL FINAL)
   ============================================= */
@media (max-width: 768px) {

  /* NAV: que no se coma la pantalla */
  .nav {
    padding: 0.55rem 0 !important;
  }

  .nav-container {
    padding: 0 1rem !important;
  }

  /* Logo SOLO móvil (PC queda igual) */
  .nav .logo-img {
    height: 44px !important;
    width: auto !important;
    max-height: 44px !important;
  }

  /* Hero: evitar que el nav fijo tape contenido */
  .hero {
    padding-top: 6.5rem !important;
  }

  /* Botones del hero más prolijos */
  .hero-buttons {
    width: 100% !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Imagen del hero más baja en móvil */
  .hero-image {
    height: 320px !important;
  }

  /* Card flotante del hero: que no se corte/solape */
  .hero-visual {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .hero-floating-card {
    position: static !important;
    margin-top: 1rem !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* PROCESO: la tarjeta superpuesta rompe mobile -> normalizar */
  .process-card {
    position: static !important;
    transform: none !important;
    top: auto !important;
    right: auto !important;
    max-width: 100% !important;
    margin-top: 1rem !important;
  }

  .process-image img {
    height: 320px !important;
  }
}
