


/* ====================
   REDESIGNED HERO SECTION
   ==================== */

.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 120px;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-section {
        padding: 60px 0 80px;
    }
}

/* Left Column Styles */
.hero-content-column {
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    max-width: 580px;
}

.hero-content-wrapper h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    font-weight: 800;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .hero-content-wrapper h1 {
        font-size: 2.5rem;
    }
}

.hero-highlight {
    color: #4CAF50;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.4;
}

/* CTA Buttons */
.hero-ctas-group {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-ctas-group {
        justify-content: center;
    }
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-with-icon .cta-icon {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

/* Platforms Section */
.platforms-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platforms-label {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platforms-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .platforms-tags {
        justify-content: center;
    }
}

.platform-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.platform-tag.current {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.platform-tag.coming-soon {
    opacity: 0.7;
    position: relative;
}

.soon-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    position: absolute;
    top: -8px;
    right: -8px;
}

.platform-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Right Column: Visual */
.hero-visual-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.phone-mockup-container {
    position: relative;
    width: 100%;
}

.phone-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 9/19;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 14px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 24px;
    background: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-home-button {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* App Screen Content */
.app-screen-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.app-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-logo-small {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.app-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.app-time {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

.app-dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.balance-card {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.balance-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.balance-amount {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.action {
    text-align: center;
}

.action-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.action-label {
    color: #999;
    font-size: 0.8rem;
}

.sacco-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sacco-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sacco-card.active {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.sacco-name {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.sacco-balance {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.floating-badge {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    max-width: 200px;
}

.security-badge {
    animation-delay: 0s;
}

.instant-badge {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.badge-subtitle {
    color: #666;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .floating-badges {
        position: relative;
        bottom: 0;
        margin-top: 40px;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .floating-badge {
        max-width: 280px;
        width: 100%;
    }
}


/* ====================
   END OF HERO SECTION
   ==================== */

   /* ====================
   HOMEPAGE SPECIFIC STYLES
   ==================== */

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

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

@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-highlight {
    color: #ffffff;
    border-bottom: 4px solid #4CAF50;
    padding-bottom: 5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 2rem;
    color: #4CAF50;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.9rem;
    color: #999999;
    margin-top: 5px;
    max-width: 120px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-xlarge {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-icon {
    margin-right: 10px;
}

.app-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.platform-tag {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.platform-tag.coming-soon {
    opacity: 0.7;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-badges {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.badge {
    background: white;
    color: black;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.badge-icon {
    font-size: 1.2rem;
}

/* PROBLEM SHOWCASE */
.problem-showcase {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-black);
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray-700);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: var(--color-gray-50);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--color-gray-200);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.problem-card h4 {
    color: var(--color-black);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.problem-card p {
    color: var(--color-gray-700);
    margin-bottom: 20px;
    line-height: 1.6;
}

.solution-tag {
    background: var(--color-black);
    color: white;
    padding: 12px 15px;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

/* FEATURES SHOWCASE */
.features-showcase {
    background: var(--color-gray-50);
    padding: 100px 0;
}

.feature-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.feature-intro h2 {
    margin-bottom: 20px;
    color: var(--color-black);
}

.feature-intro p {
    color: var(--color-gray-700);
    font-size: 1.1rem;
}

.feature-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid var(--color-gray-300);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-gray-700);
}

.tab-btn.active {
    background: var(--color-black);
    color: white;
    border-color: var(--color-black);
}

.tab-btn:hover:not(.active) {
    border-color: var(--color-gray-500);
}

.tab-content {
    display: none;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.tab-content.active {
    display: block;
}

.tab-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .tab-features {
        grid-template-columns: 1fr;
    }
}

.tab-feature h4 {
    color: var(--color-black);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tab-feature p {
    color: var(--color-gray-700);
    line-height: 1.6;
}

.feature-cta {
    text-align: center;
    margin-top: 40px;
}

/* SOCIAL PROOF */
.social-proof {
    padding: 100px 0;
    background: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonial {
    background: var(--color-gray-50);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 5px solid var(--color-black);
    margin-bottom: 30px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-gray-800);
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: var(--color-black);
    font-size: 1.1rem;
}

.author span {
    color: var(--color-gray-600);
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.trust-badges .badge {
    background: var(--color-gray-100);
    color: var(--color-gray-800);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid var(--color-gray-300);
}

/* CONVERSION ZONE */
.conversion-zone {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.conversion-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.conversion-subtitle {
    color: var(--color-gray-300);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.conversion-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    color: var(--color-gray-300);
    font-size: 0.9rem;
    max-width: 150px;
}

.step-arrow {
    color: #4CAF50;
    font-size: 1.5rem;
}

.conversion-cta {
    margin-top: 50px;
}

.btn-xlarge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 50px;
    background: #4CAF50;
    border: none;
    margin: 0 auto 20px;
    max-width: 400px;
}

.cta-main {
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.conversion-note {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--color-gray-400);
    font-size: 0.9rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .conversion-note {
        flex-direction: column;
        gap: 10px;
    }
}
/* ====================
   END OF HOMEPAGE SPECIFIC STYLES
   ==================== */