/* Reset e variabili CashIn */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cashin-primary: rgb(124, 177, 78);
    --cashin-secondary: #8bc34a;
    --cashin-dark: #2d4a2d;
    --cashin-light: #e8f5e8;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-dark: #0a0a0a;
    --bg-gradient: linear-gradient(135deg, var(--cashin-primary), var(--cashin-secondary));
    --shadow-green: 0 10px 30px rgba(124, 177, 78, 0.3);
    --shadow-strong: 0 20px 60px rgba(124, 177, 78, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-dark);
}

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

/* Hero Section CashIn */
.hero-cashin {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2d1a 50%, #2d4a2d 100%);
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.money-matrix {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="20" font-size="12" fill="%237cb14e" opacity="0.1">€$₿</text><text y="50" font-size="8" fill="%237cb14e" opacity="0.1">CASHIN</text><text y="80" font-size="10" fill="%237cb14e" opacity="0.1">90D</text></svg>') repeat;
    animation: moneyMatrixFlow 20s linear infinite;
}

@keyframes moneyMatrixFlow {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.cash-flows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(124, 177, 78, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(124, 177, 78, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(124, 177, 78, 0.05) 0%, transparent 50%);
}

.revolution-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.revolution-particles::before,
.revolution-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--cashin-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--cashin-primary);
    animation: revolutionFloat 8s ease-in-out infinite;
}

.revolution-particles::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.revolution-particles::after {
    top: 70%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes revolutionFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) scale(1.5);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.early-access-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 30px;
    padding: 10px 24px;
    margin-bottom: 2rem;
    animation: exclusivePulse 3s ease-in-out infinite;
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes exclusivePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 107, 107, 0.7);
    }
}

.cashin-logo {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.cash-part {
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.in-part {
    color: var(--cashin-primary);
    text-shadow: 0 0 30px rgba(124, 177, 78, 0.8);
    animation: inPartGlow 3s ease-in-out infinite;
}

@keyframes inPartGlow {
    0%, 100% { 
        filter: brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.3) hue-rotate(15deg);
        transform: scale(1.05);
    }
}

.motto {
    margin-bottom: 2rem;
}

.motto-main {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--cashin-primary);
    margin-bottom: 0.5rem;
    animation: mottoGlow 4s ease-in-out infinite;
}

@keyframes mottoGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(124, 177, 78, 0.5);
    }
    50% { 
        text-shadow: 0 0 40px rgba(124, 177, 78, 0.8), 0 0 60px rgba(124, 177, 78, 0.4);
    }
}

.motto-sub {
    display: block;
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ccc;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.magic-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.magic-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bg-gradient);
    animation: magicUnderline 3s ease-in-out infinite;
}

@keyframes magicUnderline {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.1); opacity: 0.8; }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-cashin {
    text-align: center;
    position: relative;
}

.stat-cashin::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(124, 177, 78, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: statGlowCashin 4s ease-in-out infinite;
}

