/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1d4ed8;
    --secondary-color: #1d4ed8;
    --accent-color: #1d4ed8;
    --text-color: #142A43;
    --light-text: #64748b;
    --background: #fff;
    --light-background: #f3f4f6;
    --background-color: #f8fafc;
    --border-color: #e2e8f0;
    
    /* Typography System */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 3.75rem;   /* 60px */
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    --line-height-tight: 1.2;
    --line-height-snug: 1.3;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.5;
    
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.025em;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-normal);
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 70px;
    background-color: var(--background-color);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: var(--letter-spacing-tight);
}

h1 {
    font-size: var(--font-size-6xl) !important;
    margin-bottom: 1.2rem !important;
    color: var(--text-color) !important;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
}

h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);
}

/* Buttons */
.cta-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: cta-slide-in 0.8s 0.3s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes cta-slide-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--text-color);
    padding: 0.7rem 0 4rem 0;
    padding-top: 3rem !important;
    text-align: left;
    position: relative;
    margin: 0;
    overflow: hidden;
    min-height: 70vh;
}
.hero::before {
    display: none !important;
}
.hero h1,
.hero-text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.hero h1 {
    font-size: 2.4rem !important;
    margin-bottom: 0.7rem !important;
    color: var(--text-color) !important;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}
.hero-text {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: var(--line-height-normal);
    font-weight: 300;
}
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-direction: row;
}
.hero-left {
    flex: 1;
    min-width: 260px;
}
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero-image-frame {
    padding: 0;
    position: relative;
}

/* Hero Data Card Styles */
.hero-data-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    z-index: 10;
    animation: dataCardFloat 3s ease-in-out infinite;
}

.payment-received-card {
    top: 40%;
    right: -60px;
}

.members-paid-card {
    top: 70%;
    right: -50px;
}

.data-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    color: white;
    flex-shrink: 0;
}

.data-card-content {
    flex: 1;
    min-width: 0;
}

.data-card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.data-card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #142A43;
    line-height: 1.2;
}

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

@media (max-width: 768px) {
    .hero-data-card {
        min-width: 110px;
        padding: 0.5rem;
        gap: 0.3rem;
    }
    
    .payment-received-card {
        top: 35%;
        right: -10px;
    }
    
    .members-paid-card {
        top: 65%;
        right: -5px;
    }
    
    .data-card-icon {
        width: 28px;
        height: 28px;
    }
    
    .data-card-label {
        font-size: 0.65rem;
    }
    
    .data-card-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-data-card {
        min-width: 90px;
        padding: 0.4rem;
        gap: 0.25rem;
    }
    
    .payment-received-card {
        top: 30%;
        right: -5px;
    }
    
    .members-paid-card {
        top: 55%;
        right: -2px;
    }
    
    .data-card-icon {
        width: 20px;
        height: 20px;
    }
    
    .data-card-label {
        font-size: 0.55rem;
    }
    
    .data-card-value {
        font-size: 0.75rem;
    }

    .hero-image-frame {
        max-width: 250px;
    }

    .hero {
        padding: 2rem 0 3rem 0;
        min-height: auto;
    }

    .hero-flex {
        gap: 1.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        max-width: 260px;
    }
}

.hero-image-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    aspect-ratio: 1/1;
}
.hero-image-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    max-width: 400px;
    display: block;
    opacity: 0;
    animation: hero-fade-in 1.1s 0.2s cubic-bezier(.4,0,.2,1) forwards, hero-float 6s ease-in-out infinite alternate;
}
.hero-image-frame img.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@media (pointer: fine) {
    .hero-image-frame img {
        will-change: transform;
    }
}
@keyframes hero-fade-in {
    to { opacity: 1; }
}
@keyframes hero-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(20px); }
    100% { transform: translateY(0); }
}

/* Feature Sections */
.feature {
    padding: 4rem 0;
    background: white;
}

