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

:root {
    --primary: #ff6b9d;
    --primary-dark: #e85a8a;
    --secondary: #7c5cff;
    --accent: #ffd93d;
    --soft-pink: #fff0f5;
    --soft-blue: #e8f4ff;
    --soft-yellow: #fff9e6;
    --soft-green: #e8fff0;
    --text-dark: #2d2d3a;
    --text-light: #6b6b7b;
    --white: #ffffff;
    --shadow-soft: 0 10px 40px rgba(255, 107, 157, 0.15);
    --shadow-medium: 0 20px 60px rgba(255, 107, 157, 0.2);
    --border-radius: 20px;
    --border-radius-lg: 30px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #fff0f5 0%, #f8f0ff 50%, #e8f4ff 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Floating Squishies Background */
.floating-squishies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-squishy {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatAround 20s ease-in-out infinite;
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(20px, 30px) rotate(270deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-squishy {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: squishLogo 3s ease-in-out infinite;
}

.logo-squishy::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 10px;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 14px 0 0 var(--white);
}

@keyframes squishLogo {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1, 0.9) rotate(-5deg); }
    50% { transform: scale(0.9, 1.1) rotate(5deg); }
    75% { transform: scale(1.05, 0.95) rotate(-3deg); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    position: relative;
    background: var(--soft-pink);
    border: none;
    padding: 12px 18px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.cart-btn:hover .cart-icon {
    filter: brightness(10);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #ffb347 100%);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 25px;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    color: var(--text-dark);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
    animation: colorShift 5s ease-in-out infinite;
}

@keyframes colorShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.btn-bounce:hover {
    animation: buttonBounce 0.5s ease;
}

@keyframes buttonBounce {
    0%, 100% { transform: translateY(-3px); }
    50% { transform: translateY(-8px); }
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--soft-pink);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.main-squishy {
    position: relative;
    cursor: pointer;
    z-index: 2;
}

.squishy-body {
    width: 300px;
    height: 280px;
    background: linear-gradient(135deg, #ffb5d5 0%, var(--primary) 50%, #ff8fbc 100%);
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    position: relative;
    animation: squishIdle 4s ease-in-out infinite;
    box-shadow: 
        inset -20px -20px 40px rgba(0, 0, 0, 0.1),
        inset 20px 20px 40px rgba(255, 255, 255, 0.3),
        0 30px 60px rgba(255, 107, 157, 0.4);
    transition: transform 0.2s ease;
}

.squishy-body:hover {
    animation-play-state: paused;
    transform: scale(0.95, 1.05);
}

.squishy-body:active {
    transform: scale(1.1, 0.85);
}

@keyframes squishIdle {
    0%, 100% { 
        transform: scale(1) translateY(0);
        border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    }
    25% { 
        transform: scale(1.02, 0.98) translateY(5px);
        border-radius: 48% 52% 47% 43% / 53% 57% 43% 47%;
    }
    50% { 
        transform: scale(0.98, 1.02) translateY(-5px);
        border-radius: 52% 48% 43% 47% / 57% 53% 47% 43%;
    }
    75% { 
        transform: scale(1.01, 0.99) translateY(3px);
        border-radius: 49% 51% 46% 44% / 54% 56% 44% 46%;
    }
}

.squishy-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.squishy-eye {
    position: absolute;
    width: 35px;
    height: 40px;
    background: var(--text-dark);
    border-radius: 50%;
    top: 35%;
}

.squishy-eye.left {
    left: 28%;
}

.squishy-eye.right {
    right: 28%;
}

.squishy-eye::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
}

.squishy-cheek {
    position: absolute;
    width: 40px;
    height: 25px;
    background: rgba(255, 150, 180, 0.6);
    border-radius: 50%;
    top: 55%;
}

.squishy-cheek.left {
    left: 15%;
}

.squishy-cheek.right {
    right: 15%;
}

.squishy-mouth {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    border: 4px solid var(--text-dark);
    border-top: none;
    border-radius: 0 0 50px 50px;
}

.squishy-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    25% { transform: translateX(-50%) scale(1.1); opacity: 0.6; }
    50% { transform: translateX(-50%) scale(0.9); opacity: 0.4; }
    75% { transform: translateX(-50%) scale(1.05); opacity: 0.55; }
}

/* Orbiting Squishies */
.orbiting-squishies {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbit 15s linear infinite;
}

.orbit-squishy {
    position: absolute;
    width: 60px;
    height: 55px;
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    box-shadow: 
        inset -5px -5px 15px rgba(0, 0, 0, 0.1),
        inset 5px 5px 15px rgba(255, 255, 255, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.orbit-squishy::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 25%;
    width: 8px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    box-shadow: 18px 0 0 #333;
}

.orbit-squishy.s1 {
    background: linear-gradient(135deg, #a0e7ff 0%, #5bc0de 100%);
    top: 0;
    left: 50%;
    animation: floatOrbit1 8s ease-in-out infinite;
}

.orbit-squishy.s2 {
    background: linear-gradient(135deg, #fff7aa 0%, #ffd93d 100%);
    bottom: 10%;
    left: 0;
    animation: floatOrbit2 9s ease-in-out infinite;
}

.orbit-squishy.s3 {
    background: linear-gradient(135deg, #d4a5ff 0%, var(--secondary) 100%);
    bottom: 20%;
    right: 0;
    animation: floatOrbit3 7s ease-in-out infinite;
}

@keyframes floatOrbit1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.1); }
}

@keyframes floatOrbit2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(0.9); }
}

