/* ===== Variables ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #0ea5e9;
    --accent: #8b5cf6;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    
    --cotiza: #10b981;
    --flotillas: #6366f1;
    --waqr: #22c55e;
    
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
}

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

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-product {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
}

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

.btn-product.flotillas {
    background: var(--gradient);
    color: var(--white);
}

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

.btn-product:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.hero-content {
    max-width: 700px;
    margin-bottom: 60px;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 500px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== Products ===== */
.products {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-top: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--light);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card.featured {
    border: 2px solid var(--primary);
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-icon svg {
    width: 32px;
    height: 32px;
}

.product-icon.cotiza {
    background: rgba(16, 185, 129, 0.1);
    color: var(--cotiza);
}

.product-icon.flotillas {
    background: rgba(99, 102, 241, 0.1);
    color: var(--flotillas);
}

.product-icon.waqr {
    background: rgba(34, 197, 94, 0.1);
    color: var(--waqr);
}

.product-card h3 {
    margin-bottom: 8px;
}

.product-tagline {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.product-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark);
}

.product-features svg {
    width: 18px;
    height: 18px;
    color: var(--cotiza);
    flex-shrink: 0;
}

.product-price {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.product-price strong {
    font-size: 1.5rem;
    color: var(--dark);
}

/* ===== Showroom Sections ===== */
.showroom {
    padding: 100px 0;
}

.showroom-cotiza {
    background: linear-gradient(180deg, #ecfdf5 0%, var(--white) 100%);
}

.showroom-flotillas {
    background: linear-gradient(180deg, #eef2ff 0%, var(--white) 100%);
}

.showroom-waqr {
    background: linear-gradient(180deg, #f0fdf4 0%, var(--white) 100%);
}

.showroom-header {
    text-align: center;
    margin-bottom: 60px;
}

.showroom-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.showroom-badge.cotiza {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.showroom-badge.flotillas {
    background: rgba(99, 102, 241, 0.15);
    color: #4f46e5;
}

.showroom-badge.waqr {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.showroom-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}

.showroom-tagline {
    font-size: 1.25rem;
    color: var(--gray);
}

.showroom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.showroom-main h3,
.showroom-features h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.showroom-main p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.showroom-main p strong {
    color: var(--dark);
}

/* Steps */
.showroom-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step h4 {
    margin-bottom: 4px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Video Showcase */
.video-showcase {
    margin: 50px auto 70px;
    max-width: 850px;
    text-align: center;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    padding: 6px;
    background: linear-gradient(135deg, var(--cotiza) 0%, #0ea5e9 50%, var(--primary) 100%);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(16, 185, 129, 0.25),
        0 0 60px rgba(16, 185, 129, 0.15);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 
            0 25px 50px -12px rgba(16, 185, 129, 0.25),
            0 0 60px rgba(16, 185, 129, 0.15);
    }
    50% {
        box-shadow: 
            0 25px 50px -12px rgba(16, 185, 129, 0.4),
            0 0 80px rgba(16, 185, 129, 0.25);
    }
}

.video-glow {
    display: none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--dark);
    border-radius: 18px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.play-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--cotiza);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    animation: pulse-ring 2s ease-out infinite;
}

.play-indicator svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.video-caption p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
}

@media (max-width: 768px) {
    .video-showcase {
        margin: 30px auto 50px;
    }
    
    .video-wrapper {
        padding: 4px;
        border-radius: 16px;
    }
    
    .video-container {
        border-radius: 12px;
    }
    
    .video-caption {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 14px 20px;
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
}

/* Use Cases */
.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.use-case {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.use-case h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.use-case p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--cotiza);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Module List */
.module-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.module {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.module h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.module p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Tech Features */
.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tech-feature {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tech-feature h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.tech-feature p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Code Example */
.code-example {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 24px;
    overflow: hidden;
}

.code-example h4 {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.code-example pre {
    margin: 0;
    overflow-x: auto;
}

.code-example code {
    color: #a5f3fc;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Pricing */
.showroom-pricing {
    margin-bottom: 60px;
}

.showroom-pricing h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--light);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--cotiza);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cotiza);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-card > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray);
    border-bottom: 1px solid var(--light);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Benefits */
.showroom-benefits {
    margin-bottom: 60px;
}

.showroom-benefits h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit {
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.benefit h4 {
    margin-bottom: 8px;
}

.benefit p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA */
.showroom-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.showroom-cta p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content.about-full {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    margin-bottom: 24px;
}

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

.about-intro {
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.about-feature h4 {
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

.tech-stack {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.tech-stack h4 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--gray);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech-items span {
    background: var(--light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary);
}

.cta-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card h3 {
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--gray-light);
    margin-bottom: 24px;
}

.cta-card .btn-primary {
    align-self: flex-start;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dark-light);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-brand img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-light);
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Showroom responsive */
    .showroom-content {
        grid-template-columns: 1fr;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .product-card {
        padding: 24px;
    }
    
    .cta-card {
        padding: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .showroom {
        padding: 60px 0;
    }
    
    .showroom-cta {
        padding: 24px;
    }
}
