/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #EF4537;
    --color-primary-dark: #d93d30;
    --color-text: #1a1a1a;
    --color-text-secondary: #6b7280;
    --color-bg: #ffffff;
    --color-bg-gray: #f9fafb;
    --color-border: #e5e7eb;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --transition: 250ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
.text-accent {
    color: var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-ghost:hover {
    background-color: rgba(239, 69, 55, 0.1);
}

.w-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

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

.logo-img {
    height: 2rem;
    width: auto;
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
    background-color: rgba(239, 69, 55, 0.05);
}

.header-actions {
    display: none;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-logo {
    height: 1.75rem;
    width: auto;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    border-radius: var(--radius-md);
}

.mobile-nav {
    flex: 1;
    padding: 0.75rem;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    margin-bottom: 0.25rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: rgba(239, 69, 55, 0.08);
    color: var(--color-primary);
}

.mobile-menu-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-border);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 50%, #e8e8e8 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, transparent 50%, rgba(255, 255, 255, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

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

/* Fixador 3D - Black & White Circles Animation */
#fixador {
    position: relative;
    overflow: hidden;
}

.bw-circles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bw-circle {
    position: absolute;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.15;
}

/* Circle 1 - Large, dark, slow */
.bw-circle.c1 {
    width: 120px;
    height: 120px;
    color: #000;
    top: 10%;
    left: -150px;
    animation: moveRight 25s linear infinite;
}

/* Circle 2 - Medium, light, medium speed */
.bw-circle.c2 {
    width: 80px;
    height: 80px;
    color: #666;
    top: 25%;
    left: -100px;
    animation: moveRight 18s linear infinite;
    animation-delay: -5s;
}

/* Circle 3 - Small, dark, fast */
.bw-circle.c3 {
    width: 40px;
    height: 40px;
    color: #333;
    top: 40%;
    left: -60px;
    animation: moveRight 12s linear infinite;
    animation-delay: -8s;
}

/* Circle 4 - Large, light, slow */
.bw-circle.c4 {
    width: 150px;
    height: 150px;
    color: #999;
    top: 55%;
    left: -180px;
    animation: moveRight 30s linear infinite;
    animation-delay: -3s;
}

/* Circle 5 - Medium, dark, medium */
.bw-circle.c5 {
    width: 60px;
    height: 60px;
    color: #222;
    top: 70%;
    left: -80px;
    animation: moveRight 20s linear infinite;
    animation-delay: -10s;
}

/* Circle 6 - Small, very light, fast */
.bw-circle.c6 {
    width: 30px;
    height: 30px;
    color: #bbb;
    top: 15%;
    left: -50px;
    animation: moveRight 10s linear infinite;
    animation-delay: -2s;
}

/* Circle 7 - Large, medium gray, slow */
.bw-circle.c7 {
    width: 100px;
    height: 100px;
    color: #555;
    top: 80%;
    left: -130px;
    animation: moveRight 28s linear infinite;
    animation-delay: -15s;
}

/* Circle 8 - Medium, dark, medium-fast */
.bw-circle.c8 {
    width: 70px;
    height: 70px;
    color: #444;
    top: 35%;
    left: -90px;
    animation: moveRight 16s linear infinite;
    animation-delay: -7s;
}

/* Circle 9 - Small, black, very fast */
.bw-circle.c9 {
    width: 25px;
    height: 25px;
    color: #000;
    top: 60%;
    left: -40px;
    animation: moveRight 8s linear infinite;
    animation-delay: -4s;
}

/* Circle 10 - Large, light gray, very slow */
.bw-circle.c10 {
    width: 180px;
    height: 180px;
    color: #ccc;
    top: 45%;
    left: -220px;
    animation: moveRight 35s linear infinite;
    animation-delay: -12s;
}

/* Circle 11 - Medium, dark gray, medium */
.bw-circle.c11 {
    width: 55px;
    height: 55px;
    color: #777;
    top: 5%;
    left: -75px;
    animation: moveRight 22s linear infinite;
    animation-delay: -9s;
}

/* Circle 12 - Small, very dark, fast */
.bw-circle.c12 {
    width: 35px;
    height: 35px;
    color: #111;
    top: 85%;
    left: -55px;
    animation: moveRight 14s linear infinite;
    animation-delay: -6s;
}

/* Circle 13 - Tiny, light gray, fast */
.bw-circle.c13 {
    width: 15px;
    height: 15px;
    color: #bbb;
    top: 12%;
    left: -25px;
    animation: moveRight 9s linear infinite;
    animation-delay: -2s;
}

/* Circle 14 - Extra Large, medium gray, slow */
.bw-circle.c14 {
    width: 220px;
    height: 220px;
    color: #888;
    top: 25%;
    left: -280px;
    animation: moveRight 40s linear infinite;
    animation-delay: -18s;
}

