/* Maison Vintage TV - Complete Redesign CSS */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Crimson+Text:wght@400;600;700&display=swap');

/* CSS Variables - New Color Palette */
:root {
    /* Primary Color Palette - Coral & Deep Teal */
    --primary-color: #FF7A5C;
    --primary-light: #FF9B7F;
    --primary-dark: #E6633F;
    --secondary-color: #2C5F5D;
    --secondary-light: #3D7A77;
    --secondary-dark: #1F4543;
    --accent-color: #F4A261;
    --accent-light: #F7B885;
    --accent-dark: #E08E3E;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --cream: #FDF8F5;
    --light-gray: #F5F5F5;
    --medium-gray: #8B8B8B;
    --dark-gray: #2D2D2D;
    --charcoal: #1A1A1A;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --warm-gradient: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    
    /* Typography */
    --font-primary: 'Crimson Text', serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(255, 122, 92, 0.15);
    --shadow-medium: 0 8px 30px rgba(255, 122, 92, 0.2);
    --shadow-strong: 0 15px 50px rgba(255, 122, 92, 0.25);
    --shadow-dark: 0 10px 40px rgba(44, 95, 93, 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Layout */
    --navbar-height: 70px;
    --border-radius: 20px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--cream);
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation - Redesigned */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 2px solid var(--primary-color);
}

#navbar.scrolled {
    background: rgba(253, 248, 245, 0.98);
    box-shadow: var(--shadow-soft);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo .logo-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.logo .logo-icon:hover {
    transform: scale(1.1) rotate(-5deg);
    color: var(--accent-color);
}

/* Support image-based logo */
.logo .logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-smooth);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Buttons - Redesigned */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-card {
    background: var(--accent-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
}

.btn-card:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--secondary-gradient);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    box-shadow: var(--shadow-dark);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* Hero Section - Completely New Design */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--primary-gradient);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding: var(--spacing-xl) 0;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.hero-text .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

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

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    transform: rotate(-2deg);
    transition: var(--transition-smooth);
}

.hero-main-image:hover {
    transform: rotate(0deg) scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: 2s;
}

.floating-card-3 {
    top: 60%;
    left: -5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section - New Hexagonal Design */
.features-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" x="0" y="0" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon fill="none" stroke="%23FF7A5C" stroke-width="0.5" stroke-opacity="0.1" points="24.8,22 37.3,29.2 37.3,43.7 24.8,50.9 12.3,43.7 12.3,29.2"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>') repeat;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-hexagon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.feature-hexagon {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition-bounce);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.feature-hexagon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-hexagon:hover::before {
    opacity: 1;
}

.feature-hexagon:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.hexagon-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.hexagon-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition-smooth);
}

.feature-hexagon:hover .hexagon-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.hexagon-icon i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.feature-hexagon h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.feature-hexagon p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Products Section - Card Masonry Layout */
.products-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
    position: relative;
}

.products-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--secondary-gradient);
    clip-path: polygon(70% 0%, 100% 0%, 100% 100%, 40% 100%);
    opacity: 0.05;
}

.products-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.product-card-new {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.product-card-new:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: var(--shadow-strong);
}

.product-card-new.featured {
    grid-row: span 2;
    background: var(--secondary-gradient);
    color: var(--white);
}

.product-image-new {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-card-new.featured .product-image-new {
    height: 350px;
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card-new:hover .product-image-new img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 122, 92, 0.8), rgba(244, 162, 97, 0.8));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-new:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.product-info-new {
    padding: var(--spacing-lg);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--accent-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.product-info-new h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: inherit;
}

.product-info-new p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.product-card-new.featured .product-info-new p {
    color: rgba(255, 255, 255, 0.9);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.product-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card-new.featured .product-price {
    color: var(--white);
}

.product-rating {
    display: flex;
    gap: 2px;
}

.product-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.product-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.product-tag {
    background: rgba(255, 122, 92, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-card-new.featured .product-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Testimonials Section - Diagonal Layout */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 122, 92, 0.1) 50%, transparent 60%);
}

.testimonials-diagonal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    transform: rotate(-2deg);
}

.testimonial-card:nth-child(even) {
    transform: rotate(2deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section - Split Design */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
    position: relative;
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.cta-content {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.cta-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cta-visual {
    background: var(--secondary-gradient);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFFFFF" opacity="0.1"/></svg>') repeat;
}

.cta-image {
    width: 80%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
}

/* Footer - Redesigned */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    padding-right: var(--spacing-lg);
}

.footer-logo .logo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Footer image logo */
.footer-logo .logo-image {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-brand p:last-child {
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social {
    display: none !important;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: var(--spacing-md);
}

.footer-section ul li a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(253, 248, 245, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-soft);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-hexagon-grid {
        grid-template-columns: 1fr;
    }
    
    .products-masonry {
        grid-template-columns: 1fr;
    }
    
    .testimonials-diagonal {
        grid-template-columns: 1fr;
    }
    
    .cta-split {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .products-masonry {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .testimonial-card {
        transform: rotate(0deg);
    }
    
    .cta-content {
        padding: var(--spacing-lg);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

body.loaded {
    animation: pageLoad 1s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ffffff;
        --dark-gray: #000000;
        --medium-gray: #666666;
    }
}