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

:root {
    --primary-blue: #3b82f6;
    --dark-blue: #1e3a8a;
    --light-blue: #60a5fa;
    --magenta: #ec4899;
    --pink: #f472b6;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray-dark: #1f2937;
    --text-dark: #111827;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Language Toggle */
.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.language-toggle:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lang-label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
    min-width: 25px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.4);
    transition: 0.4s;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: var(--primary-blue);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-blue);
}

@media (max-width: 768px) {
    .language-toggle {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        gap: 10px;
    }
    
    .switch {
        width: 50px;
        height: 26px;
    }
    
    .slider:before {
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
    }
    
    input:checked + .slider:before {
        transform: translateX(24px);
    }
    
    .lang-label {
        font-size: 0.8rem;
        min-width: 20px;
    }
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--magenta) 0%, #a855f7 50%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

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

.shield-icon {
    display: inline-block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.shield-svg {
    width: 150px;
    height: 180px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--white);
}

.problem-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

.problem-text {
    font-size: 1.2rem;
    color: var(--gray-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Value Section */
.value-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.value-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 50px;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 40px;
    text-align: center;
}

.process-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.process-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-box p:last-child {
    margin-bottom: 0;
}

/* What Not Section */
.what-not-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.what-not-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.comparison-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-card.negative {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 5px solid #ef4444;
}

.comparison-card.positive {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 5px solid var(--primary-blue);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.comparison-card.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.comparison-card.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.legal-comparison {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.legal-comparison h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.legal-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.legal-items span {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
}

/* Growth Section */
.growth-section {
    padding: 80px 0;
    background: var(--white);
}

.growth-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

.growth-section p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Data Protection */
.data-protection {
    padding: 80px 0;
    background: var(--gray-light);
}

.data-protection h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

.data-protection p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Disclaimer */
.disclaimer {
    padding: 80px 0;
    background: var(--white);
}

.disclaimer h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

/* Sign Up Section */
.signup-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--magenta) 0%, #a855f7 50%, var(--dark-blue) 100%);
    color: var(--white);
}

.signup-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
}

.signup-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.95;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.signup-form input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.signup-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--white);
    color: var(--dark-blue);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

.submit-btn:active {
    transform: translateY(0);
}

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

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    color: var(--white);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    color: var(--white);
    display: block;
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .shield-svg {
        width: 120px;
        height: 144px;
    }

    .problem-section h2,
    .value-section h2,
    .how-it-works h2,
    .what-not-section h2,
    .growth-section h2,
    .data-protection h2,
    .disclaimer h2,
    .signup-section h2 {
        font-size: 2rem;
    }

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

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

    .process-box {
        padding: 30px 20px;
    }

    .process-box p {
        font-size: 1rem;
    }

    .legal-items {
        flex-direction: column;
        align-items: center;
    }

    .legal-items span {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .problem-section,
    .value-section,
    .how-it-works,
    .what-not-section,
    .growth-section,
    .data-protection,
    .disclaimer {
        padding: 60px 0;
    }
}
