/* ===================================
   Blue Ghost Logic - Main Stylesheet
   Dark, modern, developer-focused design
   =================================== */

/* ========== CSS Variables ========== */
:root {
    /* Brand Colors - From Blue Ghost Firefly */
    --brand-blue: #4fc3f7; /* Firefly Glow */
    --dark-blue: #0d47a1; /* Deep Night */
    --teal-accent: #009688; /* Forest Glow */
    --light-blue: #b3e5fc; /* Dawn Sky */
    --cool-gray: #607d8b; /* Moonlit Mist */

    /* Dark Theme Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #000;
    --bg-card: #1a1a1a;
    --bg-hover: #252525;

    /* Text Colors */
    --text-primary: #fff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--light-blue);
}

/* Override link color for buttons */
a.btn-primary,
a.btn-primary-large,
a.btn-secondary {
    color: inherit;
}

a.btn-primary:hover,
a.btn-primary-large:hover {
    color: inherit;
}

/* ========== Navigation ========== */
.navbar {
    background-color: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition:
        background-color 0.3s ease,
        border-bottom-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background-color: rgb(10 10 10 / 95%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(79 195 247 / 10%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-self: end;
}

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

.logo-text {
    color: var(--brand-blue);
    text-transform: lowercase;
}

.glow-icon {
    color: var(--brand-blue);
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgb(79 195 247 / 60%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        text-shadow: 0 0 20px rgb(79 195 247 / 60%);
    }

    50% {
        text-shadow: 0 0 30px rgb(79 195 247 / 80%);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

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

/* Hide the checkbox */
.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    grid-column: 3;
    justify-self: end;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Animate hamburger when checked */
.mobile-menu-checkbox:checked + .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-checkbox:checked + .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-checkbox:checked + .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgb(10 10 10 / 98%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid rgb(79 195 247 / 10%);
    z-index: 999;
}

/* Show menu when checkbox is checked */
.mobile-menu-checkbox:checked ~ .mobile-menu {
    display: flex;
}

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

/* stylelint-disable-next-line no-descending-specificity */
.mobile-menu a {
    font-size: 1.1rem;
    color: var(--text-secondary);
    cursor: pointer;
    -webkit-tap-highlight-color: rgb(79 195 247 / 20%);
    touch-action: manipulation;
}

.mobile-menu a:hover {
    color: var(--brand-blue);
}

/* ========== Buttons ========== */
.btn-primary,
.btn-primary-large,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: #000 !important;
    box-shadow: 0 0 20px rgb(79 195 247 / 30%);
}

.btn-primary:hover {
    background-color: var(--light-blue);
    color: #000 !important;
    box-shadow: 0 0 30px rgb(79 195 247 / 50%);
    transform: translateY(-2px);
}

.btn-primary-large {
    background-color: var(--brand-blue);
    color: #000 !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgb(79 195 247 / 30%);
}

.btn-primary-large:hover {
    background-color: var(--light-blue);
    color: #000 !important;
    box-shadow: 0 0 30px rgb(79 195 247 / 50%);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-blue) !important;
    border: 2px solid var(--brand-blue);
}

.hero-cta .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background-color: rgb(79 195 247 / 10%);
    border-color: var(--light-blue);
}

/* ========== Cate Illustration Background ========== */
#cate-illustration,
#cate-illustration * {
    pointer-events: none !important;
    background-color: transparent !important;
}

#cate-illustration *::-webkit-scrollbar {
    display: none;
}

#cate-illustration * {
    scrollbar-width: none;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgb(79 195 247 / 6%) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: -92px;
}

.announcement {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(23, 38, 72, 1);
    border: 1px solid var(--dark-blue);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--light-blue);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--brand-blue) 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* ========== Services Section ========== */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgb(79 195 247 / 10%);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgb(79 195 247 / 20%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgb(79 195 247 / 10%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== About Section ========== */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-item .glow-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-item h4 {
    margin-bottom: 0.25rem;
    color: var(--brand-blue);
}

.value-item p {
    font-size: 0.95rem;
    margin: 0;
}

.about-visual {
    position: relative;
}

.glow-box {
    background: linear-gradient(135deg, rgb(13 71 161 / 20%) 0%, rgb(79 195 247 / 10%) 100%);
    border: 1px solid var(--brand-blue);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 0 40px rgb(79 195 247 / 20%);
}

.code-snippet {
    font-family: "Courier New", monospace;
    font-size: 1rem;
    line-height: 1.8;
}

.code-line {
    color: var(--text-secondary);
}

.code-line .keyword {
    color: #c792ea;
}

.code-line .function {
    color: var(--brand-blue);
}

.code-line .property {
    color: var(--teal-accent);
}

.code-line .comment {
    color: var(--cool-gray);
    font-style: italic;
}

.code-line.indent {
    padding-left: 2rem;
}

/* ========== Get Started Section ========== */
.get-started-content {
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-lg);
}

.get-started-content .app-screenshot-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.get-started-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 45%);
    pointer-events: none;
}

.early-access-form {
    position: absolute;
    top: 50%;
    right: 36px;
    transform: translateY(calc(-50% - 68px));
    width: calc(33.333% - 24px);
    background-color: rgb(10 15 28 / 88%);
    backdrop-filter: blur(16px);
    border: 1px solid rgb(79 195 247 / 20%);
    border-radius: 12px;
    box-shadow: 0 0 20px rgb(79 195 247 / 20%);
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-sizing: border-box;
}

.early-access-form input,
.early-access-form textarea {
    width: 300px;
    padding: 0.875rem 1rem;
    background-color: var(--bg-dark);
    border: 1px solid rgb(79 195 247 / 20%);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

.early-access-form input:focus,
.early-access-form textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgb(79 195 247 / 10%);
}

