.auth-container {
    width: 100%;
}

/* Modern Authentication Pages Styles */

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

/* Improve text rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Satoshi font faces */
@font-face {
    font-family: "Satoshi-Black";
    src: url("https://anima-uploads.s3.amazonaws.com/projects/643cb44a04966504b3e272b3/fonts/satoshi-black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Bold";
    src: url("https://anima-uploads.s3.amazonaws.com/projects/62fe21e7f2f27787f05ba142/fonts/satoshi-variable.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Medium";
    src: url("https://anima-uploads.s3.amazonaws.com/projects/65d49461d770a38dd0652f74/fonts/satoshi-medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Regular";
    src: url("https://anima-uploads.s3.amazonaws.com/projects/63d2c7e0303c5178f866c8eb/fonts/satoshi-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #357AFF;
    outline-offset: 2px;
}

body {
    font-family: 'Satoshi-Regular', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

body.main_section {
    display: block;
    align-items: initial;
    justify-content: initial;
    flex-direction: initial;
    padding: 0;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 252px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: flex-start;
    gap: 56px;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 252px;
}

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

.logo-text {
    font-family: 'Satoshi-Regular', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-family: 'Satoshi-Regular', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 10px 0;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-link.active {
    color: #357AFF;
    font-weight: 600;
}

.nav-link:hover {
    color: #357AFF;
}

/* Mobile Toggle - hidden by default on desktop */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    height: 3px;
    width: 25px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Satoshi-Regular', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-width: auto;
    height: auto;
    line-height: normal;
}

.nav-actions .btn {
    padding: 8px 24px;
    font-size: 15px;
    height: auto;
    min-width: auto;
    font-weight: 600;
}

.btn-primary {
    background: #357AFF;
    color: #F9F9F9;
    border-color: #357AFF;
}

.btn-primary:hover {
    background: #2c6bff;
    border-color: #2c6bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 122, 255, 0.3);
}

.btn-secondary {
    background: #f8fafc;
    color: #357AFF;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #357AFF;
    color: #ffffff;
    border-color: #357AFF;
}

/* Authentication Section */
.auth-section {
    min-height: calc(100vh - 72px);
    padding: 140px 0 160px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.auth-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid #e4e7ec;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 16px;
    color: #667084;
}

/* Google Button */
.btn-google {
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-google:hover {
    border-color: #357AFF;
    background: #f9fafb;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #98a2b3;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e4e7ec;
}

.divider span {
    padding: 0 16px;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #344054;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Satoshi-Regular', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #357AFF;
    box-shadow: 0 0 0 4px rgba(53, 122, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #667084;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #344054;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-group {
    margin: 0;
}

.link-primary {
    color: #357AFF;
    text-decoration: none;
    font-weight: 600;
}

.link-primary:hover {
    text-decoration: underline;
}

/* Button Styles */
.btn-large {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 12px;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e4e7ec;
    font-size: 14px;
    color: #667084;
}

.auth-footer p {
    margin: 0;
    line-height: 1.5;
}

.auth-footer p+p {
    margin-top: 8px;
}

/* Auth Info Panel */
.auth-info {
    padding: 48px;
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
    border-radius: 24px;
    color: #ffffff;
}

.auth-info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff !important;
}

.auth-info p {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.info-feature svg,
.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 12px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-feature span {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 48px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.interactive-feature {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.interactive-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.interactive-feature:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(12px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.interactive-feature:hover::before {
    opacity: 1;
}

.interactive-feature:hover svg,
.interactive-feature:hover .feature-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.interactive-feature:hover span {
    color: #ffffff;
    transform: translateX(4px);
}

.interactive-feature.highlighted {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    animation: enhancedPulse 0.8s ease-in-out;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.interactive-feature:active {
    transform: translateX(8px) translateY(1px) scale(0.98);
}

@keyframes enhancedPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    25% {
        transform: scale(1.03) translateX(6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: scale(1.05) translateX(12px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    75% {
        transform: scale(1.03) translateX(6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Feature Notification Styles */
.feature-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: linear-gradient(135deg, #357AFF 0%, #2c6bff 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(53, 122, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-notification .notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
}

.feature-notification .notification-content span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.feature-notification .notification-content button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.feature-notification .notification-content button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1920px) {
    .container {
        padding: 0 100px;
    }
}

@media (max-width: 1440px) {
    .container {
        padding: 0 50px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 968px) {
    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-info {
        order: -1;
    }

    .auth-card {
        padding: 32px 24px;
    }
}

@media (max-width: 1024px) {
    .header .container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu a {
        text-align: center;
        padding: 10px 0;
    }

    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        margin-left: auto;
    }

    .mobile-toggle span {
        height: 3px;
        width: 25px;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-actions {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .auth-card {
        padding: 32px 24px;
    }

    .auth-info {
        padding: 32px 24px;
    }

    .auth-header h1 {
        font-size: 24px;
    }

    .auth-info-title {
        font-size: 24px;
    }
}

/* ========================================
   PUBLIC PAGES STYLES
   ======================================== */

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: #667084;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-block {
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    border: 1px solid #e4e7ec;
}

.content-block.full-width {
    width: 100%;
}

.content-block.highlight-block {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-color: #b3d9ff;
}

.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.content-block p {
    font-size: 17px;
    color: #667084;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-block li {
    font-size: 16px;
    color: #667084;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #357AFF;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 15px;
    color: #667084;
    margin: 0;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.feature-showcase-item {
    text-align: center;
}

.feature-showcase-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-showcase-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-showcase-item p {
    font-size: 15px;
    color: #667084;
    margin: 0;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.why-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 15px;
    color: #667084;
    margin: 0;
}

/* Page CTA */
.page-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
    border-radius: 24px;
    margin-top: 60px;
    box-shadow: 0 20px 60px rgba(53, 122, 255, 0.3);
}

.page-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn-large {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Stories Page */
.stories-section {
    padding: 80px 0;
    background: #f9fafb;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.story-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e4e7ec;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.story-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-color: #357AFF;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
}

.story-meta h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.story-meta p {
    font-size: 14px;
    color: #667084;
    margin: 0;
}

.story-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.story-content p {
    font-size: 16px;
    color: #667084;
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e4e7ec;
}

.story-stats .stat {
    text-align: center;
}

.story-stats .stat strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #357AFF;
    margin-bottom: 4px;
}

.story-stats .stat span {
    font-size: 14px;
    color: #667084;
}

/* Share Story CTA */
.share-story-cta {
    margin-top: 60px;
    padding: 60px;
    background: #ffffff;
    border-radius: 24px;
    border: 2px solid #e4e7ec;
    text-align: center;
}

.share-story-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.share-story-cta p {
    font-size: 18px;
    color: #667084;
    margin-bottom: 32px;
}

.story-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-form input,
.story-form textarea {
    padding: 14px 18px;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
}

.story-form textarea {
    resize: vertical;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #f9fafb;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #e4e7ec;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e4e7ec;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 16px;
    color: #667084;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    color: #667084;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Waitlist Page Styles */
.waitlist-hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0a1e4d 0%, #0d2a7c 30%, #12348d 60%, #1e4a9f 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 20px;
}

.waitlist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.waitlist-title {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-white {
    color: #ffffff !important;
}

.text-highlight {
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 48px;
}

.waitlist-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.benefit-item svg {
    flex-shrink: 0;
}

.waitlist-form-container {
    border-radius: 24px;
    display: flex;
    justify-content: center;
}

.form-card {
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: #667084;
}

.live-counter {
    font-weight: 700;
    color: #357AFF;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #667084;
}

.waitlist-stats {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e4e7ec;
    min-width: 260px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #357AFF;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #667084;
}

/* Footer */
.footer {
    background: #0a1a2e;
    padding: 80px 0 40px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #357AFF;
    transform: translateY(-2px);
}

.link-group h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #357AFF;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design for Public Pages */
@media (max-width: 968px) {
    .page-title {
        font-size: 42px;
    }

    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .waitlist-title {
        font-size: 48px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .page-title {
        font-size: 36px;
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .waitlist-hero {
        padding: 120px 0 60px;
    }

    .waitlist-form-container {
        padding: 32px 24px;
    }

    .waitlist-title {
        font-size: 40px;
    }

    .waitlist-description {
        font-size: 17px;
    }

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

    .legal-document {
        padding: 40px 24px;
    }

    .share-story-cta {
        padding: 40px 24px;
    }
}

/* Home Page Styles */
.hero-section {
    min-height: 90vh;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.badge {
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 20px;
    color: #667084;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-tagline {
    font-size: 16px;
    color: #98a2b3;
    margin-top: 60px;
}

.btn-outline {
    background: transparent;
    color: #357AFF;
    border: 2px solid #357AFF;
}

.btn-outline:hover {
    background: #357AFF;
    color: #ffffff;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background: #f9fafb;
    border-top: 1px solid #e4e7ec;
}

.trust-indicator {
    text-align: center;
}

.trust-text {
    font-size: 16px;
    color: #667084;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #667084;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e4e7ec;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(53, 122, 255, 0.15);
    border-color: #357AFF;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: #667084;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Responsive for Home Page */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }

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

    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-badges {
        flex-wrap: wrap;
    }

    .hero-actions {
        flex-direction: column;
    }

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

/* Support Page Styles */
.support-hero .container {
    position: relative;
}

.support-search {
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    z-index: 100;
}

.support-search svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.support-search input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    border: 2px solid #e4e7ec;
    border-radius: 16px;
    font-size: 16px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.support-search input:focus {
    outline: none;
    border-color: #357AFF;
    box-shadow: 0 0 0 4px rgba(53, 122, 255, 0.1);
}

.support-options {
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.support-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e4e7ec;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: #357AFF;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(53, 122, 255, 0.15);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.support-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.support-card p {
    font-size: 15px;
    color: #667084;
    margin-bottom: 24px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-info>p {
    font-size: 17px;
    color: #667084;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: #667084;
    margin: 0;
}

.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e4e7ec;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.text-normal {
    color: #1a1a1a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #f9fafb;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e4e7ec;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #357AFF;
    box-shadow: 0 4px 16px rgba(53, 122, 255, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #667084;
    line-height: 1.7;
    margin: 0;
}

/* Responsive for Support Page */
@media (max-width: 968px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .support-search {
        margin-top: 24px;
    }

    .support-card {
        padding: 24px;
    }

    .contact-form-container {
        padding: 24px;
    }

    .faq-item {
        padding: 24px;
    }
}

/* Error Message Styles */
.error_message {
    display: none;
    font-size: 13px;
    color: #dc2626;
    margin-top: 6px;
    font-weight: 500;
}

.error_message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input.error {
    border-color: #dc2626;
}

.form-group input.error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}