:root {
    --primary-color: #3B82F6;
    --text-color: #FFFFFF;
    --bg-color: #0A0A0A;
    --card-bg: #1A1A1A;
    --border-color: #333333;
    --btn-hover: #2563EB;
    --step-bg: #262626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

img {
    max-width: 100%;
}

/* Header */
header {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

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

.logo img {
    width: 55px;
    height: auto;
}

.logo span {
    font-weight: 600;
    font-size: 1.5rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.header-icons {
    display: flex;
    gap: 0.75rem;
}

.header-icons a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.user-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    height: 36px;
    box-sizing: border-box;
}

.user-button:hover {
    background-color: #2A2F38;
}

.user-button img {
    width: 12px;
    transition: transform 0.3s ease;
}

/* Class for rotating the dropdown arrow */
.user-button img.rotate {
    transform: rotate(180deg);
}

/* User dropdown menu styles */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background-color: #1d1d1d;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.user-dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.dropdown-item span {
    flex-grow: 1;
    font-size: 0.95rem;
}

.shortcut-keys {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.dropdown-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}

.sign-out {
    color: #ef4444;
}

.sign-out span {
    color: #ef4444;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0));
}

/* Remove line from the last section before footer */
section:last-of-type::after {
    display: none;
}

/* Position the blue line between 'Why Choose Scaleify?' and 'Ready to build your iOS app?' sections */
.why-scaleify::after {
    bottom: -50px; /* Push the line down even further between the two sections */
}

h1, h2, h3, h4 {
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin: 1rem 0 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Hero section */
.hero {
    text-align: center;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

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

/* New clean search container implementation */
@keyframes borderPulse {
    0% {
        border-color: #3B82F6;
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.5), 0 0 10px rgba(59, 130, 246, 0.2);
    }
    50% {
        border-color: #60a5fa;
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 20px rgba(59, 130, 246, 0.4);
    }
    100% {
        border-color: #3B82F6;
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.5), 0 0 10px rgba(59, 130, 246, 0.2);
    }
}

.main-search-container {
    position: relative;
    width: 800px;
    max-width: 90%;
    margin: 1.5rem auto;
    border-radius: 16px;
    background-color: #1a1a1a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid #3B82F6;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5), 0 0 10px rgba(59, 130, 246, 0.2);
    animation: borderPulse 2s infinite ease-in-out;
}

.main-search-container input {
    width: 100%;
    padding: 40px 30px 20px;
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    outline: none;
    line-height: 1.3;
}

.main-search-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.search-actions {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px 20px;
}

.attach-button {
    height: 46px;
    padding: 0 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.plus-icon {
    font-size: 1.2rem;
    font-weight: 300;
}

.attach-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.build-button {
    height: 46px;
    padding: 0 20px;
    background-color: white;
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.build-button:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

/* Change this selector to be more specific so it doesn't affect the help page */
.home-hero .search-container, 
.home-hero .search-button, 
.home-hero .arrow {
    display: none !important;
}

.example-apps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.example {
    padding: 0.5rem 1rem;
    background-color: var(--card-bg);
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Projects section */
.my-projects {
    padding: 4rem 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 2rem;
}

.projects-header h2 {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
}

.folder-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.5rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 280px));
    gap: 1.5rem;
    justify-content: center;
}

.project-card {
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    display: flex;
    flex-direction: column;
}

.project-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-icon, .weather-icon, .code-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.home-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E57373"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>');
}

.weather-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD54F"><path d="M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z"/></svg>');
}

.code-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2381C784"><path d="M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"/></svg>');
}

.project-info {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.project-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Features section */
.features {
    text-align: center;
    padding: 4rem 0;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 20px;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-connector {
    flex: 0 0 auto;
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0));
    position: relative;
    top: 28px;
    margin: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.step p {
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 1rem;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

/* Users section */
.users {
    text-align: center;
    padding: 4rem 0;
}

.users h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 380px));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

.user-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3.2rem 2.2rem;
    text-align: left;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.user-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.user-card p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Benefits section */
.benefits {
    padding: 5rem 0;
}

.benefits-header {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.benefit-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 0 20px;
}

.benefits-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 8rem;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px;
}

.benefits-content {
    max-width: 450px;
}

.benefit-highlight,
.benefit-item {
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-highlight.active,
.benefit-item.active {
    opacity: 1;
    transform: translateX(0);
}

.benefit-highlight:not(.active),
.benefit-item:not(.active) {
    opacity: 0.5;
    transform: translateX(-10px);
}

.benefit-highlight h3,
.benefit-item h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.benefit-highlight p,
.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Slideshow styles */
.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0));
    width: 100%;
    margin: 1rem 0 4rem;
}

