:root {
    --primary-blue: #27419E;
    --primary-dark: #122154;
    --accent: #4a6fe3;
    --text-dark: #1a1a2e;
    --text-muted: #555566;
    --bg-white: #ffffff;
    --bg-light: #f7f9fc;
    --bg-dark: #0a0e17; /* Very dark blue near black */
    --black: #111111;
    --border-light: #e0e6ed;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.section-badge {
    display: inline-block;
    color: var(--primary-blue);
    background: rgba(39, 65, 158, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.section-badge.center {
    display: table;
    margin: 0 auto 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(39, 65, 158, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 65, 158, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-blue);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-dark:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(255,255,255, 0.05); /* Transparent initial for black hero */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    letter-spacing: 0;
}

.logo-b {
    font-size: 4.8rem;
    text-transform: uppercase;
    /* Royal Blue Steel */
    background: linear-gradient(135deg, #4169E1 0%, #1738A5 40%, #0A1C5A 50%, #27419E 70%, #7A9DF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.8;
    filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.6));
    transition: filter 0.4s ease;
    padding-right: 2px;
}

.logo-rest {
    font-size: 1.6rem;
    text-transform: lowercase;
    /* Stainless Steel */
    background: linear-gradient(135deg, #e4e7eb 0%, #ffffff 30%, #aab1bb 50%, #d5d9df 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.6));
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-b,
.navbar.scrolled .logo-rest {
    filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.15));
}

.navbar.scrolled .logo-rest {
    /* Slightly darker steel context on white background */
    background: linear-gradient(135deg, #abb1b8 0%, #d4d7db 30%, #525a64 50%, #7a848f 70%, #e0e3e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    position: relative;
    transition: color 0.4s;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s;
}

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

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-blue);
}

.nav-cta {
    padding: 10px 20px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}
.navbar.scrolled .menu-toggle {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background-color: var(--black);
}

.metallic-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Textura de reflexão metálica intensa */
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(200, 215, 230, 0.1) 30%,
        rgba(100, 120, 150, 0.6) 45%, /* Sombra profunda e forte do aço */
        rgba(255, 255, 255, 0.8) 48%, /* Brilho reflexo agudo */
        rgba(255, 255, 255, 0.95) 50%, /* Núcleo do brilho metálico */
        rgba(100, 120, 150, 0.6) 52%, /* Sombra após a curvatura do reflexo */
        rgba(200, 215, 230, 0.1) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 300% 300%;
    background-position: 0% 50%;
    z-index: 1; 
    pointer-events: none;
    mix-blend-mode: color-dodge; /* Efeito Dodge faz os metais brilharem como luz real */
    opacity: 0.7; /* Opacidade reforçada para aparente clareza */
    animation: constantMetallic 14s ease-in-out infinite alternate;
}

@keyframes constantMetallic {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Expose the black background */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(14, 18, 30, 0.9) 0%, rgba(14, 18, 30, 0.6) 50%, rgba(0,0,0,0) 100%);
    z-index: 0;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 680px;
    padding: 40px 0;
    animation: fadeIn 1s ease-out;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.hero-text .title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero-text .title span {
    color: var(--primary-blue);
    background: linear-gradient(120deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text .subtitle {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Trust / Marquee Section */
.trust-section {
    padding: 25px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    overflow: hidden;
}

.trust-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

/* Add fog on edges */
.marquee-container::before, .marquee-container::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 45s linear infinite;
    gap: 40px;
    padding-left: 40px;
}

.logo-item {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item.divider {
    font-size: 1rem;
    color: var(--primary-blue);
    opacity: 0.8;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
    /* Translate -50% assumes the content is exactly duplicated once */
}

/* Base Sections */
.section-padding {
    padding: 100px 0;
}

.section-light {
    background-color: var(--bg-light);
}

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

.section-header {
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About Section */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1 1 550px;
}

.about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.differentials {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ultra-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(39, 65, 158, 0.2));
    flex-shrink: 0;
    transition: transform 0.4s;
}
.diff-item:hover .ultra-icon {
    transform: scale(1.1) rotate(5deg);
}

.diff-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.diff-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-image {
    flex: 1 1 450px;
    position: relative;
    height: 550px;
    width: 100%;
}

.plate-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.stat-box {
    position: absolute;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(39, 65, 158, 0.15);
    z-index: 10;
}

.modern-stat h3 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 5px;
}
.modern-stat p {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}
.dark-stat {
    background: var(--primary-dark);
    color: #fff;
}
.dark-stat i {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.dark-stat p {
    color: #fff;
}

.stat-box.top-left {
    top: -30px;
    left: -30px;
}
.stat-box.bottom-right {
    bottom: -30px;
    right: -30px;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.corporate-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(39, 65, 158, 0.1);
    border-color: var(--primary-blue);
}

.product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.corporate-card:hover .product-img img {
    transform: scale(1.08);
}

.corporate-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 15px 10px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(18, 33, 84, 0.9) 100%);
    text-align: center;
}

