:root {
    --bg-color: #050608;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #5e17eb; /* kinetic violet */
    --accent-glow: rgba(94, 23, 235, 0.4);
    --accent-cyan: #06b6d4;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(18, 18, 24, 0.65);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.75));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    color: #ffffff;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    z-index: 1;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #a07dff;
}

.btn {
    padding: 0.65em 1.6em;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* Main */
main {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    padding: 11rem 5% 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
}

.hero-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, rgba(5, 6, 8, 0.35) 0%, rgba(5, 6, 8, 0.85) 70%, rgba(5, 6, 8, 0.98) 100%),
                linear-gradient(to bottom, rgba(5, 6, 8, 0.7) 0%, transparent 40%, rgba(5, 6, 8, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 380px;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.35) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 2;
}



.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 950px;
}

.trusted-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #06b6d4;
    border-radius: 50%;
    box-shadow: 0 0 10px #06b6d4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero h1 {
    font-size: clamp(2.8rem, 5.2vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-style: italic;
    font-weight: 400;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a07dff 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #a3a3a3;
    max-width: 780px;
    margin-bottom: 2.25rem;
    line-height: 1.65;
}

/* Interactive Hero Form */
.hero-form-wrapper {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.hero-audit-form {
    width: 100%;
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 50px;
    background: rgba(18, 18, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(94, 23, 235, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.hero-audit-form:focus-within {
    border-color: rgba(160, 125, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(94, 23, 235, 0.4);
}

.input-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 1.25rem;
}

.input-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.hero-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: 0.98rem;
    font-weight: 400;
}

.hero-input::placeholder {
    color: #666666;
}

.btn-hero-submit {
    white-space: nowrap;
    padding: 0.85rem 1.8rem;
    border-radius: 40px;
    font-size: 0.95rem;
}

.hero-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* Layout Utils & Section Headers */
.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* 3. Live AI Simulation Component (<PromptDemo />) */
.prompt-demo-section {
    padding: 7rem 5% 6rem;
    position: relative;
    z-index: 5;
    background: radial-gradient(circle at 50% 50%, rgba(94, 23, 235, 0.12) 0%, transparent 65%);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.chat-card {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 13, 18, 0.85);
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.chat-card.glowing-border {
    border-color: rgba(160, 125, 255, 0.35);
    box-shadow: 0 10px 40px rgba(94, 23, 235, 0.25);
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.chat-title {
    font-size: 0.82rem;
    color: #ccc;
    font-weight: 500;
}

.status-pill {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-negative {
    background: rgba(255, 95, 86, 0.15);
    color: #ff5f56;
    border: 1px solid rgba(255, 95, 86, 0.3);
}

.status-positive {
    background: rgba(39, 201, 63, 0.15);
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.3);
}

.chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.6;
}

.chat-user-message, .chat-ai-message {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.user-avatar, .ai-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.user-avatar {
    background: #252836;
    color: #aaa;
}

.ai-avatar {
    background: #1a1a24;
    color: #a07dff;
    border: 1px solid rgba(160, 125, 255, 0.3);
}

.ai-avatar-glow {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 12px var(--accent);
}

.message-bubble {
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    max-width: 100%;
}

.user-bubble {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-bubble {
    background: rgba(255, 255, 255, 0.02);
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-bubble ol {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.highlight-item {
    color: #ffffff;
    background: rgba(94, 23, 235, 0.2);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    border-left: 3px solid #a07dff;
}

.citations-wrapper {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.citations-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.citation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.citation-tag {
    font-size: 0.72rem;
    font-family: monospace;
    background: rgba(6, 182, 212, 0.12);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.citation-status {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
}

.status-box-negative {
    background: rgba(255, 95, 86, 0.1);
    color: #ff5f56;
    border: 1px solid rgba(255, 95, 86, 0.2);
}

.status-box-positive {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.2);
}

/* 4. Market Shift Section */
.market-shift {
    padding: 6rem 5%;
}

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

.market-card {
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-radius: 20px;
}

.market-card .card-num {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a07dff;
    text-transform: uppercase;
}

.market-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.market-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* 5. Services / GEO Framework */
.services {
    padding: 7rem 5%;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, border-color 0.4s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(94, 23, 235, 0.35);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 25px var(--accent-glow);
}

.icon-placeholder {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #080808;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: background-color 0.3s;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card:hover .icon-placeholder {
    background-color: rgba(94, 23, 235, 0.2);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* 6. Comparison Table Section */
.comparison-section {
    padding: 7rem 5%;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: 24px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.comparison-table th.geo-header {
    color: #a07dff;
    background: rgba(94, 23, 235, 0.15);
    border-radius: 12px 12px 0 0;
}

.comparison-table td.feature-title {
    font-weight: 600;
    color: var(--text-main);
    width: 25%;
}

.comparison-table td.geo-cell {
    background: rgba(94, 23, 235, 0.08);
    color: var(--text-main);
    font-weight: 500;
}

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

/* 7. FAQ Section */
.faq-section {
    padding: 7rem 5%;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-card {
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question:hover {
    color: #a07dff;
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s;
    color: var(--accent);
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s;
    padding: 0 2rem;
}

.faq-card.active .faq-answer {
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

/* 8. Contact CTA / Audit Lead Magnet */
.contact {
    padding: 9rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 60%, rgba(94, 23, 235, 0.2) 0%, rgba(5, 6, 8, 1) 70%);
}

.contact-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.contact .content-container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.3rem, 4.8vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.cta-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 3.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* Audit Form Styling */
.audit-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.audit-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-inputs {
    display: flex;
    gap: 1rem;
}

.audit-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}

.audit-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.form-success-box {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(94, 23, 235, 0.15);
    border: 1px solid var(--accent);
    color: #ffffff;
    margin-top: 1.5rem;
}

.form-success-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Liquid Button */
.cta-wrapper {
    margin-top: 1rem;
}

.btn-liquid {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-color);
    background: var(--text-main);
    border-radius: 9999px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-liquid span {
    position: relative;
    z-index: 2;
    transition: color 0.4s;
}

.btn-liquid .liquid {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #a07dff, #5e17eb);
    z-index: 1;
    border-radius: 40%;
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-25%);
}

.btn-liquid:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(94, 23, 235, 0.4);
}

.btn-liquid:hover span {
    color: #ffffff;
}

.btn-liquid:hover .liquid {
    top: -50%;
    animation: liquidSpin 3s linear infinite;
}

@keyframes liquidSpin {
    0% { transform: translateX(-25%) rotate(0deg); }
    100% { transform: translateX(-25%) rotate(360deg); }
}

/* Modal Popup */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    max-width: 580px;
    width: 100%;
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    border-radius: 24px;
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: #ffffff;
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards ease-out;
}

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

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Liquid Glass */
.liquid-glass {
    background: rgba(255, 255, 255, 0.01);
    background-blend-mode: luminosity;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.liquid-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
        rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
        rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@media (max-width: 900px) {
    .demo-grid, .market-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-audit-form {
        flex-direction: column;
        border-radius: 24px;
        padding: 0.75rem;
    }
    .input-container {
        padding-left: 0.5rem;
    }
    .btn-hero-submit {
        width: 100%;
    }
    .form-inputs {
        flex-direction: column;
    }
    nav {
        display: none;
    }
}