.feature:nth-child(even) {
    background: var(--light-background);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-text {
    flex: 1;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.mockup {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: float-rotate 5s ease-in-out infinite, pulse 3s ease-in-out infinite;
    transition: filter 0.3s, transform 0.3s;
}

@keyframes float-rotate {
    0% { transform: translateY(0) rotate(-2deg) scale(1); }
    25% { transform: translateY(-8px) rotate(1deg) scale(1.01); }
    50% { transform: translateY(-14px) rotate(2deg) scale(1.02); }
    75% { transform: translateY(-8px) rotate(1deg) scale(1.01); }
    100% { transform: translateY(0) rotate(-2deg) scale(1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

.mockup:hover {
    filter: drop-shadow(0 8px 24px #FF6B00aa);
    transform: scale(1.04) rotate(0deg);
}

/* SVG Orange Button Shimmer */
.mockup [fill="#FF6B00"] {
    filter: url(#shimmer);
}

/* Responsive adjustment for mockups */
@media (max-width: 600px) {
    .mockup {
        max-width: 100%;
        height: auto;
    }
}

/* Trust Elements */
.trust-elements {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
}

.trust-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    color: #60a5fa;
    stroke: #60a5fa;
    fill: none;
}

.trust-item:hover {
    transform: none;
}

.trust-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    font-family: var(--font-family);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.trust-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.4;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 3rem 0;
    background: transparent;
    position: relative;
    color: var(--text-color);
}

.cta .container {
    background: #1e293b;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: calc(100% - 2rem);
    margin: 0 1rem;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.15);
}

.cta h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.cta p {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.cta::before {
    display: none;
}

/* Desktop styles for CTA */
@media (min-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
    
    .cta .container {
        max-width: 700px;
        margin: 0 auto;
        padding: 3.5rem 3rem;
        border-radius: 20px;
    }
    
    .cta h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .cta p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.7rem !important;
    }

    .hero h1 {
        font-size: 2.7rem !important;
        text-align: center !important;
    }

    .hero-text {
        font-size: 1.2rem !important;
        text-align: center !important;
    }

    .hero {
        padding: 3rem 0 4rem 0;
        min-height: 70vh;
    }

    .hero-flex {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        order: 1;
        flex: none;
        width: 100%;
    }

    .hero-right {
        order: 2;
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .hero-image-frame {
        max-width: 300px;
        margin: 0 auto;
        position: relative;
    }

    h2 {
        font-size: var(--font-size-3xl);
    }

    .feature-content {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-reverse .feature-content {
        flex-direction: column-reverse;
    }

    .trust-elements {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 10px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

}

/* Micro-interactions */
.cta-button:active {
    transform: translateY(2px);
}

/* How It Works Section */
.how-it-works {
    position: relative;
}

.how-it-works h2 {
    text-align: center;
}

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

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    font-family: var(--font-family);
}

.step-card h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
}

.step-card.redesigned {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #F3F4F6;
    padding: 2.2rem 1.5rem 2.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 320px;
    margin: 0 auto;
    transition: transform 0.2s;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.step-card.redesigned:hover {
    transform: translateY(-4px) scale(1.03);
}
.step-card.redesigned.step-card-animate {
    opacity: 1;
    transform: translateY(0);
}
.step-icon {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}
.step-icon svg {
    width: 40px;
    height: 40px;
    display: block;
    stroke: #1d4ed8;
    stroke-width: 2.2;
    fill: none;
    background: none;
}
.step-icon svg .accent {
    stroke: #6b7280;
    fill: #6b7280;
}
.step-card.redesigned h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: #142A43;
    margin-bottom: 0.7rem;
    text-align: center;
    font-family: var(--font-family);
    line-height: var(--line-height-tight);
}
.step-card.redesigned p {
    color: #64748b;
    font-size: var(--font-size-base);
    text-align: center;
    margin-bottom: 0;
    font-family: var(--font-family);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
}

/* Staggered Animation */
.steps-grid .step-card.redesigned.step-card-animate:nth-child(1) { transition-delay: 0.1s; }
.steps-grid .step-card.redesigned.step-card-animate:nth-child(2) { transition-delay: 0.25s; }
.steps-grid .step-card.redesigned.step-card-animate:nth-child(3) { transition-delay: 0.4s; }
.steps-grid .step-card.redesigned.step-card-animate:nth-child(4) { transition-delay: 0.55s; }

@media (max-width: 900px) {
    .how-it-works {
        margin-top: 0;
    }
    .steps-grid {
        flex-wrap: nowrap;
    }
    .step-card.redesigned {
        min-width: 220px;
        max-width: 90vw;
        padding: 1.5rem 1rem;
    }
    .step-icon {
        width: 48px;
        height: 48px;
    }
}
    .how-it-works {
        padding: 2rem 0;
    }
    
    .how-it-works h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: 1.5rem;
    }

    .step-card.redesigned {
        padding: 1.5rem;
        min-width: auto;
}

    .step-card.redesigned h3 {
        font-size: var(--font-size-lg);
}

    .step-card.redesigned p {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-normal);
        color: #6B7280;
}

    .step-icon {
        width: 40px;
        height: 40px;
    margin-bottom: 0.8rem;
}

    .step-icon svg {
        width: 32px;
        height: 32px;
}

    .steps-grid {
    gap: 1rem;
        padding: 0 0.5rem;
}
@media (max-width: 480px) {
    .how-it-works h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 100;
    /* Hide by default to prevent flash */
    visibility: hidden;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    text-decoration: none;
    color: var(--text-color);
}

.logo-wordmark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.5px;
    font-family: inherit;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 200;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.menu-icon-svg {
    width: 28px;
    height: 28px;
    display: block;
    transition: transform 0.3s;
}

.menu-toggle .icon-x {
    display: none;
}

.menu-toggle.active .icon-hamburger {
    display: none;
}

.menu-toggle.active .icon-x {
    display: block;
}

@media (max-width: 700px) {
    .menu-toggle {
        display: flex;
    }
}

.navbar.nav-hidden { 
    visibility: hidden; 
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-login {
    color: var(--text-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: color 0.3s ease;
    margin-right: 1rem;
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
    opacity: 0.9;
}

/* User Menu Styles */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.user-menu-toggle:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.user-menu-toggle svg {
    color: #64748b;
    }

.user-name {
    font-weight: 500;
    color: var(--text-color);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.user-menu-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    top: 100%;
        right: 0;
    margin-top: 0.5rem;
        background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
        opacity: 0;
        visibility: hidden;
    transform: translateY(-10px);
        transition: all 0.3s ease;
    z-index: 1000;
    }

.user-menu-dropdown.active {
        opacity: 1;
        visibility: visible;
    transform: translateY(0);
    }

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    }

.menu-item:hover {
    background: #f8fafc;
    color: var(--primary-color);
}

.menu-item svg {
    color: #64748b;
    flex-shrink: 0;
}

.menu-item:hover svg {
    color: var(--primary-color);
}

.menu-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.5rem 0;
    }

.logout-btn {
    color: #dc2626 !important;
}

.logout-btn:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

.logout-btn svg {
    color: #dc2626 !important;
}

.logout-btn:hover svg {
    color: #dc2626 !important;
}

/* Features Grid */
.features-grid {
    padding: 4rem 0;
    background: #f8fafc;
}

.features-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1f2937;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    font-family: var(--font-family);
    line-height: var(--line-height-tight);
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: var(--font-weight-bold);
}

/* Feature Details */
.feature-details {
    padding: 4rem 0;
    background: white;
}

.detail-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.detail-card h2 {
    color: #1f2937;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.detail-card p {
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit {
    text-align: left;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.benefit h4 {
    color: #1f2937;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #4b5563;
    font-size: 0.875rem;
    margin: 0;
}

/* Active Navigation Link */
.nav-links a.active {
    color: #2563eb;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid .container {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: 0 1rem;
    }
}
/* Utilities */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin: -0.75rem 0 0 -0.75rem;
    border: 2px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.toast.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    animation: fadeIn 0.3s ease-out;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background: rgba(66, 153, 225, 0.1);
    color: #3182ce;
}

.badge-success {
    background: rgba(72, 187, 120, 0.1);
    color: #38a169;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.badge-danger {
    background: rgba(245, 101, 101, 0.1);
    color: #e53e3e;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    font-weight: 600;
    color: var(--text-color);
    background: #f8fafc;
}

.table tr:hover {
    background: #f8fafc;
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Flex */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }

/* Typography */
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.text-light { color: var(--light-text); }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

/* Borders */
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Transitions */
.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Hover Effects */
.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:opacity-75:hover {
    opacity: 0.75;
}

/* Focus States */
.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Active States */
.active\:scale-95:active {
    transform: scale(0.95);
}

/* Disabled States */
.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }

    body {
        background: white;
    }

    .card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}

