/* 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;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #357AFF;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

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;
}

.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;
}

.highlight {
    color: #357AFF;
}

.text-normal {
    font-weight: 700;
    color: #39485f;
}

.text-highlight {
    font-family: 'Satisfy', cursive;
    color: #357AFF;
}

/* 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%;
}

.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;
}

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

.nav-actions .btn {
    padding: 8px 24px;
    font-size: 15px;
    height: auto;
    min-width: auto;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

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

.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;
}

/* 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;
}

.btn .arrow-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.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-outline {
    background: transparent;
    color: #232323;
    border-color: #357AFF;
    border-width: 2px;
}

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

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #357AFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-danger {
    background: #ffffff;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-danger:hover {
    background: #f8fafc;
    color: #374151;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 40px;
    background: #ffffff;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
}

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

.hero-badges {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid #d4ddef;
    border-radius: 9999px;
    padding: 6px 24px;
}

.hero-badges .badge {
    background: transparent;
    border: none;
    padding: 0;
    color: #357AFF;
    font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 16px;
    color: #2d3748;
    letter-spacing: -1px;
}

.hero-title .text-highlight {
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 0;
}

.hero-description {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 28px;
    font-weight: 400;
}

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

.hero-tagline {
    text-align: center;
    margin-top: 0;
    font-size: 14px;
    color: #667084;
    font-weight: 400;
    display: none;
}

/* Company Logos Section */
.company-logos-section {
    padding: 20px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.logos-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    margin-bottom: 40px;
}

/* White gradient flares on edges */
.logos-container::before,
.logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logos-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    /* Removed gap from parent to fix infinite scroll glitch */
}

.logos-track {
    display: flex;
    gap: 80px;
    /* Increased gap between logos */
    padding-right: 80px;
    /* Essential for infinite loop continuity */
    animation-duration: 80s;
    /* Slowed down significantly */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: max-content;
}

/* Row 1: Left to Right */
.logos-row-1 .logos-track {
    animation-name: scroll-left;
}

/* Row 2: Right to Left */
.logos-row-2 .logos-track {
    animation-name: scroll-right;
}

/* Row 3: Left to Right */
.logos-row-3 .logos-track {
    animation-name: scroll-left;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.logo-img {
    height: 40px;
    /* Reduced height for better uniformity */
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logos-row:hover .logos-track {
    animation-play-state: paused;
}

.trust-indicator {
    margin-top: 40px;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.trust-indicator .count {
    font-weight: 600;
    color: #475569;
    font-size: 10px;
    background: #e2e8f0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    flex-shrink: 0;
}

.trust-indicator .text {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.profile-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    filter: none;
    opacity: 1;
}

.avatar:first-child {
    margin-left: 0;
}

/* Platform Section */
.platform-section {
    padding: 120px 0 180px;
    background: linear-gradient(180deg, #1e4a9f 0%, #0d2a7c 40%, #0b2558 70%, #0a1e4d 100%);
    color: #ffffff;
    position: relative;
}

.platform-section .section-title {
    color: #ffffff;
    font-size: 46px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 56px;
    letter-spacing: -0.63px;
}

.platform-section .section-title .text-normal {
    color: #ffffff;
}

.platform-section .section-title .text-highlight {
    color: #ffffff;
    font-size: 46px;
    line-height: 56px;
    font-family: 'Great Vibes', 'Inter', sans-serif;
    font-style: italic;
}

.platform-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
}

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

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 32px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    flex: 1;
    font-family: 'Satoshi-Regular', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    position: relative;
    line-height: 1;
}

.tab-btn .tab-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.tab-btn.active {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 3px solid #ffffff;
}

.tab-btn:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.tab-content {
    text-align: center;
}

.dashboard-preview {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 0 0 0;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(180deg, #f5f5f7 0%, #ebebed 100%);
    border-bottom: 1px solid #d0d0d2;
    display: flex;
    align-items: center;
    padding: 0 12px;
    z-index: 2;
}

.dashboard-preview::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 12px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow:
        14px 0 0 #ffbd2e,
        28px 0 0 #28ca42;
    z-index: 3;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    background: #ffffff;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 0;
}

.platform-url {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a1e4d 0%, #0c1b3d 15%, #0e1a35 30%, #0f1729 50%, #0b1520 80%, #0a1628 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
    margin-top: -120px;
    padding-top: 140px;
    max-height: 700px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
}


.testimonials-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
}




.testimonial-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(71, 85, 105, 0.5);
}

