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

:root {
    --cream: #faf8f3;
    --light-beige: #f5f2ea;
    --warm-orange: #fb923c;
    --dark-orange: #ea580c;
    --forest-green: #16a34a;
    --warm-brown: #92400e;
    --text-primary: #451a03;
    --text-secondary: #78350f;
    --text-light: #a16207;
    --shadow-sm: 0 2px 8px rgba(120, 53, 15, 0.08);
    --shadow-md: 0 4px 16px rgba(120, 53, 15, 0.12);
    --shadow-lg: 0 8px 32px rgba(120, 53, 15, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Header */
.site-header {
    padding: 0 40px;
    background: transparent;
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 10;
}

.logo {
    height: 260px;
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-beige) 100%);
    padding: 100px 0 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.image-placeholder {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.image-placeholder svg,
.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.paw-decoration {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: pawFloat 8s ease-in-out infinite;
}

.paw-1 {
    top: -20px;
    right: 20px;
    animation-delay: 0s;
}

.paw-2 {
    bottom: -20px;
    left: 20px;
    animation-delay: 2s;
}

@keyframes pawFloat {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

/* Hero Text */
.hero-text {
    max-width: 540px;
}

.badge {
    display: inline-block;
    background: rgba(251, 146, 60, 0.15);
    color: var(--warm-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Nunito', sans-serif;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 500;
}

/* Signup Form */
.signup-form {
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

input[type="email"] {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(251, 146, 60, 0.5);
    background: white;
    border-radius: 60px;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--warm-orange);
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.1);
}

input[type="email"]::placeholder {
    color: #8b6f47;
    font-weight: 600;
}

.cta-button {
    padding: 18px 32px;
    background: var(--warm-orange);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    padding: 0 24px;
}

/* Success Message */
.success-message {
    background: rgba(22, 163, 74, 0.1);
    border: 2px solid var(--forest-green);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    animation: successSlide 0.5s ease;
}

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

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.success-message h2 {
    font-size: 24px;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-secondary);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator .icon {
    font-size: 16px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--cream);
    padding: 40px 32px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.benefit-card:nth-child(2) .benefit-icon {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) .benefit-icon {
    animation-delay: 0.4s;
}

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

.benefit-card h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--cream) 100%);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}


.quote {
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 500;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Nunito', sans-serif;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

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

.features h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 48px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.feature:hover {
    background: var(--light-beige);
    transform: translateX(5px);
}

.feature-icon {
    color: var(--forest-green);
    font-weight: 700;
    font-size: 20px;
}

.feature span:last-child {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--text-primary);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 30px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-lg);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--light-beige);
    color: var(--text-primary);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Nunito', sans-serif;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Loading State */
.cta-button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.cta-button.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Error State */
.error {
    animation: shake 0.5s;
    border-color: #dc2626 !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .site-header {
        padding: 0 20px;
        top: -20px;
    }
    
    .logo {
        height: 150px;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        max-width: 350px;
        margin: 0 auto;
        margin-top: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .site-header {
        top: -25px;
    }
    
    .logo {
        height: 180px;
    }
    
    .hero {
        padding: 90px 0 30px;
        min-height: auto;
    }
    
    .hero-image {
        max-width: 300px;
    }

    h1 {
        font-size: 36px;
    }

    .subheadline {
        font-size: 18px;
    }

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

    input[type="email"] {
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .quote {
        font-size: 18px;
    }

    .features h2 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 130px;
    }
    
    .hero {
        padding-top: 75px;
    }
    
    h1 {
        font-size: 32px;
    }

    .subheadline {
        font-size: 16px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .modal-content {
        padding: 32px 24px;
    }
}