.steps-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1rem;
    padding: 0 1rem 1.5rem 1rem;
    scroll-snap-type: x mandatory;
}
.steps-scroll::-webkit-scrollbar {
    display: none;
}

@media (max-width: 900px) {
    .steps-grid {
        display: flex;
        gap: 1.2rem;
        min-width: 600px;
        width: max-content;
    }
    .step-card {
        flex: 0 0 80vw;
        max-width: 340px;
        min-width: 260px;
        scroll-snap-align: start;
    }
}

.text-orange {
    color: #FF6B00;
}

.two-col-text {
    background: #fafafa;
    padding: 2.5rem 0;
}

.two-col-flex {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.two-col-left, .two-col-right {
    flex: 1;
    min-width: 260px;
    transition: background-color 0.3s ease;
    border-radius: 12px;
    padding: 20px;
}

.two-col-left:hover {
    background-color: #dbeafe; /* More prominent light sky blue background on hover */
}

.two-col-left h2, .two-col-right h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #142A43;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}
@media (max-width: 700px) {
    .two-col-left h2, .two-col-right h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
}
}

.two-col-left p, .two-col-right p {
    font-size: 1.08rem;
    color: #64748b;
    line-height: var(--line-height-relaxed);
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .two-col-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .two-col-left, .two-col-right {
        min-width: 0;
    }
    .two-col-left p, .two-col-right p {
        font-size: 0.98rem;
        margin-bottom: 0.7rem;
    }
    .two-col-text {
        padding: 2rem 0;
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 1.1rem;
    padding-left: 0.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.tick-icon svg {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.1em;
}

@media (max-width: 700px) {
    .feature-list li {
        font-size: 0.9rem;
        gap: 0.3rem;
        margin-bottom: 0.3rem;
    }
    .tick-icon {
        width: 14px;
        height: 14px;
    }
    .tick-icon svg {
        width: 12px;
        height: 12px;
    }
}

/* Two Column Stats Section */
.two-col-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
    padding: 0.4rem 0.6rem;
    min-width: 0;
    margin-bottom: 0.2rem;
}

.stat-icon {
    width: 28px;
    height: 28px;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-text {
    font-size: 0.98rem;
    line-height: var(--line-height-tight);
}

@media (max-width: 700px) {
    .two-col-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    .stat-item {
        padding: 0.3rem 0.4rem;
        gap: 0.4rem;
    }
    .stat-icon {
        width: 20px;
        height: 20px;
    }
    .stat-icon svg {
        width: 14px;
        height: 14px;
    }
    .stat-text {
        font-size: 0.9rem;
    }
}

/* Compact Stats Section for Two-Column Right */
.compact-stats {
  margin-top: 0;
  padding: 0;
}

.compact-stats h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #142A43;
}

.compact-subtitle {
  font-size: 1.08rem;
  color: #64748b;
  margin-bottom: 0.7rem;
}

.compact-stats-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}