.testimonial-card .profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(148, 163, 184, 0.2);
    flex-shrink: 0;
}

.testimonial-card .name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #f1f5f9;
}

.testimonial-card .title {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 16px;
    font-weight: 400;
}

.testimonial-card .quote {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    font-style: normal;
}

/* Testimonial card header layout */
.testimonial-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-card-info {
    flex: 1;
    min-width: 0;
}

.testimonial-card .name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-card .social-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* Infinite scroll animation */
@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    animation: scroll-up 60s linear infinite;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 46px;
    color: #394960;
    letter-spacing: -0.6px;
}

.section-title .text-highlight {
    font-size: 36px;
    line-height: 46px;
}

.section-description {
    font-size: 14px;
    color: #667084;
    text-align: center;
    margin-bottom: 48px;
    max-width: 827px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #394960;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 26px;
}

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

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

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #394960;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
    font-family: 'Satoshi-Regular', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.5px;
    line-height: 24px;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question.active {
    background: #f1f5f9;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #357AFF;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 3px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-question.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #ffffff;
}

.faq-answer.active {
    max-height: 250px;
    /* Increased max-height to accommodate padding */
    padding: 25px 30px 60px;
}

.faq-answer p {
    font-size: 14px;
    color: #667084;
    margin-bottom: 0;
    line-height: 1.6;
}

.faq-section .btn {
    margin-top: 50px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.faq-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #ECF2FF;
}

.pricing-section .tabs {
    background: rgba(226, 232, 240, 0.5);
    max-width: 500px;
    border-radius: 8px;
}

.pricing-section .tab-btn {
    color: #667085;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
}

.pricing-section .tab-btn.active {
    background: #357AFF;
    color: #ffffff;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.pricing-card.featured {
    border-color: #357AFF;
    box-shadow: 0 8px 30px rgba(53, 122, 255, 0.2);
    transform: translateY(-10px);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #357AFF, #2c6bff);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #667084;
    font-weight: 500;
}

.card-header h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #394960;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 26px;
}

.price {
    font-size: 36px;
    font-weight: 500;
    color: #394960;
    margin-bottom: 24px;
    line-height: 46px;
    letter-spacing: -0.6px;
}

.price span {
    font-family: 'Great Vibes', 'Inter', sans-serif;
    font-style: italic;
    color: #667084;
    font-size: 24px;
    letter-spacing: 0;
}

.features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
}

.check-icon::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cross-icon {
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
}

.cross-icon::before,
.cross-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: white;
    top: 50%;
    left: 50%;
}

.cross-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.cross-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
}



/* Footer */
.footer {
    padding: 80px 0 30px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    color: #667084;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 50px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: #667084;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

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

.social-icon {
    color: #64748b;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.social-icon svg {
    width: 20px;
    height: 20px;
}

.link-group h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #394960;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 26px;
}

