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

:root {
    /* Color Palette - Modern & Professional */
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --success-color: #4CAF50;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e0e0e0;
    --text-dark: #2c3e50;
    --text-light: #6c757d;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    --gradient-button: linear-gradient(135deg, #e94560 0%, #c23a54 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Squeeze Page Layout */
.squeeze-page {
    background: var(--gradient-hero);
}

.squeeze-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 66, 0.3);
    z-index: 1;
}

.squeeze-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Logo Section */
.squeeze-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.squeeze-logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.squeeze-content {
    text-align: center;
}

/* Headline */
.squeeze-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Subheadline */
.squeeze-subheadline {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.5;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.25);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

/* Form Card */
.squeeze-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-rating {
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.form-header > p {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 1rem;
}

/* Form Styles */
.squeeze-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(15, 52, 96, 0.1);
    transform: translateY(-1px);
}

/* Checkbox */
.checkbox-group {
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* CTA Button */
.squeeze-cta-button {
    width: 100%;
    background: var(--gradient-button);
    color: var(--white);
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.squeeze-cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.button-icon {
    font-size: 1.3rem;
}

/* Privacy Note */
.form-privacy-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-privacy-note svg {
    flex-shrink: 0;
    color: var(--success-color);
}

/* Footer Image */
.footer-image {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-image-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-image img {
    max-width: 50%;
    width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .footer-image-title {
        font-size: 1.5rem;
    }

    .footer-image img {
        max-width: 80%;
        width: 80%;
    }
}

/* Trust Elements */
.trust-elements {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-icon {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1rem;
}

/* Footer */
.squeeze-footer {
    background: var(--gradient-hero);
    padding: 2rem 1rem 1.5rem;
    margin-top: auto;
    position: relative;
}

.squeeze-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom,
        rgba(233, 69, 96, 0) 0%,
        rgba(233, 69, 96, 0.3) 30%,
        rgba(233, 69, 96, 0.6) 60%,
        #e94560 100%
    );
    pointer-events: none;
}

.squeeze-footer .squeeze-container {
    max-width: 600px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Success/Error Messages */
.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .squeeze-headline {
        font-size: 2rem;
    }

    .squeeze-subheadline {
        font-size: 1.1rem;
    }

    .squeeze-form-card {
        padding: 2rem 1.5rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .squeeze-cta-button {
        font-size: 1.1rem;
        padding: 1.1rem 1.5rem;
    }

    .trust-elements {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .squeeze-logo h1 {
        font-size: 1.6rem;
    }

    .squeeze-headline {
        font-size: 1.6rem;
    }

    .squeeze-subheadline {
        font-size: 1rem;
    }

    .squeeze-form-card {
        padding: 1.5rem 1.25rem;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .squeeze-cta-button {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-divider {
        display: none;
    }
}

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

/* Loading States */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Legal Pages Styling */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 20px;
    background: var(--white);
    min-height: 100vh;
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-page h2 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-page h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.legal-page p,
.legal-page li {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

/* Header for Legal Pages */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

/* Footer for Legal Pages */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem 0;
}

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

.footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

.footer .footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer .copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
