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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: underline;
}

.logo {
    width: 300px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eb5d15 0%, #FF9F43 100%);
    color: #fff;
    padding: 60px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-badge {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Signup Form */
.signup-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.signup-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 45px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    outline: none;
}

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

.signup-form input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: 2px solid #eb5d15;
}

.signup-form button {
    padding: 16px 28px;
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 45px;
    color: #eb5d15;
    font-size: 16px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.signup-form button:hover {
    border-color: #eb5d15;
}

.form-note {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 32px;
    margin-left: 18px;
}

.form-success {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 32px;
}

.form-error {
    font-size: 14px;
    color: #f87171;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 24px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: -10px;
    border: 2px solid #5B4FD9;
}

.social-proof p {
    font-size: 14px;
    opacity: 0.9;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Placeholder for missing image */
.hero-image::before {
    content: '';
    display: block;
    width: 400px;
    height: 320px;
    border-radius: 16px;
}

.hero-image img~::before {
    display: none;
}

/* Logo Banner Section */
.logo-banner {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.logo-banner-tagline {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #eb5d15;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-banner-tagline span {
    color: #ccc;
    margin: 0 8px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-row img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.logo-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #fff;
}

.problem h2 {
    font-size: 48px;
    font-color: #25184e;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.problem-intro {
    font-size: 18px;
    color: #555;
    max-width: 90%;
    margin-bottom: 60px;
}

.problem-intro strong {
    color: #1a1a2e;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature {
    padding: 0 20px 0 0;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon {
    font-size: 28px;
    color: #fff;
    background: #eb5d15;
    padding: 8px;
    border-radius: 8px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.feature p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Trust Section */
.trust {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.trust-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #99c458 0%, #6c9245 100%);
    color: #fff;
    padding: 60px;
    border-radius: 24px;
    max-width: 100%;
    margin: 0 auto;
}

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

.trust-text-block {
    /* Text content */
}

.trust-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-image img {
    position: relative;
    right: -30%;
    max-width: 150%;
    height: auto;
    border-radius: 12px;

    transform: rotate(2deg);
}

.trust-label {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.trust h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.trust-text {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.trust-text strong {
    color: #fff;
    opacity: 1;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #058f0c;
    color: #fff;
    text-decoration: none;
    border-radius: 45px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #0eba42;
}

/* Footer */
.footer {
    position: relative;
    z-index: 0;
    padding: 260px 0 40px;
    margin-top: -300px;
    background: linear-gradient(135deg, #eb5d15 0%, #FF9F43 100%);
    text-align: center;
}

.footer-icon {
    font-size: 32px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.footer-contact {
    font-size: 15px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-contact a {
    color: #fff;
}

.footer-tagline {
    font-size: 14px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-social {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    margin: 0 2px;
}

.footer-feed {
    font-size: 14px;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-legal {
    font-size: 13px;
    opacity: 0.6;
    color: #fff;
    margin-bottom: 8px;
}

.footer-links {
    font-size: 12px;
    color: #fff;
}

.footer-links a {
    color: #5B4FD9;
}

/* Responsive */
@media (max-width: 1100px) {
    .trust-image img {
        right: 0;
        max-width: 100%;
    }
}

@media (max-width: 900px) {

    /* Logo Banner */
    .logo-banner {
        padding: 30px 0;
    }

    .logo-row {
        gap: 24px;
    }

    .logo-row img {
        height: 30px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 50px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .logo {
        width: 200px;
        margin: 0 auto 24px;
    }

    .signup-form {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto 12px;
    }

    .social-proof {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }

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

    .hero-image::before {
        width: 300px;
        height: 240px;
        margin: 0 auto;
    }

    /* Problem Section */
    .problem {
        padding: 60px 0;
    }

    .problem h2 {
        font-size: 32px;
    }

    .problem-intro {
        max-width: 100%;
    }

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

    .feature {
        padding: 0;
    }

    .feature-header {
        justify-content: flex-start;
    }

    /* Trust Section */
    .trust {
        padding: 60px 0 80px;
    }

    .trust-card {
        padding: 40px 30px;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-text-block {
        text-align: center;
    }

    .trust-text-block .logo {
        margin: 0 auto 16px;
    }

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

    .trust-image {
        order: -1;
    }

    .trust-image img {
        position: relative;
        right: 0;
        transform: rotate(0deg);
        max-width: 90%;
    }

    /* Footer */
    .footer {
        margin-top: -200px;
        padding: 180px 0 40px;
    }

    .footer .logo {
        margin: 0 auto 20px;
        width: 180px;
    }
}

@media (max-width: 600px) {

    /* Logo Banner */
    .logo-banner {
        padding: 24px 0;
    }

    .logo-banner-tagline {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .logo-row {
        gap: 16px;
    }

    .logo-row img {
        height: 24px;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .signup-form input,
    .signup-form button {
        padding: 14px 20px;
        font-size: 15px;
    }

    .problem h2 {
        font-size: 26px;
    }

    .problem-intro {
        font-size: 16px;
    }

    .feature-header {
        gap: 10px;
    }

    .feature-icon {
        font-size: 24px;
        padding: 6px;
    }

    .feature h3 {
        font-size: 16px;
    }

    .feature p {
        font-size: 14px;
    }

    .trust {
        padding: 40px 0 60px;
    }

    .trust-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .trust h2 {
        font-size: 24px;
    }

    .trust-text {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .footer {
        margin-top: -150px;
        padding: 140px 0 30px;
    }

    .footer-contact,
    .footer-tagline,
    .footer-social,
    .footer-feed {
        font-size: 13px;
        padding: 0 10px;
    }

    .footer .logo {
        width: 140px;
    }
}