.sub-types {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services */
.row-reverse-flex {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 80px;
    align-items: center;
}

.services-text {
    flex: 1.2;
    min-width: 300px;
}

.services-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.services-text > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.check-list li {
    margin-bottom: 18px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary-dark);
}

.check-list i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.services-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.clear-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 35px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.clear-card:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(39, 65, 158, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.clear-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.clear-card h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
}

/* Segments */
.segments-grid {
    display: grid;
    /* Usa auto-fit para preencher o limite máximo em formato de grid fluida de cartões */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.segment-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.segment-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: bottom;
}

.segment-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.segment-card:hover {
    box-shadow: 0 10px 30px rgba(39, 65, 158, 0.08);
    border-color: #d0d7e6;
    transform: translateY(-3px);
}

.seg-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
}

.segment-card span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

/* CTA */
.cta-section {
    padding: 100px 20px;
    background: var(--bg-dark);
    position: relative;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    mix-blend-mode: luminosity;
}

.cta-solid-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.cta-solid-container h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-solid-container p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.cta-pulse {
    animation: bluePulse 2s infinite;
    font-size: 1.2rem;
    padding: 18px 40px;
}

.cta-hours {
    margin-top: 25px;
    font-size: 0.95rem !important;
    font-weight: 600;
    color: var(--accent) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bluePulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 65, 158, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(39, 65, 158, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 65, 158, 0); }
}

.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--primary-dark) 100%);
    width: 100%;
    box-shadow: 0 0 15px rgba(39, 65, 158, 0.8), 0 0 30px rgba(39, 65, 158, 0.4);
    position: relative;
    z-index: 5;
}

/* Process Section */
.process-section {
    background-color: var(--primary-dark);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}
.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}
.step-icon-wrapper {
    position: relative;
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: inset 0 0 20px rgba(39, 65, 158, 0.1);
    transition: var(--transition);
}
.step-card:hover .step-icon-wrapper {
    transform: translateY(-8px);
    box-shadow: inset 0 0 30px rgba(39, 65, 158, 0.4), 0 15px 30px rgba(0,0,0,0.4);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}
.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-dark);
}
.step-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.step-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}
.step-line {
    flex: 0 0 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    margin-top: 48px;
}
.mt-5 {
    margin-top: 50px;
}

/* Footer */
footer {
    background-color: var(--bg-dark); /* ALmost black */
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    /* Logo styling is handled by .logo-text classes */
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 350px;
    font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-contact ul li {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.slide-in-left.visible, .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container, .row-reverse-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .about-image {
        order: -1;
        margin-bottom: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-text .title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.4s;
    }
    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.2rem;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-cta {
        display: none;
    }
    .hero-text .title {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .step-line {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stat-box.top-left { top: -10px; left: -10px; }
    .stat-box.bottom-right { bottom: -10px; right: -10px; }
}
