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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8ee 50%, #fff5f8 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 192, 203, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffc0cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo::after {
    content: '💅';
    margin-left: 8px;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d63384;
}

/* Buttons */
.cta-button, .primary-button {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ff8fa3);
    color: white !important;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-links .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.cta-button::before, .primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before, .primary-button:hover::before {
    left: 100%;
}

.cta-button:hover, .primary-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.4);
}

.secondary-button {
    background: transparent;
    color: #d63384;
    padding: 0.75rem 1.5rem;
    border: 2px solid #d63384;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.secondary-button:hover {
    background: #d63384;
    color: white;
    transform: translateY(-2px);
}

.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8ee 50%, #fff 100%);
    overflow: hidden;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-nail {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.nail-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.nail-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.nail-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.nail-4 {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
}

.nail-5 {
    bottom: 20%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ffc0cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 2px 4px rgba(255, 20, 147, 0.1);
}

.hero-headline::before {
    content: '✨';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}

.hero-subheadline {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Nail Showcase */
.nail-showcase {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-nail-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(255, 20, 147, 0.3);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.main-nail-image:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(255, 20, 147, 0.4);
}

.nail-hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.overlay-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
    max-width: 90%;
}

.preview-badge {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(255, 20, 147, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
    display: inline-block;
    white-space: nowrap;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.secondary-nail-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.small-nail-img {
    position: relative;
    width: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
}

.small-nail-img:first-child {
    transform: rotate(3deg);
}

.small-nail-img:last-child {
    transform: rotate(-3deg);
}

.small-nail-img:hover {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
    z-index: 5;
}

.nail-thumb {
    width: 100%;
    height: 100px;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
    object-fit: cover;
}

.small-nail-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.small-nail-img:hover::before {
    opacity: 1;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-section h3 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #2d2d2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.problem-section h3::before {
    content: '😰';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.problem-section h3::after {
    content: '💔';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.problem-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 105, 180, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff1493, #ff69b4, #ffc0cb);
    border-radius: 25px 25px 0 0;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.15);
    border-color: rgba(255, 105, 180, 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7f7 0%, #fff 100%);
}

.how-it-works h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #d63384;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

/* Features */
.features {
    padding: 80px 0;
    background: white;
}

.features h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #fff 0%, #ffe8ee 50%, #fff5f8 100%);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(255, 105, 180, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: scale(0);
    z-index: 1;
}

.feature-card:first-child::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="20" r="8" fill="%23ff69b4" opacity="0.3"/><circle cx="30" cy="40" r="6" fill="%23ff1493" opacity="0.4"/><circle cx="70" cy="35" r="7" fill="%23ffc0cb" opacity="0.3"/><circle cx="50" cy="60" r="9" fill="%23ff69b4" opacity="0.2"/><circle cx="25" cy="75" r="5" fill="%23ff1493" opacity="0.5"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.6;
    z-index: 1;
}

.feature-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M30 20 Q50 10 70 20 Q75 50 50 60 Q25 50 30 20" fill="%23ff69b4" opacity="0.3"/><path d="M35 35 Q50 25 65 35 Q70 55 50 65 Q30 55 35 35" fill="%23ff1493" opacity="0.2"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.6;
    z-index: 1;
}

.feature-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" rx="10" fill="%23ff69b4" opacity="0.2"/><circle cx="35" cy="35" r="8" fill="%23ff1493" opacity="0.4"/><circle cx="65" cy="65" r="6" fill="%23ffc0cb" opacity="0.3"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.6;
    z-index: 1;
}

.feature-card:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20 L60 40 L80 40 L65 55 L70 75 L50 65 L30 75 L35 55 L20 40 L40 40 Z" fill="%23ff69b4" opacity="0.3"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.6;
    z-index: 1;
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 105, 180, 0.4);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

/* Nail Art Gallery */
.nail-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8ee 50%, #fff 100%);
    position: relative;
}

.nail-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 105, 180, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.nail-gallery h3 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ffc0cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

.gallery-item:nth-child(odd) {
    transform: rotate(1deg);
}

.gallery-item:nth-child(even) {
    transform: rotate(-1deg);
}

.gallery-item:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 20, 147, 0.25);
    z-index: 5;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 20, 147, 0.8), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-tag {
    background: rgba(255, 255, 255, 0.95);
    color: #ff1493;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.gallery-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 240, 248, 0.8));
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 105, 180, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.gallery-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.gallery-cta .primary-button {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7f7 0%, #fff 100%);
}

.testimonials h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.1);
    border: 1px solid rgba(247, 179, 188, 0.2);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d63384, #f7b3bc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h5 {
    font-weight: 600;
    color: #2d2d2d;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ffc0cb 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: '💅✨💖✨💅';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite reverse;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-buttons .primary-button {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ff8fa3) !important;
    color: white !important;
    border: none !important;
}

.cta-buttons .primary-button:hover {
    background: linear-gradient(135deg, #e6127a, #ff5ba1, #ff7a8a) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.email-signup {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.signup-button {
    background: white;
    color: #d63384;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f7b3bc;
}

.footer-column h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f7b3bc;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #f7b3bc;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subheadline {
        margin-bottom: 1.5rem;
    }

    .nail-showcase {
        max-width: 320px;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        transform: rotate(0deg) !important;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-nail {
        display: none;
    }

    .problem-section h3::before,
    .problem-section h3::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 80px 0 30px;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        padding-top: 100px;
    }

    .hero-headline {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-headline::before {
        display: none;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-cta {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .email-signup {
        flex-direction: column;
        gap: 1rem;
    }

    .features h3,
    .how-it-works h3,
    .testimonials h3,
    .problem-section h3,
    .nail-gallery h3 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .nail-showcase {
        max-width: 280px;
        gap: 0.8rem;
    }

    .secondary-nail-images {
        gap: 0.5rem;
        justify-content: center;
    }

    .small-nail-img {
        width: 100px;
        transform: rotate(0deg) !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        margin: 0 10px;
    }

    .gallery-img {
        height: 250px;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card::after {
        width: 40px;
        height: 40px;
        top: 5px;
        right: 5px;
    }

    .steps-grid {
        gap: 2rem;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        top: -5px;
        right: 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section::after {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 70px 0 20px;
        padding-top: 90px;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-headline {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .nail-showcase {
        max-width: 250px;
        gap: 0.6rem;
    }

    .main-nail-image {
        transform: rotate(0deg);
    }

    .nail-thumb {
        height: 80px;
    }

    .small-nail-img {
        width: 80px;
    }

    .preview-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .gallery-cta {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .problem-icon,
    .step-icon {
        font-size: 2.5rem;
    }
}