.elementor-13 .elementor-element.elementor-element-e6bd41b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-bf684d8 *//* ═══════════════════════════════════════════════════════════════
   MONEYGUIDE DESIGN SYSTEM – "Clean Signal"
   Swiss Modernism meets Contemporary Fintech
   Colors: Deep Green #1A7A4A, Gold #FFD700
   Fonts: Space Grotesk (Headlines), Inter (Body)
   ═══════════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #FFFFFF;
    color: #212121;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(26, 122, 74, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A7A4A;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: #212121;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1A7A4A;
}

/* ─── HERO SECTION ─── */
.hero {
    margin-top: 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #1A7A4A 0%, #0f4c2f 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .gold {
    color: #FFD700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

/* ─── BUTTONS ─── */
.btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #FFD700;
    color: #1A7A4A;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

/* ─── SECTIONS ─── */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #212121;
}

/* ─── OFFERS SECTION ─── */
.offers {
    background-color: #f9f9f9;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.offer-card {
    background: white;
    border: 2px solid #1A7A4A;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 122, 74, 0.15);
}

.offer-card.featured {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(26, 122, 74, 0.05));
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #FFD700;
    color: #1A7A4A;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.offer-card h3 {
    font-size: 1.75rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1A7A4A;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1A7A4A;
    margin: 1rem 0;
}

.offer-subtext {
    font-size: 0.875rem;
    color: #999;
}

/* ─── FORM SECTION ─── */
.form-section {
    background-color: white;
}

.form-container {
    max-width: 500px;
    margin: 2rem auto;
    background: #f5f5f5;
    border: 2px solid #1A7A4A;
    border-radius: 1rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212121;
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #1A7A4A;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #dc2626;
}

.form-error {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.dsgvo-box {
    background: rgba(26, 122, 74, 0.05);
    border: 2px solid #1A7A4A;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.dsgvo-box label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    font-size: 0.875rem;
}

.dsgvo-box input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: #1A7A4A;
}

.dsgvo-box a {
    color: #1A7A4A;
    text-decoration: underline;
    font-weight: 600;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #1A7A4A;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover:not(:disabled) {
    transform: scale(1.02);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin-top: 1rem;
}

/* ─── SUCCESS MESSAGE ─── */
.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(26, 122, 74, 0.05);
    border: 2px solid #1A7A4A;
    border-radius: 1rem;
    animation: scaleIn 0.4s ease-out;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #1A7A4A;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #666;
    line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
    background-color: #1A7A4A;
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 0.875rem;
}

footer a {
    color: #FFD700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}/* End custom CSS */