/* Home Page Styles */

/* Remove text decoration from all links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Header Styles */
.home-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2dd4bf;
    margin: 0;
    line-height: 1;
}

/* Ensure link doesn't affect brand text styling */
a.brand-logo:hover {
    text-decoration: none;
}

a.brand-logo .brand-text h1 {
    color: #2dd4bf;
    text-decoration: none;
}

.brand-text .tagline {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #2dd4bf;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Picker */
.language-picker {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.language-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.language-btn i {
    font-size: 0.875rem;
}

.language-btn .fa-chevron-down {
    font-size: 0.625rem;
    transition: transform 0.2s;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    display: none;
    z-index: 1001;
}

.language-dropdown.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #1e293b;
    text-decoration: none;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f8fafc;
}

.lang-option.active {
    background: #f1f5f9;
    font-weight: 600;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.flag {
    font-size: 1.125rem;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: #2dd4bf;
    color: white;
    border: 1px solid #2dd4bf;
}

.btn-primary:hover {
    background: #0d9488;
    border-color: #0d9488;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Icon Button Styles */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-icon:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #2dd4bf;
}

.btn-icon i {
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px; /* Account for fixed header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #ddd6fe 50%, #c7d2fe 100%);
    z-index: -1;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 90px;
    font-weight: 800;
    color: #2dd4bf;
    margin-bottom: 10px;
    letter-spacing: -5px;
    animation: fadeInUp 0.8s ease-out;
    line-height: 1;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 15px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    line-height: 1.1;
}

.hero-description {
    font-size: 18px;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #64748b;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-integration {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid #2dd4bf;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: #0d9488;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.btn-hero-primary {
    background: #2dd4bf;
    color: white;
    border: 2px solid #2dd4bf;
}

.btn-hero-primary:hover {
    background: #0d9488;
    border-color: #0d9488;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background: white;
    color: #1e293b;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #2dd4bf;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    line-height: 1;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2dd4bf;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 20px;
    color: #2dd4bf;
}

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

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

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

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1e293b;
    line-height: 1.1;
}

.section-header p {
    font-size: 18px;
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.1;
}

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

.feature-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2dd4bf 0%, #0d9488 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
    line-height: 1.1;
}

.feature-card p {
    color: #64748b;
    line-height: 1.1;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Solutions Section */
.solutions-section {
    padding: 40px 0;
    background: #f8fafc;
}

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

.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.solution-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-content {
    padding: 1.5rem;
}

.solution-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.solution-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.solution-link {
    color: #2dd4bf;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.solution-link:hover {
    color: #0d9488;
}

/* CTA Section */
.cta-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
    text-align: center;
    color: white;
}

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

.cta-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.cta-wrapper p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 25px;
    opacity: 0.95;
    line-height: 1.1;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.btn-cta-primary {
    background: white;
    color: #2dd4bf;
    border: 2px solid white;
}

.btn-cta-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #2dd4bf;
    transform: translateY(-3px);
}

/* Footer */
.home-footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
    margin-top: 100px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #2dd4bf;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #334155;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-links a:hover {
    background: #2dd4bf;
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1e293b;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.mobile-menu-toggle span:last-child {
    margin-bottom: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    background: white;
    width: 80%;
    max-width: 320px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
    padding: 15px;
}

.mobile-menu-overlay.show .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Accordion Styles */
.mobile-accordion {
    margin-top: 50px;
}

.accordion-item {
    margin-bottom: 0;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: #2dd4bf;
}

.accordion-icon {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.show {
    max-height: 500px;
}

.accordion-content a {
    display: block;
    padding: 10px 8px 10px 20px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.accordion-content a:hover {
    color: #2dd4bf;
    padding-left: 24px;
}

.accordion-content a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Language Dropdown */
.mobile-language-dropdown {
    padding: 8px 20px;
}

.language-select {
    width: 100%;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s;
}

.language-select:hover {
    border-color: #2dd4bf;
}

.language-select:focus {
    outline: none;
    border-color: #2dd4bf;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        padding: 0.75rem 0;
    }
    
    .brand-text .tagline {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Mobile */
    .hero-section {
        min-height: 60vh;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 50px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .integration-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 3rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: space-around;
    }
    
    .stat-item {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .stat-icon {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Features Mobile */
    .features-section {
        padding: 40px 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    /* Solutions Mobile */
    .solutions-section {
        padding: 40px 20px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-image-placeholder {
        height: 150px;
    }
    
    .solution-content {
        padding: 1.25rem;
    }
    
    .solution-content h3 {
        font-size: 1.125rem;
    }
    
    .solution-content p {
        font-size: 0.875rem;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-wrapper h2 {
        font-size: 28px;
    }
    
    .cta-wrapper p {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    /* Footer Mobile */
    .home-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-title {
        font-size: 50px;
        letter-spacing: -2px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
}

/* Ensure buttons have consistent styling with icons */
.btn-secondary i {
    margin-right: 6px;
}

/* Fix language picker dropdown on smaller screens */
@media (max-width: 480px) {
    .language-dropdown {
        right: -20px;
    }
}

/* Sign Up Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-container {
    background-color: white;
    border-radius: 12px;
    max-width: 36rem;
    width: 100%;
    padding: 1.5rem 2rem;
    position: relative;
    animation: fadeInUp 0.3s ease-out;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #475569;
}

.modal-close i {
    font-size: 1.25rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.modal-subtitle {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 0.75rem;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.125rem;
    padding-left: 0.125rem;
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #2dd4bf;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.625rem 1rem;
    background-color: #2dd4bf;
    color: white;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.btn-submit:hover {
    background-color: #14b8a6;
}

.form-footer {
    font-size: 0.6875rem;
    color: #64748b;
    margin-top: 0.75rem;
    text-align: center;
    line-height: 1.3;
}

.link-primary {
    color: #2dd4bf;
    text-decoration: none;
}

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

/* Form grid layout for wider modal */
#signup-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

#signup-form .form-group:nth-child(1),
#signup-form .form-group:nth-child(3) {
    grid-column: span 2;
}

#signup-form .btn-submit,
#signup-form .form-footer {
    grid-column: span 2;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .modal-container {
        max-width: 100%;
        padding: 1.25rem 1.5rem;
    }
    
    #signup-form {
        grid-template-columns: 1fr;
    }
    
    #signup-form .form-group:nth-child(1),
    #signup-form .form-group:nth-child(3) {
        grid-column: span 1;
    }
    
    #signup-form .btn-submit,
    #signup-form .form-footer {
        grid-column: span 1;
    }
}