:root {
    --primary-bg: #0F172A;
    --secondary-bg: #1E293B;
    --accent-color: #38BDF8;
    --accent-gradient: linear-gradient(90deg, #38BDF8, #818CF8);
    --google-blue: #4285F4;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.25);
    --card-bg: rgba(30, 41, 59, 0.8);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(15, 23, 42, 0) 60%);
    z-index: 0;
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(5%, 5%);
    }
    100% {
        transform: translate(0, 0);
    }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
    position: relative;
    z-index: 1;
    border: none;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.4);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.secondary {
    background: linear-gradient(90deg, var(--google-blue), #34A853);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.secondary:hover {
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.4);
}

.trust-badges {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-badges span {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

.trust-badges i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* Hero Animation */
.hero-animation {
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
}

.animation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
}

.image-side, .plush-side {
    flex: 1;
    text-align: center;
}

.animation-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 0 20px;
    animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.placeholder-box {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--card-bg) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-color);
    border: 1px dashed var(--accent-color);
    transition: all 0.3s ease;
}

.placeholder-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-bg) 100%);
}

.upload-image, .plush-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    padding: 10px;
}

.upload-image:hover, .plush-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.google-badge img {
    height: 30px;
    margin-right: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, rgba(30, 41, 59, 0) 70%);
    z-index: 0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    margin: 15px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.step-icon {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background-color: rgba(56, 189, 248, 0.1);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.how-it-works .cta-button {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

/* Testimonials Section */


/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--card-bg);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.accordion-button {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-button i {
    transition: transform 0.3s ease;
}

.accordion-button.active i {
    transform: rotate(180deg);
}

.accordion-content {
    background-color: transparent;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-content.active {
    padding: 20px;
    max-height: 300px;
}

/* Footer */
footer {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

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

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-coral);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods i {
    font-size: 1.5rem;
    margin-left: 10px;
    color: var(--white);
}

/* Animation for the hero section */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.plush-img {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 30px;
    }
    
    .animation-container {
        flex-direction: column;
    }
    
    .animation-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--accent-color);
    }
    
    .footer-content {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .step {
        padding: 20px;
    }

    .accordion-button {
        font-size: 1rem;
    }
}
