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

body, html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Properties */
:root {
    --hot-pink: #FF1493;
    --purple: #8A2BE2;
    --cyan: #00FFFF;
    --black: #000000;
    --white: #ffffff;
    --gray: rgba(255, 255, 255, 0.7);
    --gradient-pink-purple: linear-gradient(135deg, #FF1493, #8A2BE2);
    --gradient-purple-cyan: linear-gradient(135deg, #8A2BE2, #00FFFF);
    --gradient-pink-cyan: linear-gradient(135deg, #FF1493, #00FFFF);
    --gradient-multi: linear-gradient(135deg, #FF1493, #8A2BE2, #00FFFF);
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-multi);
    opacity: 0.1;
    z-index: -2;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #FF1493, #8A2BE2, #00FFFF);
        transform: scale(1) rotate(0deg);
    }
    33% { 
        background: linear-gradient(135deg, #8A2BE2, #00FFFF, #FF1493);
        transform: scale(1.1) rotate(120deg);
    }
    66% { 
        background: linear-gradient(135deg, #00FFFF, #FF1493, #8A2BE2);
        transform: scale(1.05) rotate(240deg);
    }
}

/* Navigation */
.top-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-brand-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-brand-text p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: -4px;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pink-cyan);
    transition: width 0.3s ease;
}

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

/* App Store Buttons */
.app-store-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.store-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.apple-btn {
    background: linear-gradient(135deg, #007AFF, #0051D0);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.apple-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.5);
}

.google-btn {
    background: linear-gradient(135deg, #34A853, #0F9D58);
    color: white;
    box-shadow: 0 4px 20px rgba(52, 168, 83, 0.3);
}

.google-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(52, 168, 83, 0.5);
}

.store-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.store-btn:hover::before {
    transform: scale(1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 40%, rgba(255, 20, 147, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.3) 0%, transparent 50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-multi);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.primary-cta {
    background: var(--gradient-pink-cyan);
    color: var(--white);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 20, 147, 0.6);
}

.secondary-text {
    color: var(--cyan);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* iPhone 16 Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.app-screenshot {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.app-interface-image {
    max-width: 350px;
    max-height: 700px;
    width: auto;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.app-interface-image:hover {
    transform: scale(1.02);
}

.app-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-pink-cyan);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 800;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.app-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.duo-preview {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.duo-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-purple-cyan);
}

.match-indicator {
    background: var(--gradient-pink-cyan);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: var(--gradient-pink-purple);
    border-radius: 20px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 60px;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 60px;
    height: 100px;
    animation-delay: 4s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

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

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: var(--gradient-purple-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

/* How It Works Section */
.how-it-works {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-pink-purple);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step:hover::before {
    opacity: 0.1;
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 20, 147, 0.5);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-pink-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Features Section */
.features {
    background: rgba(138, 43, 226, 0.05);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-purple-cyan);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.5);
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Waitlist Section */
.waitlist-section {
    background: rgba(255, 20, 147, 0.05);
    text-align: center;
}

.waitlist-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit h4 {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.waitlist-form {
    max-width: 500px;
    margin: 3rem auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--gray);
}

.email-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.submit-btn {
    background: var(--gradient-pink-cyan);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5);
}

.social-proof {
    margin-top: 2rem;
    color: var(--cyan);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-multi);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

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

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

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

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

/* Thank You Modal specific styles */
.thank-you-icon {
    font-size: 4rem;
    margin: 1rem 0;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-message {
    color: var(--white);
    font-size: 1.2rem;
    margin: 1rem 0;
    line-height: 1.6;
}

.thank-you-btn {
    background: var(--gradient-pink-cyan);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.thank-you-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.modal-body {
    position: relative;
}

.primary-cta {
    background: var(--gradient-pink-cyan);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.3);
}

.close-modal,
.close-contact-modal {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    line-height: 1;
}

.close-modal:hover,
.close-contact-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: var(--cyan);
}

.modal-description {
    color: var(--gray);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Modal Waitlist Form - Vertical Layout */
.modal .waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.modal .email-input {
    width: 100%;
    max-width: 400px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.modal .email-input::placeholder {
    color: var(--gray);
}

.modal .email-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.modal .submit-btn {
    background: var(--gradient-pink-cyan);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    font-size: 1rem;
    min-width: 200px;
}

.modal .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-select option {
    background: #1a1a1a;
    color: white;
    padding: 10px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-message {
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.3), rgba(0, 255, 255, 0.2));
    color: #00FFFF;
    border: 1px solid rgba(0, 255, 255, 0.5);
    font-weight: 600;
    animation: successPulse 0.6s ease-out;
}

.form-message.error {
    background: rgba(234, 67, 53, 0.2);
    color: #ea4335;
    border: 1px solid rgba(234, 67, 53, 0.3);
}

@keyframes successPulse {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close-contact-modal:hover {
    color: var(--cyan);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

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

    .app-store-buttons {
        gap: 8px;
    }

    .store-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Hero responsive adjustments */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-visual {
        order: 2;
        padding: 2rem 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 600px;
    }

    .hero-cta {
        align-items: center;
    }

    .app-interface-image {
        max-width: 280px;
        max-height: 560px;
        width: 90%;
        height: auto;
    }

    .app-logo {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .app-title {
        font-size: 1.2rem;
    }

    .duo-avatar {
        width: 35px;
        height: 35px;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .waitlist-form {
        flex-direction: column;
    }

    .email-input {
        min-width: auto;
    }

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

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

    /* QR Modal Mobile Styles */
    .qr-modal-content {
        max-width: 95%;
        margin: 20px;
    }

    .qr-modal-header {
        padding: 25px 30px;
    }

    .qr-modal-header h2 {
        font-size: 1.4rem;
    }

    .qr-modal-body {
        padding: 30px;
    }

    .qr-code-container {
        padding: 20px;
        width: 140px;
        height: 140px;
        margin: 10px auto 15px auto;
    }

    .qr-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .store-link-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .qr-code-placeholder i {
        font-size: 2.8rem;
    }

    .qr-code-placeholder p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
        gap: 2rem;
    }
    
    .hero-visual {
        order: 2;
        padding: 1.5rem 1rem;
        min-height: 500px;
    }

    .app-interface-image {
        max-width: 250px;
        max-height: 500px;
        width: 85%;
        height: auto;
    }

    .app-logo {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .app-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .app-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .duo-avatar {
        width: 30px;
        height: 30px;
    }

    .match-indicator {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-multi);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* QR Modal Styles - Sleek Modern Design */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.qr-modal.show {
    opacity: 1;
}

.qr-modal-content {
    background: radial-gradient(circle at 30% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(40px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.qr-modal.show .qr-modal-content {
    transform: scale(1) translateY(0);
}

.qr-modal-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px 0;
}

.qr-modal-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.5px;
}

.close-qr-modal {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    backdrop-filter: blur(20px);
}

.close-qr-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: scale(1.1);
}

.qr-modal-body {
    position: relative;
    z-index: 1;
    padding: 40px;
    text-align: center;
}

.qr-modal-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.qr-modal-brand i {
    font-size: 2.5rem;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qr-modal-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.qr-modal-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.qr-code-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-code-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 32px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.qr-code-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    width: 100%;
    height: 100%;
    text-align: center;
}

.qr-code-placeholder i {
    font-size: 6rem !important;
    margin-bottom: 16px !important;
    opacity: 0.8 !important;
    color: inherit !important;
    display: block !important;
    line-height: 1 !important;
}

.qr-code-placeholder p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.6;
    font-weight: 500;
    color: #888;
}

.qr-code-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-weight: 500;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.store-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.store-link-btn:hover::before {
    left: 100%;
}

.apple-link {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2), rgba(0, 81, 208, 0.2));
    color: #007AFF;
    border-color: rgba(0, 122, 255, 0.3);
}

.apple-link:hover {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.3), rgba(0, 81, 208, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.google-link {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.2), rgba(15, 157, 88, 0.2));
    color: #34A853;
    border-color: rgba(52, 168, 83, 0.3);
}

.google-link:hover {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.3), rgba(15, 157, 88, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.3);
}

.modal-footer {
    padding: 24px 40px 32px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qr-modal-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .qr-modal-header {
        padding: 24px 32px 0;
    }
    
    .qr-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .qr-modal-body {
        padding: 32px 24px;
    }
    
    .qr-modal-brand h3 {
        font-size: 1.8rem;
    }
    
    .qr-modal-brand i {
        font-size: 2rem;
    }
    
    .qr-modal-subtitle {
        font-size: 1rem;
    }
    
    .qr-code-container {
        width: 180px;
        height: 180px;
        padding: 24px;
    }
    
    .qr-code-placeholder i {
        font-size: 5rem !important;
    }
    
    .store-link-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .modal-footer {
        padding: 20px 24px 24px;
    }
} 

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .store-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-buttons .store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-buttons .store-btn i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .cta-buttons .store-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
} 

/* Policy Modal Styles */
.policy-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.policy-modal .modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.policy-modal .modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.policy-body {
    flex: 1;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

.policy-text {
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.policy-text h3 {
    color: var(--cyan);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.policy-text h3:first-child {
    margin-top: 0;
}

.policy-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-text ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-text li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-text li::before {
    content: '•';
    color: var(--cyan);
    position: absolute;
    left: -1.5rem;
}

/* Custom scrollbar for policy modal */
.policy-body::-webkit-scrollbar {
    width: 8px;
}

.policy-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.policy-body::-webkit-scrollbar-thumb {
    background: var(--gradient-pink-cyan);
    border-radius: 4px;
}

.policy-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FF1493, #00FFFF);
}



@media (max-width: 768px) {
    .policy-modal .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .policy-modal .modal-header {
        padding: 1.5rem;
    }

    .policy-modal .modal-header h2 {
        font-size: 1.5rem;
    }

    .policy-body {
        max-height: calc(95vh - 120px);
    }

    .policy-text {
        padding: 1.5rem;
    }

    .policy-text h3 {
        font-size: 1.2rem;
    }
}

/* Standalone Policy Page Styles */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 6rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff1493, #8a2be2, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    color: #888;
    font-size: 1rem;
    margin: 0;
}

.policy-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content .policy-text {
    padding: 0;
}

.policy-content .policy-text h3 {
    color: #ff1493;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
    padding-bottom: 0.5rem;
}

.policy-content .policy-text h3:first-child {
    margin-top: 0;
}

.policy-content .policy-text p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.policy-content .policy-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-content .policy-text li {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 1rem;
    }
    
    .policy-header {
        padding-top: 5rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
} 

/* Enhanced Hero Text Styles */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at 30% 40%, rgba(255, 20, 147, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.3) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    letter-spacing: -0.02em;
}

.title-line.highlight {
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
    font-weight: 800;
    font-size: 1.1em;
    margin-top: 0.2em;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.subtitle-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.subtitle-line:last-child {
    animation-delay: 0.6s;
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    color: var(--white);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.highlight-text {
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Feature Bubbles */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.feature-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bubble {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.bubble::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-pink-cyan);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bubble i {
    font-size: 2.5rem;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.5s ease;
}

.bubble-text {
    text-align: center;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.bubble-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.bubble-text p {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 200px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

/* Bubble Hover Animations */
.feature-bubble:hover .bubble {
    transform: translateY(-15px);
    border-color: transparent;
}

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

.feature-bubble:hover .bubble i {
    transform: scale(1.1);
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-bubble:hover .bubble-text {
    transform: translateY(-5px);
}

.feature-bubble:hover .bubble-text p {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Section */
.hero-stats {
    width: 100%;
    padding: 2rem 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.08);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-card span {
    font-size: 0.9rem;
    color: var(--gray);
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 40px;
    }

    .hero-content {
        gap: 3rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 2rem;
    }

    .bubble {
        width: 100px;
        height: 100px;
    }

    .bubble i {
        font-size: 2rem;
    }

    .bubble-text h3 {
        font-size: 1.1rem;
    }

    .bubble-text p {
        font-size: 0.85rem;
    }

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

    .stat-card h3 {
        font-size: 2.8rem;
    }

    .stat-card p {
        font-size: 1.1rem;
    }
} 

/* Steps Section Styles */
.steps-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 100px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.08);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-pink-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
}

@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 1.2rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .step-details li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
} 

.centered-title {
    text-align: center;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--gradient-multi);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.highlight-word {
    display: block;
    font-size: 1.2em;
    margin-top: 0.2em;
    background: var(--gradient-pink-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.origin-story {
    font-style: italic;
    border-left: 3px solid var(--cyan);
    padding-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@media (max-width: 768px) {
    .centered-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .highlight-word {
        font-size: 1.1em;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }

    .origin-story {
        padding-left: 1.5rem;
        margin: 2rem auto;
    }
} 