@keyframes statGlowCashin {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

.stat-cashin .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cashin-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-cashin .stat-label {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.partnership-highlight {
    margin-top: 3rem;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(124, 177, 78, 0.2);
    border: 1px solid rgba(124, 177, 78, 0.4);
    border-radius: 25px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    animation: partnershipPulse 5s ease-in-out infinite;
}

@keyframes partnershipPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(124, 177, 78, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(124, 177, 78, 0.6);
    }
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-text {
    color: var(--cashin-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--cashin-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cashin-primary);
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: var(--cashin-primary);
    color: white;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* Magic Works Section */
.magic-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.magic-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    position: relative;
    background: rgba(124, 177, 78, 0.05);
    border: 1px solid rgba(124, 177, 78, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.flow-step::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.flow-step:hover {
    transform: translateY(-10px);
    border-color: var(--cashin-primary);
    box-shadow: 0 20px 40px rgba(124, 177, 78, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: stepIconSpin 10s linear infinite;
}

@keyframes stepIconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.flow-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.flow-step p {
    color: #ccc;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--cashin-primary), transparent);
    animation: connectorFlow 3s ease-in-out infinite;
}

.flow-step:last-child .step-connector {
    display: none;
}

@keyframes connectorFlow {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* Revolution Benefits */
.revolution-benefits {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.benefits-description {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card.revolutionary {
    position: relative;
    background: rgba(124, 177, 78, 0.05);
    border: 1px solid rgba(124, 177, 78, 0.2);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.benefit-card.revolutionary:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--cashin-primary);
    box-shadow: 0 25px 50px rgba(124, 177, 78, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.benefit-card.revolutionary h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.benefit-card.revolutionary p {
    color: #ccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.benefit-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(124, 177, 78, 0.1) 0%, transparent 70%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card.revolutionary:hover .benefit-glow {
    opacity: 1;
}

/* Blocky Integration */
.blocky-integration {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.integration-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.blocky-system, .cashin-system {
    text-align: center;
    flex: 1;
}

.system-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.brand-blocky {
    background: linear-gradient(135deg, #8c54fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cashin-logo-small {
    font-size: 2rem;
    font-weight: 900;
}

.cash-small { color: white; }
.in-small { color: var(--cashin-primary); }

.system-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.integration-bridge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.bridge-line {
    width: 30px;
    height: 2px;
    background: var(--bg-gradient);
    animation: bridgeFlow 2s ease-in-out infinite;
}

@keyframes bridgeFlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.bridge-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bridgeRotate 4s linear infinite;
}

@keyframes bridgeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.integration-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.integration-text p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.integration-benefits {
    list-style: none;
}

.integration-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.integration-benefits i {
    color: var(--cashin-primary);
    font-size: 1.1rem;
}

.blocky-cta {
    margin-top: 2.5rem;
}

.blocky-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #8c54fc, #a855f7);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(140, 84, 252, 0.3);
}

.blocky-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.blocky-link-btn:hover::before {
    left: 100%;
}

.blocky-link-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(140, 84, 252, 0.5);
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.blocky-link-btn:hover .btn-icon {
    transform: rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.btn-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.btn-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blocky-link-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Exclusive Access */
.exclusive-access {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: crownGlow 3s ease-in-out infinite;
}

@keyframes crownGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
    }
}

.access-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
}

.access-description {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.selection-criteria h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--cashin-primary);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(124, 177, 78, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(124, 177, 78, 0.2);
}

.criteria-item i {
    color: var(--cashin-primary);
    font-size: 1.3rem;
}

.waiting-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.waiting-list h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--cashin-primary);
}

.waiting-list p {
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid rgba(124, 177, 78, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--cashin-primary);
    box-shadow: 0 0 20px rgba(124, 177, 78, 0.3);
}

.email-input::placeholder {
    color: #aaa;
}

.request-access-btn {
    background: var(--bg-gradient);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: fit-content;
}

.request-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(124, 177, 78, 0.5);
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #aaa;
    font-size: 0.9rem;
}

/* Future Vision */
.future-vision {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d4a2d 100%);
    color: white;
    text-align: center;
}

.vision-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-description {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.coming-soon h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
}

.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-preview {
    background: rgba(124, 177, 78, 0.05);
    border: 1px solid rgba(124, 177, 78, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.feature-preview:hover {
    transform: translateY(-10px);
    border-color: var(--cashin-primary);
    box-shadow: 0 20px 40px rgba(124, 177, 78, 0.3);
}

.feature-preview .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-preview h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-preview p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer CashIn */
.footer-cashin {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.cashin-logo-footer {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.cash-footer { color: white; }
.in-footer { color: var(--cashin-primary); }

.powered-by {
    margin-top: 1rem;
    color: #aaa;
}

.wmc-link {
    color: #0032FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wmc-link:hover {
    color: #0052ff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--cashin-primary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badges .badge {
    background: rgba(124, 177, 78, 0.2);
    border: 1px solid rgba(124, 177, 78, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--cashin-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .magic-flow {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        display: none;
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .integration-visual {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cashin-logo {
        flex-direction: column;
        gap: 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .early-access-badge {
        padding: 8px 16px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

/* CashIn Double Benefit Section */
.cashin-double-benefit {
    background: linear-gradient(135deg, #e8f5e8 0%, #f6fff6 100%);
    padding: 5rem 0 4rem 0;
    color: var(--cashin-dark);
    position: relative;
    z-index: 2;
}

.double-benefit-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.double-benefit-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cashin-primary);
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.double-benefit-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-side {
    background: white;
    border: 2px solid var(--cashin-primary);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(124, 177, 78, 0.08);
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 400px;
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.benefit-side:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(124, 177, 78, 0.18);
    border-color: #8c54fc;
}

.benefit-icon {
    font-size: 2.8rem;
    color: var(--cashin-primary);
    margin-bottom: 1.2rem;
    background: rgba(124, 177, 78, 0.08);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(124, 177, 78, 0.08);
}

.benefit-side h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cashin-dark);
}

.benefit-side p {
    font-size: 1.1rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.benefit-buyer .benefit-icon {
    color: #8c54fc;
    background: rgba(140, 84, 252, 0.08);
    box-shadow: 0 0 0 4px rgba(140, 84, 252, 0.08);
}

.benefit-seller .benefit-icon {
    color: var(--cashin-primary);
    background: rgba(124, 177, 78, 0.12);
    box-shadow: 0 0 0 4px rgba(124, 177, 78, 0.12);
}

.double-benefit-note {
    margin-top: 1.5rem;
    color: #388e3c;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.double-benefit-note i {
    color: #8c54fc;
    font-size: 1.3rem;
    animation: benefitBolt 1.5s infinite alternate;
}

@keyframes benefitBolt {
    0% { transform: rotate(-10deg) scale(1); opacity: 0.7; }
    100% { transform: rotate(10deg) scale(1.2); opacity: 1; }
}

@media (max-width: 900px) {
    .double-benefit-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .benefit-side {
        max-width: 100%;
    }
} 