form.early-access-form {
    padding: 1.5rem;
}

.ea-label {
    display: none;
}

.early-access-form .form-actions {
    margin-top: 0.25rem;
}

.early-access-form .form-actions .btn-primary-large {
    width: 300px;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid rgb(79 195 247 / 20%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 360px;
    flex-shrink: 0;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1;
}

.pricing-amount span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features li svg {
    color: var(--brand-blue);
    flex-shrink: 0;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background-color: rgb(79 195 247 / 8%);
    border: 1px solid rgb(79 195 247 / 25%);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition:
        background-color 0.2s,
        border-color 0.2s;
}

.download-btn:hover {
    background-color: rgb(79 195 247 / 15%);
    border-color: rgb(79 195 247 / 50%);
}

/* ========== Contact Section ========== */
.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
}

.contact-hero + .contact {
    padding-top: 32px;
}

.support-banner {
    max-width: 780px;
    margin: 0 auto 2rem;
    padding: 1rem 1.5rem;
    background-color: rgb(79 195 247 / 8%);
    border: 1px solid rgb(79 195 247 / 25%);
    border-radius: 8px;
    color: var(--text-secondary);
    text-align: center;
    font-size: 1rem;
}

.support-banner a {
    color: var(--brand-blue);
    font-weight: 500;
    text-decoration: none;
}

.support-banner a:hover {
    text-decoration: underline;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgb(79 195 247 / 10%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* stylelint-disable-next-line no-descending-specificity */
.contact-item p,
/* stylelint-disable-next-line no-descending-specificity */
.contact-item a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    background-color: var(--bg-card);
    border: 1px solid rgb(79 195 247 / 10%);
    border-radius: 12px;
    padding: 3rem;
    max-width: 780px;
    margin: 0 auto;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-actions .btn-primary-large {
    width: 300px;
}

.form-actions .cf-turnstile {
    display: flex;
    justify-content: center;
}

.contact-address {
    max-width: 780px;
    margin: 2rem auto 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-address a {
    color: var(--brand-blue);
    text-decoration: none;
}

.contact-address a:hover {
    text-decoration: underline;
}

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

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

.form-group-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0;
}

.form-group-checkbox input[type="checkbox"] {
    width: auto;
    accent-color: var(--brand-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--bg-dark);
    border: 1px solid rgb(79 195 247 / 20%);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgb(79 195 247 / 10%);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* ========== Footer ========== */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgb(79 195 247 / 10%);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

/* stylelint-disable-next-line no-descending-specificity */
.footer-column a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    border-top: 1px solid rgb(79 195 247 / 10%);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-trademark {
    margin-top: 1rem !important;
    font-size: 0.75rem !important;
    opacity: 0.6;
    max-width: 780px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.tagline {
    font-style: italic;
}

/* ========== FAQ Page ========== */
.faq-hero,
.contact-hero,
.legal-hero {
    min-height: auto;
    padding: 6rem 2rem 2rem;
}

.faq-hero .hero-container,
.contact-hero .hero-container,
.legal-hero .hero-container {
    margin-top: 0;
}

.faq-hero .hero-subtitle,
.contact-hero .hero-subtitle,
.legal-hero .hero-subtitle {
    margin-bottom: 0;
}

.faq-section {
    padding: 2rem 0 var(--spacing-lg);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--brand-blue);
}

.faq-item[open] {
    border-color: var(--brand-blue);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brand-blue);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.faq-item .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item .faq-answer a {
    color: var(--brand-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item .faq-answer a:hover {
    color: var(--light-blue);
}

.faq-item .faq-answer code {
    background: #222;
    color: var(--brand-blue);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: monospace;
}

/* ========== Legal Pages ========== */
.legal-section {
    padding: 2rem 0 var(--spacing-lg);
}

.legal-container {
    max-width: 780px;
    margin: 0 auto;
}

.legal-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.legal-container p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--brand-blue);
}

.legal-container a:hover {
    color: var(--light-blue);
}

.legal-summary {
    background: var(--bg-card);
    border: 1px solid rgb(79 195 247 / 20%);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.legal-notice {
    font-weight: 600;
    color: var(--text-primary) !important;
}

.legal-copyright {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* ========== Responsive Design ========== */
@media (width <= 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .get-started-content .app-screenshot-img,
    .get-started-overlay {
        display: none;
    }

    #get-started .section-header {
        margin-bottom: 0;
    }

    .get-started-content {
        margin-top: 0;
    }

    .early-access-form {
        position: static;
        width: 100%;
        transform: none;
        backdrop-filter: none;
        background-color: var(--bg-card);
        box-shadow: none;
        padding: 2rem 1.5rem;
    }

    .early-access-form input,
    .early-access-form textarea,
    .early-access-form .form-actions .btn-primary-large {
        width: 100%;
    }

    .ea-label {
        display: block;
        width: 100%;
        color: var(--text-primary);
        font-weight: 500;
    }

    .early-access-form {
        gap: 0.5rem;
    }

    .early-access-form input,
    .early-access-form textarea {
        margin-bottom: 0.75rem;
    }

    .early-access-form input::placeholder,
    .early-access-form textarea::placeholder {
        color: transparent;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (width <= 890px) {
    .nav-links,
    .nav-cta,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn-primary-large,
    .hero-cta .btn-secondary {
        width: 100%;
    }

    h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (width <= 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .container {
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .faq-item summary {
        padding: 1rem 1.25rem;
    }

    .faq-item[open] .faq-answer {
        padding: 1rem 1.25rem 1.25rem;
    }
}