@keyframes floatOrbit3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, -25px) scale(1.05); }
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sparkles */
.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkleAnim 2s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.4s; }
.sparkle:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 0.8s; }
.sparkle:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 1.2s; }
.sparkle:nth-child(5) { top: 50%; right: 5%; animation-delay: 1.6s; }

@keyframes sparkleAnim {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

/* Features Section */
.features {
    padding: 100px 50px;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--white) 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* Products Preview */
.products-preview {
    padding: 100px 50px;
    position: relative;
    z-index: 1;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

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

.product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image.pink { background: linear-gradient(135deg, #ffe4ec 0%, #ffccd5 100%); }
.product-image.blue { background: linear-gradient(135deg, #e4f1ff 0%, #cce4ff 100%); }
.product-image.yellow { background: linear-gradient(135deg, #fff9e4 0%, #fff0cc 100%); }
.product-image.green { background: linear-gradient(135deg, #e4ffe9 0%, #ccffd5 100%); }

.product-squishy {
    width: 120px;
    height: 110px;
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 
        inset -10px -10px 20px rgba(0, 0, 0, 0.1),
        inset 10px 10px 20px rgba(255, 255, 255, 0.5);
}

.product-card:hover .product-squishy {
    transform: scale(1.1) rotate(-5deg);
}

.product-squishy::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 25%;
    width: 12px;
    height: 14px;
    background: #333;
    border-radius: 50%;
    box-shadow: 35px 0 0 #333;
}

.product-squishy::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 12px;
    border: 3px solid #333;
    border-top: none;
    border-radius: 0 0 30px 30px;
}

.product-squishy.cat {
    background: linear-gradient(135deg, #ffb5d5 0%, #ff8fbc 100%);
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
}

.product-squishy.cat::before {
    box-shadow: 35px 0 0 #333, -8px -40px 0 0 #ffb5d5, 55px -40px 0 0 #ffb5d5;
}

.product-squishy.bear {
    background: linear-gradient(135deg, #a0d8ef 0%, #7ec8e3 100%);
}

.product-squishy.bear::before {
    box-shadow: 35px 0 0 #333, -15px -35px 0 5px #a0d8ef, 60px -35px 0 5px #a0d8ef;
}

.product-squishy.food {
    background: linear-gradient(135deg, #ffe4b5 0%, #ffd090 100%);
    border-radius: 10px 10px 45% 45% / 20% 20% 50% 50%;
}

.product-squishy.dino {
    background: linear-gradient(135deg, #98d8aa 0%, #7bc98f 100%);
}

.product-squishy.dino::before {
    box-shadow: 35px 0 0 #333, 15px -45px 0 3px #98d8aa, 30px -50px 0 3px #98d8aa, 45px -45px 0 3px #98d8aa;
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-tag.new {
    background: var(--secondary);
}

.product-tag.sale {
    background: #ff4757;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 8px;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input {
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    width: 300px;
    outline: none;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover {
    background: var(--accent);
    color: var(--text-dark);
}

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

.cta-squishy {
    position: absolute;
    width: 100px;
    height: 90px;
    border-radius: 50%;
    opacity: 0.2;
}

.cta-squishy.s1 {
    background: var(--white);
    top: 20%;
    left: 10%;
    animation: floatCta 6s ease-in-out infinite;
}

.cta-squishy.s2 {
    background: var(--accent);
    bottom: 20%;
    right: 15%;
    animation: floatCta 8s ease-in-out infinite reverse;
}

.cta-squishy.s3 {
    background: var(--white);
    top: 60%;
    left: 5%;
    width: 60px;
    height: 55px;
    animation: floatCta 7s ease-in-out infinite 1s;
}

@keyframes floatCta {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(10deg); }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 50px 30px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer-brand .logo-text {
    -webkit-text-fill-color: var(--white);
}

.footer-brand .logo-squishy {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 400px;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-highlight {
        font-size: 3.5rem;
    }

    .squishy-body {
        width: 220px;
        height: 200px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .email-input {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-highlight {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
