:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f3f4f6;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    margin-top: 0.5rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.cta-button.disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    pointer-events: none;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-alt);
    border-radius: 1rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 4rem;
}

.brand-highlight {
    color: var(--primary);
    letter-spacing: -1px;
}

.brand-name {
    font-weight: 600;
}

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

.availability-text {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    header {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    nav a {
        margin: 0 0.75rem;
        font-size: 0.9rem;
    }
}

.home-description {
    max-width: 1024px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.home-description p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.about-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    min-height: 65vh;
}

.about-container h1 {
    font-size: 2.5rem;
    background: none;
    -webkit-text-fill-color: var(--text);
    color: var(--text);
    margin-bottom: 2rem;
}

.about-container p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

footer {
    border-top: 1px solid var(--bg-alt);
}

.lgtm-trigger {
    border-bottom: 2px dotted var(--text-light);
    cursor: pointer;
    position: relative;
    transition: color 0.2s, border-color 0.2s;
    display: inline-block;
}

.lgtm-trigger-btn {
    display: none;
}

.lgtm-trigger:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.lgtm-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 400px;
    max-width: 90vw;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear 0.2s;
    border: 1px solid var(--bg-alt);
    text-align: left;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
    cursor: auto;
}

.lgtm-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

.hero {
    position: relative;
}

.cookies-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--bg);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: none;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--bg-alt);
    z-index: 50;
    max-width: 90vw;
}

.cookies-banner.show {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

.cookies-banner p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.35;
}

.cookies-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.cookies-btn:hover {
    background-color: var(--primary-hover);
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

@media (max-width: 640px) {
    .cookies-banner.show {
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        width: auto;
        transform: none;
        max-width: none;
        justify-content: space-between;
    }

    .lgtm-popup {
        position: fixed;
        width: auto;
        left: 1.5rem;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%) !important;
        z-index: 1000;
        bottom: auto;
    }

    .lgtm-popup.show {
        transform: translateY(-50%) !important;
    }
}

/* Contact Form Styles */
.contact-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-alt);
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--bg-alt);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg);
    color: var(--text);
}

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

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 0.75rem;
}

.success-message h2 {
    color: var(--primary);
    margin-top: 0;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-light);
    text-decoration: underline;
    cursor: pointer;
}

.back-link:hover {
    color: var(--primary);
}