:root {
    --brand-red: #E03541; /* Slightly brighter red for text */
    --brand-blue: #234375;
    --brand-blue-light: #34588C;
    --brand-blue-dark: #112847;
    --bg-top: #FFFFFF;
    --bg-bottom: #FFFFFF;
    --text-dark: #2F3E57;
    --text-grey: #6B7B96;
    --input-bg: #F0F4F8;
    --font-main: 'Inter', sans-serif;
    --font-hero: 'Oswald', sans-serif;
    --font-script: 'Caveat', cursive;
}

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

body, html {
    font-family: var(--font-main);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    background: #FFFFFF;
}

/* Background with optional pattern */
.page-wrapper {
    background-color: #FFFFFF;
    background-image: url('/assets/images/bg-pattern.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-blend-mode: overlay;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Force light background to ensure pattern is subtle and matches original white design */
.page-wrapper::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(255,255,255,0.92);
    z-index: -1;
}


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

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(17, 40, 71, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.sponsor-pill {
    color: var(--brand-blue);
    font-weight: 900;
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* New Hero Section (MOMOSTE) */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.momo-hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15));
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.hero-text-wrapper {
    flex: 1;
    max-width: 550px;
}

.headline-group {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.headline-momoste {
    font-family: var(--font-hero);
    font-size: 64px;
    color: var(--brand-blue);
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.headline-script {
    font-family: var(--font-script);
    font-size: 42px;
    color: var(--brand-red);
    line-height: 1;
    transform: translateY(-5px);
}

.headline-script-img {
    height: 60px;
    object-fit: contain;
    transform: translateY(-5px);
}



.hero-paragraph {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.dashed-box {
    border: 2px dashed var(--brand-red);
    border-radius: 12px;
    padding: 25px 30px;
    position: relative;
    margin-bottom: 30px;
}

.dashed-box-title {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 10px;
    color: var(--brand-red);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
}

.dashed-box-quote {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    color: var(--brand-blue);
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.hero-bullet {
    list-style: none;
    font-size: 15px;
    line-height: 1.6;
    color: var(--brand-blue);
}

.hero-bullet li {
    position: relative;
    padding-left: 20px;
}

.hero-bullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--brand-red);
    border-radius: 50%;
}

.hero-bullet strong {
    font-weight: 800;
}

/* Form Section Wrapper */
.form-section-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(17, 40, 71, 0.12);
    border: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    max-width: 800px;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 12px;
    text-align: center;
}

.form-desc {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid transparent;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    font-family: var(--font-main);
    transition: all 0.2s;
    font-weight: 500;
}

.form-group input::placeholder {
    color: #9CA8BB;
}

/* Custom Action Buttons */
.action-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px 0 50px 0;
}

.btn-custom {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    min-width: 240px;
}

.btn-solid {
    background: var(--brand-red);
    color: white;
    border: 2px solid var(--brand-red);
    box-shadow: 0 8px 20px rgba(189, 30, 44, 0.2);
}

.btn-solid:hover {
    background: white;
    color: var(--brand-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 30, 44, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--brand-blue-dark);
    border: 2px solid var(--brand-blue-dark);
}

.btn-outline:hover {
    background: var(--brand-blue-dark);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(17, 40, 71, 0.2);
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: white;
}

.btn-submit {
    width: 100%;
    background: var(--brand-red);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #c22b37;
}

.form-footer-text {
    font-size: 12px;
    color: #9CA8BB;
    margin-top: 16px;
    line-height: 1.5;
    text-align: center;
}

.alert-error {
    background: #FEE2E2;
    color: #B91C1C;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

/* Promo Banner */
.promo-banner {
    background: var(--brand-red);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 24px;
    margin-top: 40px;
    margin-bottom: 80px;
    box-shadow: 0 16px 32px rgba(224, 53, 65, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promo-banner h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    font-family: var(--font-hero);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-banner p {
    font-size: 22px;
    font-weight: 600;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-wrapper {
    animation: float 5s ease-in-out infinite;
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-animate {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-delay-1 { animation-delay: 0.1s; }
.hero-delay-2 { animation-delay: 0.2s; }
.hero-delay-3 { animation-delay: 0.3s; }
.hero-delay-4 { animation-delay: 0.4s; }

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.growth-card:nth-child(1) { transition-delay: 0.1s; }
.growth-card:nth-child(2) { transition-delay: 0.2s; }
.growth-card:nth-child(3) { transition-delay: 0.3s; }
.growth-card:nth-child(4) { transition-delay: 0.4s; }
.growth-card:nth-child(5) { transition-delay: 0.5s; }
.growth-card:nth-child(6) { transition-delay: 0.6s; }

/* Remove specific transition-delay on hover so it responds instantly */
.growth-card:hover {
    transition-delay: 0s !important;
}

/* Footer */
.footer {
    background: var(--brand-blue-dark);
    color: white;
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-left strong {
    font-weight: 700;
}

.footer-right {
    color: rgba(255,255,255,0.6);
    text-align: right;
    max-width: 400px;
    line-height: 1.5;
}

/* Growth Section */
.growth-section {
    margin-top: 40px;
    padding: 60px 20px;
    margin-bottom: 60px;
    background-color: var(--brand-blue-dark);
    background-image: 
        linear-gradient(rgba(17, 40, 71, 0.55), rgba(17, 40, 71, 0.85)), 
        url('/assets/images/growth-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(17, 40, 71, 0.15);
}

.growth-section .section-title {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 46px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--font-hero);
}

.growth-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 60px;
    font-weight: 500;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.growth-card {
    background: rgba(255, 255, 255, 0.85); /* white box */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, background 0.3s;
}

.growth-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    transition-delay: 0s !important;
}

.growth-card.highlight {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--brand-red);
}

.growth-card.highlight:hover {
    background: #ffffff;
}

.card-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.growth-card h3 {
    font-size: 22px;
    color: var(--brand-blue-dark);
    font-weight: 900;
    margin: 0 0 12px 0;
}

.growth-badge {
    background: var(--brand-red);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(211, 29, 63, 0.3);
}

.growth-card.highlight .growth-badge {
    background: var(--brand-blue-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(25, 59, 104, 0.3);
}

.growth-card p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--brand-blue-dark);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-wrapper {
        max-width: 100%;
    }
    .headline-group {
        justify-content: center;
    }
    .dashed-box-title {
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-bullet li::before {
        left: 50%;
        transform: translateX(-15px);
    }
    .hero-bullet li {
        padding-left: 0;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Responsive Timeline */
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0px;
    }
    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    .left::after, .right::after {
        left: 21px;
    }
    .right {
        left: 0%;
    }
}

/* Specific Mobile Adjustments for < 600px */
@media (max-width: 600px) {
    .header {
        padding: 15px 20px;
        gap: 15px;
        margin-top: 10px;
        border-radius: 20px;
    }
    
    .header-logo-img {
        height: 50px;
    }
    
    .sponsor-pill {
        font-size: 14px;
        text-align: center;
    }
    
    .headline-momoste {
        font-size: 46px;
    }
    
    .headline-script {
        font-size: 28px;
    }
    
    .hero-paragraph {
        font-size: 15px;
    }
    
    .form-card {
        padding: 24px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    

    .section-title {
        font-size: 26px;
    }
    
    .action-buttons-wrapper {
        flex-direction: row;
        gap: 10px;
        margin: 10px 0 30px 0;
    }
    
    .btn-custom {
        width: 50%;
        min-width: unset;
        padding: 12px 5px;
        font-size: 11px;
        letter-spacing: 0;
    }
    
    .promo-banner {
        padding: 30px 15px;
        border-radius: 16px;
        margin-bottom: 50px;
    }
    
    .promo-banner h2 {
        font-size: 21px; /* smaller so it fits on one line */
        letter-spacing: 0.5px;
    }
    
    .promo-banner p {
        font-size: 15px;
        margin-top: 5px; /* keep text closer */
        line-height: 1.4;
    }
    
    .growth-section .section-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .growth-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}