.compact-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 1rem 1.2rem;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: none;
}

.compact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

@media (max-width: 700px) {
  .compact-stats-row {
    gap: 0.3rem;
  }
  .compact-stat {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}

.compact-dot {
  color: #d1d5db;
  font-size: 1.2rem;
  line-height: var(--line-height-tight);
  margin: 0 0.15rem;
}

.compact-text {
  color: #142A43;
  font-weight: 500;
  font-size: 0.98rem;
}

@media (max-width: 700px) {
  .compact-stats h2 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }
  .compact-subtitle {
    font-size: 0.98rem;
    margin-bottom: 0.6rem;
  }
  .compact-stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    font-size: 0.9rem;
  }
  .compact-text {
    font-size: 0.9rem;
  }
  .compact-dot {
    display: none;
  }
}

/* --- Uniform Section Spacing --- */
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 700px) {
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* --- Uniform Section Headings --- */
section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #142A43;
  letter-spacing: -0.01em;
}
@media (max-width: 700px) {
  section h2 {
    font-size: 1.3rem;
  }
}

/* --- Uniform Paragraphs --- */
section p {
  font-size: 1.08rem;
  margin-bottom: 1rem;
  color: #64748b;
  line-height: var(--line-height-normal);
}
@media (max-width: 700px) {
  section p {
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
  }
}

/* --- Remove extra margin between stacked sections on mobile --- */
section + section {
  margin-top: 0;
}

/* Hero Section Modernization */
/* Removed hero background blobs */

/* --- Mobile Responsiveness for How SubJara Works Section --- */
@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step-card {
    padding: 1.2rem;
  }
  .step-icon {
    margin-bottom: 0.8rem;
  }
  .step-icon svg {
    width: 32px;
    height: 32px;
  }
  .step-card h3 {
    font-size: 1.1rem;
  }
  .step-card p {
    font-size: 0.9rem;
  }
}