/* Circle 15 - Small, dark, medium-fast */
.bw-circle.c15 {
    width: 45px;
    height: 45px;
    color: #333;
    top: 70%;
    left: -65px;
    animation: moveRight 13s linear infinite;
    animation-delay: -5s;
}

/* Circle 16 - Medium-Large, light, medium */
.bw-circle.c16 {
    width: 100px;
    height: 100px;
    color: #ddd;
    top: 50%;
    left: -130px;
    animation: moveRight 21s linear infinite;
    animation-delay: -11s;
}

/* Circle 17 - Very Small, black, very fast */
.bw-circle.c17 {
    width: 12px;
    height: 12px;
    color: #000;
    top: 88%;
    left: -20px;
    animation: moveRight 7s linear infinite;
    animation-delay: -3s;
}

/* Circle 18 - Large, dark gray, slow */
.bw-circle.c18 {
    width: 160px;
    height: 160px;
    color: #555;
    top: 5%;
    left: -200px;
    animation: moveRight 32s linear infinite;
    animation-delay: -14s;
}

/* Circle 19 - Tiny, medium gray, fast */
.bw-circle.c19 {
    width: 18px;
    height: 18px;
    color: #999;
    top: 40%;
    left: -30px;
    animation: moveRight 10s linear infinite;
    animation-delay: -1s;
}

/* Circle 20 - Medium, very light, medium-slow */
.bw-circle.c20 {
    width: 65px;
    height: 65px;
    color: #eee;
    top: 78%;
    left: -85px;
    animation: moveRight 19s linear infinite;
    animation-delay: -8s;
}

/* Circle 21 - Small-Medium, dark, medium */
.bw-circle.c21 {
    width: 40px;
    height: 40px;
    color: #222;
    top: 18%;
    left: -55px;
    animation: moveRight 15s linear infinite;
    animation-delay: -10s;
}

/* Circle 22 - Very Large, light gray, very slow */
.bw-circle.c22 {
    width: 250px;
    height: 250px;
    color: #aaa;
    top: 62%;
    left: -320px;
    animation: moveRight 45s linear infinite;
    animation-delay: -20s;
}

/* Circle 23 - Micro, dark gray, very fast */
.bw-circle.c23 {
    width: 10px;
    height: 10px;
    color: #666;
    top: 32%;
    left: -18px;
    animation: moveRight 6s linear infinite;
    animation-delay: -2.5s;
}

/* Circle 24 - Medium, near-black, medium */
.bw-circle.c24 {
    width: 50px;
    height: 50px;
    color: #1a1a1a;
    top: 95%;
    left: -70px;
    animation: moveRight 17s linear infinite;
    animation-delay: -7s;
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 300px));
    }
}

/* Manutenção Section - Red Animated Background */
#manutencao {
    position: relative;
    background: linear-gradient(-45deg, #EF4537, #d93d30, #ff6b5e, #c73a2e);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    overflow: hidden;
}

#manutencao::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.glow-blob {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
    animation: chaoticFloat1 25s ease-in-out infinite;
}

.blob-2 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: -80px;
    animation: chaoticFloat2 30s ease-in-out infinite;
}

@keyframes chaoticFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    15% {
        transform: translate(150px, 80px) scale(1.2);
        opacity: 0.7;
    }
    30% {
        transform: translate(80px, 200px) scale(0.9);
        opacity: 0.4;
    }
    45% {
        transform: translate(250px, 50px) scale(1.1);
        opacity: 0.6;
    }
    60% {
        transform: translate(100px, -50px) scale(0.85);
        opacity: 0.5;
    }
    75% {
        transform: translate(200px, 150px) scale(1.15);
        opacity: 0.65;
    }
    90% {
        transform: translate(50px, 100px) scale(1);
        opacity: 0.55;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
}

@keyframes chaoticFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.45;
    }
    12% {
        transform: translate(-120px, -80px) scale(1.1);
        opacity: 0.6;
    }
    28% {
        transform: translate(-200px, 50px) scale(0.95);
        opacity: 0.4;
    }
    42% {
        transform: translate(-80px, -150px) scale(1.2);
        opacity: 0.55;
    }
    58% {
        transform: translate(-250px, -30px) scale(0.9);
        opacity: 0.5;
    }
    72% {
        transform: translate(-150px, -120px) scale(1.05);
        opacity: 0.65;
    }
    88% {
        transform: translate(-60px, -60px) scale(0.85);
        opacity: 0.45;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.45;
    }
}

#manutencao .section-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

#manutencao .section-title {
    color: white;
}

#manutencao .section-title .text-accent {
    color: rgba(255, 255, 255, 0.9);
}

