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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

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

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

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

.gradient-text {
    background: linear-gradient(135deg, #ec4899, #ef4444, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ec4899, #ef4444);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #db2777, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: #ec4899;
    color: #ec4899;
}

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

/* Icons */
.icon {
    width: 1rem;
    height: 1rem;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

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

.logo-img {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.5rem;
}

.logo-text {
    margin-left: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ec4899;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: #f3f4f6;
}

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

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: #374151;
    margin: 4px 0;
    transition: 0.3s;
}

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

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

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

.nav-mobile {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #ec4899;
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fef3c7, #fce7f3, #fee2e2);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background-color: #fbbf24;
    animation: pulse 2s infinite;
}

.floating-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background-color: #f472b6;
    animation: bounce 2s infinite;
}

.floating-3 {
    top: 50%;
    left: 25%;
    width: 4rem;
    height: 4rem;
    background-color: #ef4444;
    opacity: 0.1;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

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

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

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.hero-content {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fce7f3, #fee2e2);
    border: 1px solid #f9a8d4;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #be185d;
    margin-bottom: 1rem;
}

.hero-badge .icon {
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

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

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.feature-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #ec4899, #ef4444);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #fbbf24, #ec4899);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #ef4444, #db2777);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #db2777, #ef4444);
}

.gradient-bg-5 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.gradient-bg-6 {
    background: linear-gradient(135deg, #f472b6, #fbbf24);
}

.hero-feature span {
    font-weight: 600;
    color: #1f2937;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.avatars {
    display: flex;
    margin-left: -0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.5rem;
}

.avatar-1 {
    background: linear-gradient(135deg, #f472b6, #ef4444);
}

.avatar-2 {
    background: linear-gradient(135deg, #fbbf24, #f472b6);
}

.avatar-3 {
    background: linear-gradient(135deg, #ef4444, #f472b6);
}

.social-proof span {
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.analysis-card {
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.profit-badge {
    background-color: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crypto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
}

.crypto-bitcoin {
    background: linear-gradient(135deg, #fef3c7, #fce7f3);
}

.crypto-ethereum {
    background: linear-gradient(135deg, #fce7f3, #fee2e2);
}

.crypto-cardano {
    background: linear-gradient(135deg, #fee2e2, #fef3c7);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.crypto-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.bitcoin {
    background-color: #fbbf24;
}

.ethereum {
    background-color: #f472b6;
}

.cardano {
    background-color: #ef4444;
}

.crypto-name {
    font-weight: 600;
}

.crypto-stats {
    text-align: right;
}

.crypto-change {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.positive {
    color: #059669;
}

.negative {
    color: #dc2626;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fce7f3, #fee2e2);
    border: 1px solid #f9a8d4;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #be185d;
    margin-bottom: 1rem;
}

.section-badge .icon {
    margin-right: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

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

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

.feature-card {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #f9a8d4;
}

.feature-card .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card .feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #ec4899, #ef4444);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .stats-section {
        padding: 3rem;
    }
}

.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
    color: white;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: #fce7f3;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb, #fce7f3);
}

.steps-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

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

.step-icon-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #f3f4f6;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.step:hover .step-icon-container {
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #ec4899, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ec4899, #ef4444);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.step:hover .step-icon {
    background: linear-gradient(135deg, #db2777, #dc2626);
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #f3f4f6;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .cta-card {
        padding: 3rem;
    }
}

.cta-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Waitlist Section */
.waitlist {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ec4899, #ef4444, #f59e0b);
}

.waitlist-content {
    text-align: center;
    color: white;
}

.waitlist-header {
    margin-bottom: 2rem;
}

.waitlist-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

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

.waitlist-title span {
    display: block;
}

.waitlist-description {
    font-size: 1.25rem;
    color: #fce7f3;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .waitlist-description {
        font-size: 1.5rem;
    }
}

.waitlist-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .waitlist-form-container {
        padding: 3rem;
    }
}

.waitlist-form {
    margin-bottom: 3rem;
}

.form-group {
    max-width: 32rem;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

@media (min-width: 1024px) {
    .input-container {
        flex-direction: row;
    }
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    z-index: 10;
}

@media (min-width: 1024px) {
    .input-icon {
        top: 1rem;
        transform: none;
    }
}

#email {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 1rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    background: white;
    outline: none;
    transition: box-shadow 0.2s ease;
}

#email:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

#email::placeholder {
    color: #6b7280;
}

.btn-submit {
    background: linear-gradient(135deg, #fbbf24, #ec4899);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 12.5rem;
    position: relative;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #f59e0b, #db2777);
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.spinner {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.early-bird-bonus {
    color: #fce7f3;
    font-size: 0.875rem;
}

.benefits {
    display: grid;
    gap: 1.5rem;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
}

.benefit span {
    color: #fce7f3;
}

/* Success Message */
.success-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .success-message {
        padding: 3rem;
    }
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-content p {
    color: #fce7f3;
    font-size: 1.125rem;
}

.success-note {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    max-width: 28rem;
    margin: 1.5rem auto 0;
}

.success-note p {
    font-size: 0.875rem;
    color: #fce7f3;
}

/* Waitlist Social Proof */
.waitlist-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #fce7f3;
}

@media (min-width: 768px) {
    .waitlist-social-proof {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.waitlist-social-proof .avatars {
    display: flex;
    margin-left: -0.5rem;
}

.waitlist-social-proof .avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.5rem;
}

.avatar-yellow {
    background-color: #fbbf24;
}

.avatar-pink {
    background-color: #f472b6;
}

.avatar-red {
    background-color: #ef4444;
}

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

.social-proof-item span {
    font-weight: 600;
}

.rating {
    font-size: 0.875rem;
}

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

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

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

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-brand .logo-text {
    color: white;
}

.brand-description {
    color: #9ca3af;
    line-height: 1.6;
    margin: 1rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #f472b6;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #f472b6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-note {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .footer-note {
        margin-top: 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}