/* Comparison Section Styles */
.comparison {
    background: #fafaf9;
    position: relative;
    overflow: hidden;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.comparison-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-card.old-way {
    border: 1px solid #fecaca;
    background: #fef2f2;
}

.comparison-card.subjara-way {
    border: 1px solid #dbeafe;
    background: #f0f9ff;
}

.comparison-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.old-way .comparison-icon {
    background: #fee2e2;
    color: #dc2626;
}

.subjara-way .comparison-icon {
    background: #dbeafe;
    color: #2563eb;
}

.comparison-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #142A43;
    line-height: var(--line-height-snug);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    line-height: var(--line-height-snug);
}

.comparison-item:last-child {
    border-bottom: none;
}

.item-icon {
    font-size: 0.9rem;
    min-width: 16px;
    text-align: center;
    margin-top: 1px;
}

.item-text {
    color: var(--text-color);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    line-height: var(--line-height-normal);
    margin: 0;
}

/* Animation for comparison items */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays for items */
.comparison-item:nth-child(1) { animation-delay: 0.1s; }
.comparison-item:nth-child(2) { animation-delay: 0.2s; }
.comparison-item:nth-child(3) { animation-delay: 0.3s; }
.comparison-item:nth-child(4) { animation-delay: 0.4s; }
.comparison-item:nth-child(5) { animation-delay: 0.5s; }
.comparison-item:nth-child(6) { animation-delay: 0.6s; }

/* Desktop styles */
@media (min-width: 768px) {
    .comparison {
        padding: 4rem 0;
    }

    .comparison-grid {
        gap: 2rem;
    }

    .comparison-card {
        padding: 2.5rem;
    }

    .comparison-card h3 {
        font-size: var(--font-size-2xl);
    }

    .item-text {
        line-height: var(--line-height-normal);
    }

    .comparison-icon {
        width: 48px;
        height: 48px;
    }
}

/* Tab Navigation Styles - Cleaned Up */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  border: none;
  margin-bottom: 2rem;
}

.tab-button {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-family);
  color: #94a3b8;
  padding: 0.5rem 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  margin: 0;
  line-height: var(--line-height-normal);
}

.tab-button:hover {
  color: #64748b;
}