#manutencao .section-description {
    color: rgba(255, 255, 255, 0.85);
}

#manutencao .feature-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

#manutencao .btn-primary {
    background-color: white;
    color: var(--color-primary);
}

#manutencao .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background-color: rgba(239, 69, 55, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Products Comparison */
.products-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-comparison {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-item {
    position: relative;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.product-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-item.border-orange {
    border-color: #f59e0b;
}

.product-item.border-green {
    border-color: #10b981;
}

.product-item.border-blue {
    border-color: #3b82f6;
}

.product-badge-popular {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.375rem 0.875rem;
    background-color: #10b981;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    border-bottom-left-radius: var(--radius-md);
    z-index: 2;
}

.product-image {
    padding: 1.5rem 1rem 0;
    text-align: center;
    background: transparent;
}

.product-image img {
    display: block;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.product-header {
    padding: 0.5rem 1.5rem;
    text-align: center;
    background: white;
}

.product-stripe {
    height: 3px;
    width: 80px;
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.product-tagline {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.product-body {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body .btn {
    margin-top: auto;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.check {
    width: 16px;
    height: 16px;
    background-color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.check.blue {
    background-color: #3b82f6;
}

.check.green {
    background-color: #10b981;
}

.check.orange {
    background-color: #f59e0b;
}

.store-links-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.store-links-bar span {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Lubricants */
.lubricants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lubricants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lubricant-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.lubricant-visual {
    padding: 2rem;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.lubricant-icon-large {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lubricant-content {
    padding: 1.5rem;
}

.lubricant-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lubricant-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lubricant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lubricant-features li {
    list-style: none;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-bg-gray);
    border-radius: 9999px;
    color: var(--color-text-secondary);
}

/* Print Services */
.print-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .print-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

.print-type {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.print-type:hover {
    box-shadow: var(--shadow-lg);
}

.print-visual {
    padding: 2rem;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.print-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.print-info {
    padding: 1.5rem;
}

.print-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.print-info p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.print-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.print-tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    background-color: var(--color-bg-gray);
    border-radius: 9999px;
    color: var(--color-text-secondary);
}

/* Laser Section */
.laser-content {
    max-width: 800px;
    margin: 0 auto;
}

.laser-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .laser-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.laser-feature-item {
    text-align: center;
}

.laser-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.laser-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.laser-feature-item p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.laser-materials {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.laser-materials h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.material-tag {
    padding: 0.5rem 1rem;
    background-color: var(--color-bg-gray);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tool-card-link {
    text-decoration: none;
    color: inherit;
}

.tool-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: all var(--transition);
}

.tool-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.tool-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tool-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tool-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
}

.opensource-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--radius-lg);
    margin-top: 2.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .opensource-note {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }
}

.opensource-title {
    font-weight: 600;
    color: var(--color-text);
}

.opensource-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2rem;
    width: auto;
}

.footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: none;
}

.footer-contact-item:hover {
    color: white;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #6b7280;
}
 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.software::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, var(--color-bg-secondary), transparent);
    opacity: 0.5;
}

.software::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: rgba(239, 69, 55, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.software-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .software-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        text-align: center;
    }
}

.software-intro {
    max-width: 600px;
    text-align: center;
}

.tools-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tool-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.tool-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.tool-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.tool-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-new {
    padding: 0.25rem 0.75rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 9999px;
}

.tool-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.tool-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tool-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--color-bg-secondary);
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.btn-tool {
    width: 100%;
    border: 1px solid var(--color-border);
    background-color: white;
    color: var(--color-text);
}

.btn-tool:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.ml-auto {
    margin-left: auto;
}

/* Open Source Note */
.opensource-note {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-xl);
    margin-top: 2.5rem;
    margin-left: 50%;
    transform: translateX(-50%);
}

.opensource-title {
    font-weight: 600;
    color: var(--color-text);
}

.opensource-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
}

.steps-container {
    position: relative;
}

.steps-line {
    display: none;
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, rgba(239, 69, 55, 0.2), rgba(239, 69, 55, 0.4), rgba(239, 69, 55, 0.2));
}

@media (min-width: 1024px) {
    .steps-line {
        display: block;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-bg-tertiary);
    z-index: 0;
    pointer-events: none;
}

.step-icon {
    position: relative;
    width: 5rem;
    height: 5rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-bg-secondary);
    z-index: 1;
}

.step-title {
    position: relative;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    z-index: 1;
}

.step-description {
    position: relative;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-normal);
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.info-content {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.info-sub {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.contact-cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: white;
}

.cta-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-links {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color var(--transition-fast);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
}

.footer .container {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
}

.footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-links-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
}

.footer-bottom .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.separator {
    color: #4b5563;
}