.link-group a {
    display: block;
    text-decoration: none;
    color: #667084;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-weight: 400;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #667084;
}

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

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

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

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

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

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        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;
    }

    /* Documentation responsive styles for tablets */
    .docs-layout {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }

    .docs-sidebar {
        padding: 24px 0;
    }

    .sidebar-section {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    /* Payments responsive styles for tablets */
    .current-plan-card {
        padding: 32px;
    }

    .payment-section,
    .transactions-section,
    .billing-info-section {
        padding: 24px;
    }

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

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

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-actions {
        display: none;
    }

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

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

    .testimonials-grid,
    .features-grid,
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

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

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

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

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

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

    /* Company Logos Section - Mobile Alignment Fixes */
    .company-logos-section {
        padding: 20px 0 60px;
    }

    .logos-container {
        gap: 20px;
        margin-bottom: 30px;
    }

    .logos-container::before,
    .logos-container::after {
        width: 50px;
        /* Reduce gradient flare width on mobile */
    }

    .logos-track {
        gap: 40px;
        /* Reduce gap between logos on mobile */
        padding-right: 40px;
    }

    .logo-img {
        height: 30px;
        /* Smaller logos on mobile */
        max-width: 100px;
    }

    .trust-indicator {
        margin-top: 30px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .tabs {
        flex-direction: column;
        max-width: 300px;
    }

    .tab-btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

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

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

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

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .testimonials-grid,
    .features-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer.active {
        padding: 20px 20px 50px;
    }

    /* Documentation responsive styles */
    .docs-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .docs-sidebar {
        position: static;
        order: 2;
    }

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

    .page-subtitle {
        font-size: 16px;
    }

    .docs-block h2 {
        font-size: 24px;
    }

    .endpoint {
        padding: 16px;
    }

    .code-example pre {
        padding: 16px;
        font-size: 12px;
    }

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

    /* Payments responsive styles */
    .current-plan-card {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 24px;
    }

    .plan-actions {
        flex-direction: column;
        width: 100%;
    }

    .plan-actions .btn {
        width: 100%;
    }

    .payment-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

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

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }

    .transactions-table {
        font-size: 12px;
    }

    .transactions-table th,
    .transactions-table td {
        padding: 8px;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* User manual responsive styles */
    .step {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .checklist {
        padding: 16px;
    }

    .feature-box,
    .tip-box {
        padding: 16px;
    }

    /* Razorpay responsive styles */
    .payment-info-card {
        flex-direction: column;
        gap: 16px;
    }

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

    /* Modal responsive styles */
    .modal-content {
        max-width: 95vw;
        margin: 20px;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

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

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

    .form-actions .btn {
        width: 100%;
    }

    /* Notification responsive styles */
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.feature-card,
.testimonial-card,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* API Documentation Styles */
.docs-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.docs-version {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
}

.version-badge {
    background: #357AFF;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.docs-section {
    padding: 0 0 100px;
    background: #ffffff;
}

.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px 0;
    border: 1px solid #e2e8f0;
}

.sidebar-section {
    padding: 0 24px;
    margin-bottom: 32px;
}

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

.sidebar-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.sidebar-link {
    display: block;
    padding: 8px 0;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    border-left: 3px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
}

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

.sidebar-link.active {
    color: #357AFF;
    font-weight: 600;
    border-left-color: #357AFF;
    background: rgba(53, 122, 255, 0.05);
}

.docs-content {
    min-width: 0;
}

.docs-block {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

.docs-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.docs-block h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.docs-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.info-box {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

.info-box h4 {
    color: #0369a1;
    margin-bottom: 8px;
}

.warning-box {
    background: #fef3cd;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 16px;
    margin: 24px 0;
    color: #92400e;
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
}

.code-example {
    background: #1e293b;
    border-radius: 8px;
    margin: 24px 0;
    overflow: hidden;
}

.code-header {
    background: #334155;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #475569;
}

.code-header span {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
}

.copy-btn {
    background: #357AFF;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: #2c6bff;
}

.code-example pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
}

.code-example code {
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
}

.docs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.docs-table th {
    background: #f8fafc;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.docs-table td {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.docs-table tr:last-child td {
    border-bottom: none;
}

.params-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.params-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.params-table td:first-child {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    color: #dc2626;
    font-weight: 600;
}

.params-table td:nth-child(2) {
    color: #7c3aed;
    font-weight: 500;
}

.endpoint {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.method {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method.get {
    background: #dcfce7;
    color: #166534;
}

.method.post {
    background: #dbeafe;
    color: #1e40af;
}

.method.put {
    background: #fef3c7;
    color: #92400e;
}

.method.delete {
    background: #fee2e2;
    color: #dc2626;
}

.endpoint-path {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.sdk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.sdk-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.sdk-card h4 {
    margin-bottom: 12px;
    color: #374151;
}

.sdk-card code {
    background: #1e293b;
    color: #e2e8f0;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    display: block;
}

/* Payments Page Styles */
.payments-section {
    padding: 120px 0 100px;
    background: #f8fafc;
    min-height: 100vh;
}

.payments-header {
    text-align: center;
    margin-bottom: 60px;
}

.payments-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.payments-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.current-plan-card {
    background: linear-gradient(135deg, #357AFF 0%, #2c6bff 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(53, 122, 255, 0.3);
}

.plan-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.plan-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: inline-block;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.plan-price .period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.plan-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.plan-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

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

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

.payment-section,
.transactions-section,
.billing-info-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

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

.card-icon {
    flex-shrink: 0;
}

.card-details {
    flex: 1;
}

.card-number {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #64748b;
}

.default-badge {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: #f1f5f9;
    border-color: #357AFF;
    color: #357AFF;
}

.filter-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-select {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
}

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

.transactions-table {
    overflow-x: auto;
}

.transactions-table table {
    width: 100%;
    border-collapse: collapse;
}

.transactions-table th {
    background: #f8fafc;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.transactions-table td {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-size: 14px;
}

.transactions-table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.success {
    background: #dcfce7;
    color: #166534;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.failed {
    background: #fee2e2;
    color: #dc2626;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 12px;
    color: #357AFF;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-download:hover {
    background: #f0f9ff;
    border-color: #357AFF;
}

.billing-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.detail-row .value {
    color: #4b5563;
    font-size: 14px;
}

/* User Manual Page Styles */
.step-guide {
    margin: 32px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

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

.step-content {
    flex: 1;
    padding-top: 4px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.step-content a {
    color: #357AFF;
    text-decoration: none;
    font-weight: 600;
}

.step-content a:hover {
    text-decoration: underline;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li::before {
    content: '✓';
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-box {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.feature-box h4 {
    color: #0369a1;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-box ul {
    margin: 0;
    padding-left: 20px;
}

.feature-box li {
    margin-bottom: 8px;
    color: #374151;
    line-height: 1.6;
}

.feature-box li strong {
    color: #0369a1;
    font-weight: 600;
}

.tip-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.tip-box h4 {
    color: #92400e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-box ul {
    margin: 0;
    padding-left: 20px;
}

.tip-box li {
    margin-bottom: 8px;
    color: #92400e;
    line-height: 1.6;
}

.status-badge.reviewing {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.interview {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.accepted {
    background: #dcfce7;
    color: #166534;
}

/* Razorpay Integration Styles */
.razorpay-info {
    margin-top: 0;
}

.payment-info-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.razorpay-logo {
    flex-shrink: 0;
}

.payment-info {
    flex: 1;
}

.payment-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.payment-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.payment-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1a202c;
}

.modal-body {
    padding: 32px;
}

/* Plan Selection Modal */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.plan-option {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.plan-option.current-plan {
    border-color: #357AFF;
    background: #f0f9ff;
}

.plan-option.current-plan::before {
    content: 'Current';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #357AFF;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.plan-option h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.plan-option .plan-price {
    font-size: 32px;
    font-weight: 700;
    color: #357AFF;
    margin-bottom: 16px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.plan-features li {
    padding: 6px 0;
    color: #4a5568;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

.billing-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.billing-form label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.billing-form input,
.billing-form textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
}

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

.billing-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: notificationSlideIn 0.3s ease-out;
    max-width: 400px;
}

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

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

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

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

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

.notification-success {
    background: #dcfce7;
    border: 1px solid #10b981;
    color: #166534;
}

.notification-success button {
    color: #166534;
}

.notification-success button:hover {
    background: rgba(22, 101, 52, 0.1);
}

.notification-warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.notification-warning button {
    color: #92400e;
}

.notification-warning button:hover {
    background: rgba(146, 64, 14, 0.1);
}

.notification-info {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    color: #1e40af;
}

.notification-info button {
    color: #1e40af;
}

.notification-info button:hover {
    background: rgba(30, 64, 175, 0.1);
}

.notification-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #dc2626;
}

.notification-error button {
    color: #dc2626;
}

.notification-error button:hover {
    background: rgba(220, 38, 38, 0.1);
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(7) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(8) {
    animation-delay: 0.7s;
}

/* Additional improvements for consistency */
.docs-table code {
    background: #f1f5f9;
    color: #475569;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for better accessibility */
.sidebar-link:focus,
.btn:focus,
.copy-btn:focus,
.btn-icon:focus,
.btn-download:focus {
    outline: 2px solid #357AFF;
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Print styles */
@media print {

    .header,
    .footer,
    .docs-sidebar,
    .nav-actions {
        display: none !important;
    }

    .docs-layout {
        grid-template-columns: 1fr !important;
    }

    .docs-content {
        max-width: none !important;
    }
}

/* Waitlist Page Styles */
.waitlist-hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0d2a7c 0%, #12348d 50%, #1e4a9f 100%);
    display: flex;
    align-items: center;
}

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

.waitlist-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.waitlist-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 16px;
}

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

.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.form-subtitle {
    font-size: 14px;
    color: #667084;
    margin-bottom: 32px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    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);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
    width: 100%;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #357AFF;
    border-radius: 4px;
}

.checkbox-label span {
    flex: 1;
    color: #4b5563;
    line-height: 1.5;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
}

.form-footer {
    margin-top: 16px;
    text-align: center;
}

.form-footer p {
    font-size: 12px;
    color: #98a2b3;
}

.waitlist-stats {
    padding: 80px 0;
    background: #f9fafb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
}

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

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

@media (max-width: 968px) {
    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .form-card {
        padding: 30px 20px;
    }

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

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

    .stat-number {
        font-size: 36px;
    }
}

/* Enhanced 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;
    overflow: hidden;
}

.waitlist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(53, 122, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 74, 159, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease;
}

.badge-icon {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

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

.waitlist-text {
    animation: fadeInRight 0.8s ease 0.2s both;
}

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

.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: 14px;
    color: #ffffff;
    font-size: 17px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInRight 0.6s ease both;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.5s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.6s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.7s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

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

.waitlist-form-container {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.form-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #357AFF 0%, #1e4a9f 100%);
}

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

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

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

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

.live-counter {
    font-weight: 700;
    color: #357AFF;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #d0d5dd;
    background: #ffffff;
}

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


.btn-large {
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(53, 122, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(53, 122, 255, 0.4);
}

.form-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e4e7ec;
    text-align: center;
}

.form-footer p {
    font-size: 13px;
    color: #98a2b3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #357AFF;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, #357AFF 0%, #1e4a9f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

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

@media (max-width: 968px) {
    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .form-card {
        padding: 36px 28px;
    }

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

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

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

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

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

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

    .stat-number {
        font-size: 42px;
    }
}

body:has(.waitlist-hero) .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

body:has(.waitlist-hero) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

body:has(.waitlist-hero) .nav-link:hover {
    color: #ffffff;
}

body:has(.waitlist-hero) .logo-text {
    color: #ffffff;
}

/* Waitlist Page Navbar Override */
body:has(.waitlist-hero) .navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

body:has(.waitlist-hero) .nav-link {
    color: #667084;
}

body:has(.waitlist-hero) .nav-link:hover {
    color: #357AFF;
}

body:has(.waitlist-hero) .logo-text {
    color: #1a1a1a;
}

body:has(.waitlist-hero) .btn-secondary {
    background: transparent;
    color: #667084;
    border: 1px solid #d0d5dd;
}

body:has(.waitlist-hero) .btn-secondary:hover {
    background: #f9fafb;
    color: #1a1a1a;
}

/* Waitlist text styling */
.text-white {
    color: #ffffff !important;
}

.author-credit {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Additional 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 p {
    font-size: 17px;
    color: #667084;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* 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;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.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;
}

.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;
}

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

.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;
}

/* Support Page */
.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(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.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;
}

@media (max-width: 968px) {
    .page-title {
        font-size: 42px;
    }

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

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

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

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

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

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

    .features-showcase,
    .support-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

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

/* 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: #344054;
    margin: 24px 0 16px;
}

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

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

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

.legal-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 40px 24px;
    }

    .legal-section h2 {
        font-size: 24px;
    }
}

/* FAQ Search Results */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e4e7ec;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result-item {
    padding: 20px;
    border-bottom: 1px solid #e4e7ec;
    transition: background 0.2s ease;
}

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

.search-result-item:hover {
    background: #f9fafb;
}

.search-result-item.no-results {
    text-align: center;
    padding: 40px 20px;
}

.no-results p {
    color: #667084;
    margin-bottom: 12px;
}

.no-results .help-text {
    font-size: 14px;
}

.no-results a {
    color: #357AFF;
    text-decoration: none;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.result-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.result-category {
    font-size: 12px;
    color: #357AFF;
    background: #f0f7ff;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.result-answer {
    font-size: 14px;
    color: #667084;
    line-height: 1.6;
    margin-bottom: 12px;
}

.result-answer mark,
.result-header h4 mark {
    background: #fff3cd;
    color: #1a1a1a;
    padding: 2px 4px;
    border-radius: 3px;
}

.view-full-answer {
    background: none;
    border: none;
    color: #357AFF;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.view-full-answer:hover {
    color: #1e4a9f;
}

/* FAQ Modal */
.faq-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.faq-modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.faq-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f9fafb;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #667084;
}

.faq-modal-close:hover {
    background: #e4e7ec;
    color: #1a1a1a;
}

.faq-modal-header {
    padding: 40px 40px 24px;
    border-bottom: 1px solid #e4e7ec;
}

.faq-modal-category {
    font-size: 12px;
    color: #357AFF;
    background: #f0f7ff;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.faq-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.faq-modal-body {
    padding: 32px 40px;
}

.faq-modal-body p {
    font-size: 16px;
    color: #667084;
    line-height: 1.8;
    margin: 0;
}

.faq-modal-footer {
    padding: 24px 40px 40px;
    border-top: 1px solid #e4e7ec;
}

.faq-modal-footer p {
    font-size: 14px;
    color: #667084;
    margin-bottom: 16px;
}

.feedback-buttons {
    display: flex;
    gap: 12px;
}

.feedback-buttons .btn {
    flex: 1;
}

@media (max-width: 640px) {
    .faq-modal-content {
        max-height: 90vh;
    }

    .faq-modal-header,
    .faq-modal-body,
    .faq-modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .result-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* FAQ Loading State */
.faq-loading {
    text-align: center;
    padding: 60px 20px;
    color: #667084;
}

.faq-loading p {
    font-size: 16px;
}

/* FAQ Accordion Styles */
.faq-item {
    cursor: pointer;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px 60px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question {
    color: #357AFF;
}

/* CTA Responsive */
@media (max-width: 640px) {
    .page-cta {
        padding: 40px 24px;
    }

    .page-cta h2 {
        font-size: 28px;
    }

    .page-cta p {
        font-size: 16px;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Authentication Pages */
.auth-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    display: flex;
    align-items: 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;
}

.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;
}

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

.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 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

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

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

.auth-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.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 {
    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;
}

.auth-info-title {
    color: #ffffff !important;
}

.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 {
    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 pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@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);
}

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

    .auth-info {
        order: -1;
    }

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

/* Forgot Password Page Specific Styles */
.auth-card .auth-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Button Fixes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn svg {
    flex-shrink: 0;
}

/* Icon Fixes */
.btn-google svg,
.btn-download svg {
    width: 20px;
    height: 20px;
}

/* Form Fixes */
.auth-form .form-group {
    margin-bottom: 16px;
}

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

.auth-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    font-size: 16px;
}

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

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

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