.code-preview {
    border: 1px solid #2563EB;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    margin-top: 0;
}

.code-preview.full-image {
    height: 350px;
}

.code-preview-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-bottom: 1px solid #2563EB;
}

.code-preview-content {
    flex: 1;
    background-color: #0d1117;
    position: relative;
    overflow: hidden;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ section */
.faq {
    padding: 4rem 0;
}

.faq h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.accordion-btn {
    background-color: transparent;
    color: #FFFFFF;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
    position: relative;
}

.question-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.accordion-btn .question-text {
    position: relative;
    display: inline-block;
    width: auto;
    border-bottom: 0px solid transparent;
    transition: border-bottom 0.3s ease;
}

.chevron-icon {
    width: 20px;
    height: 20px;
    stroke: #FFFFFF;
    transition: transform 0.3s ease;
}

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

/* Underline effect for active FAQ question */


/* Only show underline on active accordion button */
.accordion-btn.active .question-text {
    border-bottom: 2px solid #3B82F6;
}

/* Optional hover effect - only apply if not active */
.accordion-btn:not(.active):hover .question-text {
    border-bottom: 2px solid rgba(59, 130, 246, 0.5);
}

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

.accordion-content.active {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing section */
.pricing > p {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 280px));
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.pricing-card {
    background-color: #1A1E24;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    border: 1px solid #333333;
    color: #FFFFFF;
}

.pricing-card.pro {
    border: 1px solid #3B82F6;
}

.pricing-card.premium {
    border: 1px solid #F59E0B;
}

.pricing-card.enterprise {
    border: 1px solid #8B5CF6;
    background: linear-gradient(135deg, #1A1E24 0%, #1a1a2e 100%);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3B82F6;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: normal;
    color: #FFFFFF;
}

.pricing-desc {
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-feature-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-feature-list {
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.feature-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.try-button {
    color: var(--text-color);
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    width: auto;
    min-width: 160px;
    margin: 0 auto;
    display: block;
    transition: all 0.2s ease;
}

.free-button {
    background-color: #1A1E24;
    color: #FFFFFF;
    border: 1px solid #333333;
}

.free-button:hover {
    background-color: #2A2F38;
}

.pro-button {
    background-color: #3B82F6;
    color: #FFFFFF;
}

.pro-button:hover {
    background-color: var(--btn-hover);
}

.premium-button {
    background-color: #F59E0B;
    color: #FFFFFF;
}

.premium-button:hover {
    background-color: #D97706;
}

.enterprise-button {
    background-color: #8B5CF6;
    color: #FFFFFF;
}

.enterprise-button:hover {
    background-color: #7C3AED;
}

/* Responsive pricing grid */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .pricing-card.enterprise {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 2rem auto 0;
    }
    
    .pricing-card {
        min-height: auto;
    }
    
    .pricing-card.enterprise {
        grid-column: auto;
        max-width: none;
    }
}

/* Footer */
footer {
    padding: 3rem 0;
    position: relative;
    width: 100%;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 1.1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-logo span {
    font-size: 1.7rem;
    font-weight: 600;
}

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

.footer-links {
    display: flex;
    gap: 4rem;
    font-size: 1.1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.4rem;
}

.footer-column a {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    position: relative;
    width: fit-content;
    font-size: 1.15rem;
}

.footer-column a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-description {
    max-width: 500px;
    margin: 0.5rem 0;
}

.footer-description p {
    color: var(--secondary-text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    text-align: left;
    color: var(--tertiary-text-color);
    font-size: 1.2rem;
    position: relative;
}


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

.footer-social a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .benefit-content {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

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

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}
.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

/* Waitlist Modal Styles */
.waitlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.waitlist-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.waitlist-modal-content {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #333;
}

.waitlist-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.waitlist-logo {
    width: 40px;
    height: 40px;
}

.waitlist-title {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.waitlist-subtitle {
    color: #B0B0B0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.waitlist-prompt {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.waitlist-input {
    background-color: #2A2A2A;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 16px;
    color: #FFFFFF;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.waitlist-input:focus {
    border-color: #F59E0B;
}

.waitlist-input::placeholder {
    color: #666;
}

.waitlist-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.waitlist-cancel-btn {
    background-color: transparent;
    border: 1px solid #666;
    color: #B0B0B0;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.waitlist-cancel-btn:hover {
    border-color: #888;
    color: #FFFFFF;
}

.waitlist-submit-btn {
    background-color: #F59E0B;
    border: none;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex: 1;
}

.waitlist-submit-btn:hover {
    background-color: #D97706;
}

.waitlist-submit-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.waitlist-status {
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.waitlist-status.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid #22C55E;
    color: #22C55E;
}

.waitlist-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    color: #EF4444;
}