:root {
    --primary-color: #FF8C00;
    --secondary-color: #1e3a8a;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    min-height: 100vh;
}

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

header {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.logo-img {
    max-height: 50px;
}

.content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.intro-text {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-text {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.step-content {
    flex: 1;
}

.step-content strong {
    color: var(--secondary-color);
}

.signup-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phone-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.country-code {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f8f8;
    font-size: 1rem;
}

.phone-number {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-btn {
    width: auto;
    min-width: 200px;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.submit-btn:hover {
    background: #e67e00;
    color: white;
    text-decoration: none;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-img {
    max-width: 100%;
    height: auto;
}

footer {
    margin-top: 2rem;
    padding: 1rem 0;
    color: var(--white);
}

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

.contact {
    flex: 1;
    min-width: 300px;
    line-height: 1.5;
}

.links {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
}

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

.links a:hover {
    opacity: 1;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--light-text);
    text-align: center;
    max-width: 400px;
    margin-top: 0.5rem;
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        order: -1;
    }

    .mockup-img {
        max-width: 300px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact {
        min-width: unset;
    }

    .links {
        justify-content: center;
    }
}  