@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;1,500&family=DM+Sans:wght@300;400;500&display=swap');

.fg-hero {
    text-align: center;
    padding: 2.5rem 1.5rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
}

.fg-hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    color: #1D9E75;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.fg-hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    color: #111;
}

.fg-hero-headline em {
    font-style: italic;
    color: #1D9E75;
}

.fg-hero-sub {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 2rem;
}

.fg-input-row {
    display: flex;
    gap: 10px;
    max-width: 80%;
    margin: 0 auto 1rem;
}

.fg-input-row input {
    flex: 3;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    padding: 22px 16px;
    border: 0.5px solid #D1D5DB;
    border-radius: 0px;
    background: #fff;
    color: #111;
    outline: none;
    transition: border-color 0.2s ease;
}

.fg-input-row input:focus {
    border-color: #1D9E75;
}

.fg-btn {
    padding: 15px 22px;
    background: #1D4E35;
    color: #fff;
    border: none;
    border-radius: 0px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
    flex: 2;
}

.fg-btn:hover {
    background: #163C29;
}

.fg-note {
    font-size: 16px;
    color: #6B7280;
    margin-top: 0.5rem;
}

.fg-note span {
    color: #1D9E75;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 480px) {
    .fg-hero-headline {
        font-size: 28px;
    }

    .fg-input-row {
        flex-direction: column;
    }

    .fg-btn {
        width: 100%;
    }
}