.tab-button.active {
  color: #142A43;
  border-bottom: 2px solid #FF6B00;
  font-weight: 600;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

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

/* Mobile refinement for tab navigation */
@media (max-width: 700px) {
  .tab-navigation {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .tab-button {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    }
}

@media (max-width: 480px) {
  .tab-navigation {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .tab-button {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
}

/* Hero Signup Form */
.hero-signup-form {
    margin-top: 2.5rem;
}

.email-input-group {
    display: flex;
    gap: 0;
    max-width: 500px;
    background: white;
    border-radius: 25px;
    padding: 0.4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.email-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-family: var(--font-family);
    background: white;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #9ca3af;
}

.email-input:focus {
    outline: none;
}

.get-started-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.get-started-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.get-started-btn:active {
    transform: translateY(0);
    }

.free-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-family: var(--font-family);
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.025em;
}

/* Mobile responsive for hero signup form */
@media (max-width: 768px) {
    .email-input-group {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 100%;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
    
    .email-input {
        padding: 1rem 1.2rem;
        font-size: var(--font-size-base);
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .get-started-btn {
        padding: 1rem 1.5rem;
        font-size: var(--font-size-base);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* Inline style replacements from index.html */
.comparison-bg-dark {
  background: #fafaf9 !important;
}

.security-trust-bg {
  background: #f8fafc !important;
}

.security-feature-card {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  background: white;
        padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }

.section-padding-bottom {
  padding-bottom: 2.5rem !important;
}

.footer-legal-flex {
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.footer-paystack-badge {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.security-feature-title {
  color: #142A43;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
    }

.security-feature-desc {
  color: #64748b;
        font-size: 0.95rem;
  line-height: var(--line-height-normal);
    }

.security-feature-icon {
  margin-bottom: 1rem;
}

/* Additional classes for inline style replacements */
.comparison-header-title {
  color: #142A43 !important;
}

.comparison-header-subtitle {
  color: #64748b !important;
}

.security-features-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.two-col-orange-title {
  color: #FF6B00 !important;
}

/* Animation classes */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Section animations */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card animations */
.card-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text animations */
.text-animate {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.text-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button animations */
.button-animate {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.button-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.two-col-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}

.two-col-animate.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeSlideUp 0.7s cubic-bezier(.4,0,.2,1) forwards;
}

.feature-list li, .compact-stat {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}

.feature-list li.visible, .compact-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Split Section Styles */
.split-section {
  padding: 3rem 0;
  background: #142A43;
}

.split-section-wrapper {
  position: static;
}

.split-title-block {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  z-index: auto;
  text-align: center;
  width: 100%;
  pointer-events: auto;
  margin-bottom: 2.2rem;
}

.split-title-block .split-headline,
.split-title-block .rotating-subline {
  pointer-events: auto;
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 0;
}

@media (max-width: 900px) {
  .split-title-block {
        margin-bottom: 1.2rem;
    }
  .split-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .split-title-block .split-headline {
    font-size: 1.4rem;
  }
  .split-title-block .rotating-subline {
    height: 2rem;
  }
}

.split-title-block .rotating-subline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-align: center;
  height: 2.5rem;
  margin-bottom: 0;
  width: 100%;
  max-width: 100vw;
}

.rotating-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 20px);
  opacity: 0;
  transition: all 0.5s ease;
  white-space: nowrap;
}

.rotating-text.active {
  opacity: 1;
  transform: translate(-50%, 0);
}

.split-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  line-height: var(--line-height-normal);
}

.split-highlight {
  font-size: 0.78rem;
  font-weight: 600;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.visual-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visual-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.1);
}

.visual-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #142A43;
  margin-bottom: 0.25rem;
}

.visual-card p {
  color: var(--light-text);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .split-section {
    padding: 2rem 0;
  }
  
  .split-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .split-headline {
    font-size: 1.75rem;
  }
  
  .rotating-subline {
    height: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .rotating-text {
    font-size: 1.4rem;
  }
  
  .split-description {
    font-size: 1rem;
  }
  
  .split-highlight {
    font-size: 0.78rem;
  }
  
  .split-visual {
    gap: 0.75rem;
  }
  
  .visual-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .split-headline {
    font-size: 1.5rem;
  }
  
  .rotating-text {
    font-size: 1rem;
  }
  
  .split-description {
    font-size: 0.95rem;
  }
}

.split-image-frame {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1.2rem auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20,42,67,0.10);
  position: relative;
  height: 300px;
  animation: imageFloat 6s ease-in-out infinite;
}

.split-image-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.split-image-frame:hover img {
  transform: scale(1.02);
}

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

@media (max-width: 768px) {
  .split-image-frame {
    max-width: 280px;
    margin-bottom: 1rem;
    height: 200px;
  }
  
  .split-image-frame img {
    height: 400px;
  }
}

.split-title-block .split-headline {
  margin-bottom: 0.2rem;
  color: white;
}

.split-title-block .rotating-subline {
  margin-top: 0;
  margin-bottom: 0;
}

.typing-cursor {
  display: inline-block;
  color: #FF6B00;
  font-size: 1.75rem;
  font-weight: 700;
  margin-left: 2px;
  animation: blink 1s steps(2, start) infinite;
  vertical-align: baseline;
}

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

#typing-text {
  font-size: 1.75rem;
  font-weight: 400;
  color: #FF6B00;
}

@media (max-width: 768px) {
  #typing-text, .typing-cursor { 
    font-size: 1.4rem; 
  }
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-login {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .menu-toggle.active .menu-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-toggle.active .menu-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .menu-toggle.active .menu-icon {
        transform: scale(0);
    }

    /* Mobile User Menu Styles */
    .user-menu {
        width: 100%;
        margin-top: 1rem;
        justify-content: flex-end;
    }

    .user-menu-toggle {
        width: auto;
        min-width: 44px;
        justify-content: flex-start;
        padding: 0.75rem 1.2rem;
        border: 1px solid #e2e8f0;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(20,42,67,0.07);
        font-size: 1.1rem;
    }
    .user-menu-dropdown {
        position: absolute;
        top: 110%;
        right: 0;
        left: auto;
        min-width: 180px;
        width: max-content;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(20,42,67,0.13);
        margin-top: 0.5rem;
        z-index: 1002;
        padding: 0.5rem 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    .user-menu-dropdown.active {
        display: block;
    }
    .menu-item {
        padding: 1rem 1.5rem;
        font-size: 1.08rem;
        border-radius: 6px;
    }
    .menu-item + .menu-item {
        margin-top: 2px;
    }
    .menu-divider {
        margin: 0.5rem 0;
    }
}

/* User Menu Styles */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

/* MVP Footer Styles */
.footer-mvp {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 2.5rem 0 1.5rem 0;
  font-size: 1rem;
  color: #142A43;
}
.footer-mvp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.footer-mvp-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-mvp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-mvp-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-mvp-menu a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer-mvp-menu a:hover {
  color: #1d4ed8;
}
.footer-mvp-bottom {
  margin-top: 1.5rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 400;
}
@media (max-width: 700px) {
  .footer-mvp {
    padding: 2rem 0 1.2rem 0;
  }
  
  .footer-mvp-container {
    padding: 0 1rem;
  }
  
  .footer-mvp-main {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-mvp-menu {
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-mvp-menu a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }
  
  .footer-mvp-social {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .footer-mvp-logo {
    margin-bottom: 0;
  }
  
  .footer-mvp-bottom {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .footer-mvp {
    padding: 1.8rem 0 1rem 0;
  }
  
  .footer-mvp-main {
    gap: 1.2rem;
  }
  
  .footer-mvp-menu {
    gap: 1rem;
  }
  
  .footer-mvp-menu a {
    font-size: 0.85rem;
  }
  
  .footer-mvp-bottom {
    font-size: 0.8rem;
    margin-top: 1.2rem;
  }
}
.footer-mvp-social {
  display: flex;
  gap: 0.8rem;
  margin-left: 0.5rem;
}
.footer-mvp-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f8fafc;
  color: #64748b;
  transition: all 0.2s;
}
.footer-mvp-social a:hover {
  background: #1d4ed8;
  color: white;
  transform: translateY(-1px);
}

/* Unified Tab Section Header Styles */
.tab-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.tab-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #142A43;
  margin-bottom: 0.75rem;
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
}

.tab-section-subtitle {
  font-size: 1.08rem;
  color: #64748b;
  line-height: var(--line-height-normal);
  margin: 0;
  font-weight: var(--font-weight-normal);
}

@media (max-width: 700px) {
  .tab-section-header {
    margin-bottom: 1.5rem;
  }
  
  .tab-section-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .tab-section-subtitle {
    font-size: 0.98rem;
  }
}

/* Tab Panel Section Spacing Fix */
.tab-panel section {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.tab-panel section.how-it-works {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.tab-panel section.comparison {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.tab-panel section.security-trust {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

@media (max-width: 900px) {
  .tab-panel section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .tab-panel section.how-it-works {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .tab-panel section.comparison {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .tab-panel section.security-trust {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    }
} 

/* Two Column Features Section - Remove top padding */
.two-col-features {
  padding-top: 0 !important;
}

/* --- Uniform Section Spacing --- */

/* Explore SubJara Section */
.explore-subjara {
  background: #fff;
  padding: 3rem 0 3.5rem 0;
  text-align: center;
}

.explore-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.explore-title {
  font-size: 2rem;
  font-weight: 700;
  color: #142A43;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.explore-subtitle {
  font-size: 1.08rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.explore-gif-wrapper {
  width: 100%;
  max-width: 340px;
  margin-bottom: 2.2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20,42,67,0.10);
  background: #f8fafc;
}

.explore-gif {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.explore-cta {
  background: #2563eb;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.6rem;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.10);
  transition: background 0.2s, transform 0.2s;
}
.explore-cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 600px) {
  .explore-subjara {
    padding: 2.5rem 0 3rem 0;
  }
  
  .explore-container {
    padding: 0 1rem;
  }
  
  .explore-title { 
    font-size: 1.4rem; 
    margin-bottom: 0.6rem;
  }
  
  .explore-subtitle { 
    font-size: 0.95rem; 
    margin-bottom: 1.8rem;
    line-height: 1.5;
  }
  
  .explore-gif-wrapper { 
    max-width: 100%; 
    margin-bottom: 2rem;
  }
  
  .explore-cta { 
    font-size: 0.85rem; 
    padding: 0.6rem 1rem; 
    margin-top: 0.3rem;
  }
  
  .explore-cta-label {
    font-size: 0.88rem;
    margin-right: 0.3em;
  }
} 

/* Explore SubJara Split Layout */
.explore-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.explore-text {
  flex: 1;
  min-width: 220px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.explore-gif-wrapper {
  flex: 1;
  max-width: 340px;
  min-width: 180px;
  margin-bottom: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20,42,67,0.10);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-gif {
  width: 100%;
  display: block;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .explore-split {
    flex-direction: column;
    gap: 2rem;
    max-width: 480px;
    padding: 0 1.2rem;
  }
  .explore-text {
    text-align: center;
    align-items: center;
  }
  .explore-gif-wrapper {
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .explore-split {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .explore-text {
    gap: 0.5rem;
  }
} 

/* Group Name Header Style */
.group-name {
  color: #fff !important;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-family: var(--font-family);
}

@media (min-width: 700px) {
  .group-name {
    font-size: 1.875rem;
  }
}

.explore-cta-label {
  font-size: 0.97rem;
  color: #142A43;
  font-weight: 500;
  margin-right: 0.5em;
  display: inline-block;
}

@media (max-width: 600px) {
  .explore-cta-label {
    font-size: 0.91rem;
    margin-right: 0.4em;
  }
}

/* Modern Progressive Signup Form Styles */
.signup-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--background-color);
    padding-top: 0;
    margin-top: -70px;
}

.signup-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
}

.signup-form-wrapper {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(20, 42, 67, 0.06);
    overflow: hidden;
    position: relative;
}

.signup-form-wrapper::before {
    display: none;
}

.signup-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.signup-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.signup-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.signup-form {
    padding: 1.5rem;
}

.form-step {
    display: none;
    animation: fadeSlideIn 0.3s ease-out;
}

.form-step.active {
    display: block;
}

.form-step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 0.375rem;
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-family);
    color: var(--text-color);
    background: #f8fafc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.form-error {
    color: #ef4444;
    font-size: 0.625rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
}

/* Forgot Password Link */
.forgot-password-link {
    text-align: right;
    margin: -0.5rem 0 1.5rem;
}

.forgot-password-link a {
    color: #1d4ed8;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password-link a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #64748b;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.password-toggle:hover {
    color: #374151;
    background-color: rgba(0, 0, 0, 0.05);
}

.password-toggle:focus {
    outline: none;
    color: #374151;
    background-color: rgba(0, 0, 0, 0.1);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    transition: opacity 0.2s ease;
}

.password-toggle .eye-off-icon {
    opacity: 0;
}

.password-toggle.showing .eye-icon {
    opacity: 0;
}

.password-toggle.showing .eye-off-icon {
    opacity: 1;
}

.signup-button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1d4ed8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.signup-button:hover {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.signup-button:active {
    transform: translateY(0);
}

.signup-button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.signup-button .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

.signup-button.loading .spinner {
    display: block;
}

.signup-button.loading span {
    display: none;
}

.progress-bar {
    position: relative;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 50%;
    box-shadow: 0 1px 3px rgba(29, 78, 216, 0.3);
}

.signup-footer {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.signup-footer-text {
    color: var(--light-text);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.signup-footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signup-footer-link:hover {
    color: #1d4ed8;
}

.legal-text {
    color: var(--light-text);
    font-size: 0.625rem;
    line-height: 1.3;
    margin-top: 0.75rem;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .signup-container {
        margin-top: -70px;
    }
    
    .signup-content {
        padding: 1rem 0.5rem;
    }
    
    .signup-form-wrapper {
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(20, 42, 67, 0.08);
    }
    
    .signup-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .signup-title {
        font-size: 1.5rem;
    }
    
    .signup-subtitle {
        font-size: 0.8rem;
    }
    
    .signup-form {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-step-title {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    .form-input {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .signup-button {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .signup-container {
        margin-top: -70px;
    }
    
    .signup-content {
        padding: 0.75rem 0.25rem;
    }
    
    .signup-form-wrapper {
        border-radius: 10px;
        max-width: 100%;
    }
    
    .signup-header {
        padding: 0.875rem 0.75rem 0.5rem;
    }
    
    .signup-form {
        padding: 0.875rem;
    }
    
    .form-input {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .signup-button {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .signup-footer {
        padding: 0.75rem 0.875rem 1rem;
    }
}

/* Remove old auth styles */
.auth-container,
.auth-header,
.auth-button,
.auth-footer,
.auth-footer-container,
.legal-disclaimer {
    display: none;
}

@media (min-width: 769px) {
    .hero h1,
    .hero-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-hero {
    padding-top: 2rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hero.pricing-hero {
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: unset !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .hero.pricing-hero {
        padding-top: 2rem !important;
        padding-bottom: 0 !important;
    }
}
