@font-face {
    font-family: 'Mirano Extended';
    src: url('../fonts/MiranoExtendedFreebie-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mirano Extended';
    src: url('../fonts/MiranoExtendedFreebie-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mirano Extended', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1E1E1E;
}

/* Main Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 161, 0, 0.2);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E5A100;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #C48800;
}

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

.main-nav a {
    color: #FAF9F6;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.main-nav a.active {
    color: #E5A100;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E5A100;
}

.main-nav .main-nav-support {
    color: #E5A100;
    font-weight: 600;
}

.main-nav .main-nav-support:hover {
    color: #C48800;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: #E5A100;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-toggle.is-active .mobile-nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active .mobile-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-active .mobile-nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Adjust body padding to account for fixed header */
body {
    padding-top: 70px;
}

/* Hero Section */
.hero {
    background: #121212;
    color: #FAF9F6;
    text-align: center;
    padding: 100px 20px 80px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .tagline {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #E5A100;
    font-weight: 600;
}

.hero .subline {
    font-size: 1.25rem;
    color: #FAF9F6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #E5A100;
    color: #121212;
}

.btn-primary:hover {
    background: #C48800;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #FAF9F6;
    border: 2px solid #FAF9F6;
}

.btn-secondary:hover {
    background: rgba(250, 249, 246, 0.1);
    transform: translateY(-2px);
}

.hero .meta {
    font-size: 0.875rem;
    color: #8A8A86;
}

/* Page Hero (smaller hero for internal pages) */
.page-hero {
    background: #121212;
    color: #FAF9F6;
    text-align: center;
    padding: 80px 20px 60px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.page-hero .tagline {
    font-size: 1.25rem;
    color: #E5A100;
    font-weight: 500;
}

/* Mini Navigation */
.mini-nav {
    background: rgba(250, 249, 246, 0.95);
    border-bottom: 1px solid rgba(229, 161, 0, 0.2);
    padding: 0.75rem 20px;
    position: sticky;
    top: 70px;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.mini-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mini-nav-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #8A8A86;
}

.mini-nav-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mini-nav-button {
    padding: 0.4rem 0.875rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(229, 161, 0, 0.3);
    background: transparent;
    color: #8A8A86;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mini-nav-button:hover {
    background: rgba(229, 161, 0, 0.1);
    border-color: #E5A100;
    color: #E5A100;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-light {
    background: #F0EFEB;
}

.section-dark {
    background: #121212;
    color: #FAF9F6;
}

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

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-dark .section-heading {
    color: #FAF9F6;
}

/* Problem/Solution Section */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.problem-box,
.solution-box {
    padding: 2rem;
    border-radius: 12px;
    background: #FAF9F6;
}

.problem-box {
    opacity: 0.7;
}

.problem-box h3 {
    text-decoration: line-through;
    color: #8A8A86;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem-box p {
    color: #8A8A86;
}

.solution-box {
    border: 3px solid #E5A100;
    position: relative;
}

.solution-box h3 {
    color: #E5A100;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.step-card .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #E5A100;
    font-weight: 600;
}

.step-card p {
    font-size: 0.95rem;
    color: #1E1E1E;
}

/* Demo GIF */
.demo-container {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.demo-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #D0CFCB;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item .emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #FAF9F6;
    font-size: 1rem;
}

/* Quick Start */
.quick-start-content {
    max-width: 800px;
    margin: 0 auto;
}

.prerequisite {
    background: #FAF9F6;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #E5A100;
}

.prerequisite strong {
    color: #E5A100;
}

.prerequisite a {
    color: #E5A100;
    text-decoration: underline;
}

.prerequisite a:hover {
    color: #C48800;
}

.install-step {
    margin-bottom: 2rem;
}

.install-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #E5A100;
}

.code-block-wrapper {
    position: relative;
}

.code-block {
    background: #1E1E1E;
    color: #FAF9F6;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    border: 1px solid #3A3A3A;
    line-height: 1.8;
}

.code-block code {
    display: block;
    white-space: pre;
}

.copy-button {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #E5A100;
    color: #121212;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.copy-button:hover {
    background: #C48800;
    transform: translateY(-1px);
}

.copy-button.copied {
    background: #4CAF50;
    color: white;
}

.terminal-note {
    background: #FAF9F6;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #E5A100;
    font-size: 0.95rem;
    color: #1E1E1E;
}

.terminal-note strong {
    color: #1E1E1E;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

/* Keep strong inline when used inside list items or paragraphs */
.terminal-note li strong,
.terminal-note p strong {
    display: inline;
    font-size: inherit;
    font-weight: 600;
}

/* UI element / button label */
kbd {
    display: inline;
    background: #f0f0f0;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.875em;
    font-family: inherit;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* Orange questions on troubleshooting page */
#installation-issues .terminal-note strong,
#docker-issues .terminal-note strong,
#runtime-issues .terminal-note strong,
#api-issues .terminal-note strong,
#desktop-issues .terminal-note strong,
#faq .terminal-note strong {
    color: #E5A100;
}

.terminal-note ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.terminal-note li {
    margin-bottom: 0.25rem;
}

.terminal-note--dark-success {
    margin-top: 2rem;
    background: #1a2a1a;
    border-left-color: #4CAF50;
    color: #FAF9F6;
}

.terminal-note--dark-success strong {
    color: #FAF9F6;
}

/* Install Page Utilities */
.install-notice-banner {
    background: #FFF8E7;
    border-bottom: 1px solid #E5A100;
    padding: 0.875rem 0;
}

.install-notice-text {
    font-size: 0.95rem;
    color: #5a4000;
}

.install-text-no-margin-bottom {
    margin-bottom: 1rem;
}

.install-button-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.install-version-text {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}

.install-list {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.install-list-indent {
    margin-top: 0.5rem;
    margin-left: 2.5rem;
}

.install-sublist {
    margin-left: 1rem;
    margin-top: 0.25rem;
}

.install-list-spaced li + li {
    margin-top: 0.5rem;
}

.install-list-tight li + li {
    margin-top: 0.25rem;
}

.install-why-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

.install-step-preview-label {
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
}

.install-media-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.install-media-card {
    margin: 0;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
}

.install-media-card-wide {
    min-width: 200px;
    max-width: 300px;
}

.install-media-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.install-media-caption {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.install-screen {
    margin: 1.5rem 0;
}

.install-screen-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.install-link {
    color: #E5A100;
    text-decoration: underline;
}

.install-link-strong {
    font-weight: 600;
}

.install-text-top-sm {
    margin-top: 0.5rem;
}

.install-text-top-md {
    margin-top: 0.75rem;
}

.install-block-top-md {
    margin-top: 1rem;
}

.install-code-top {
    margin-top: 0.75rem;
}

.install-list-item-top-md {
    margin-top: 0.75rem;
}

.terminal-note--light-success {
    margin-top: 2rem;
    border-left-color: #4CAF50;
    background: #E8F5E9;
}

.after-install .note.note-top-sm {
    margin-top: 0.5rem;
}

/* Troubleshooting Page Utilities */
.trouble-note-spaced {
    margin-top: 1.5rem;
}

.trouble-text-top {
    margin-top: 0.5rem;
}

.trouble-text-top-md {
    margin-top: 0.75rem;
}

.trouble-list {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.trouble-sublist {
    margin-left: 1.5rem;
    margin-top: 0.25rem;
}

.trouble-code-top {
    margin-top: 0.5rem;
}

.trouble-link {
    color: #E5A100;
    text-decoration: underline;
}

.trouble-link-strong {
    font-weight: 600;
}

.after-install {
    margin-top: 2rem;
    text-align: center;
}

.after-install p {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.after-install .note {
    font-size: 0.95rem;
    color: #8A8A86;
}

/* Who Is This For */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: #FAF9F6;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.audience-card .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #E5A100;
    font-weight: 600;
}

.audience-card p {
    color: #1E1E1E;
}

/* Contact & Support Section */
.contact-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-column,
.support-column {
    background: #FAF9F6;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.column-heading {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #E5A100;
    font-weight: 600;
}

.column-description {
    font-size: 1rem;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1E1E1E;
}

.required {
    color: #E5A100;
}

.form-input,
.form-textarea {
    padding: 0.875rem;
    font-size: 1rem;
    font-family: 'Mirano Extended', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 2px solid #D0CFCB;
    border-radius: 8px;
    background: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #E5A100;
    box-shadow: 0 0 0 3px rgba(229, 161, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #8A8A86;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    font-size: 0.875rem;
    color: #D32F2F;
    display: none;
    margin-top: 0.25rem;
}

.form-error.visible {
    display: block;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border-left: 4px solid #4CAF50;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    border-left: 4px solid #D32F2F;
}

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

.btn-form {
    margin-top: 0.5rem;
    width: 100%;
    position: relative;
}

.btn-form:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: inline;
}

.is-hidden {
    display: none !important;
}

/* Contact Page Utilities */
.contact-community-center {
    text-align: center;
}

.contact-community-intro {
    margin-top: 1rem;
}

.contact-community-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn-accent {
    border-color: #E5A100;
    color: #E5A100;
}

.contact-note-top-lg {
    margin-top: 1.5rem;
}

.contact-note-top-xl {
    margin-top: 2rem;
}

.contact-text-top {
    margin-top: 0.5rem;
}

.contact-link {
    color: #E5A100;
    text-decoration: underline;
}

/* Support Column Styles */
.support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.support-text {
    font-size: 1rem;
    color: #1E1E1E;
    line-height: 1.6;
}

.btn-support {
    background: #FFDD00;
    color: #000000;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-support:hover {
    background: #E5C700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 161, 0, 0.3);
}

.support-note {
    font-size: 0.875rem;
    color: #8A8A86;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: #121212;
    color: #FAF9F6;
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #E5A100;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C48800;
}

.footer-tagline {
    color: #8A8A86;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-copyright {
    color: #8A8A86;
    font-size: 0.875rem;
}

/* Top Support Link (for single-page version only, removed in multi-page) */
.top-support {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #FAF9F6;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 161, 0, 0.3);
    backdrop-filter: blur(10px);
}

.top-support:hover {
    background: rgba(229, 161, 0, 0.95);
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 161, 0, 0.3);
}

/* Sticky Navigation (single-page only, removed in multi-page) */
.sticky-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(229, 161, 0, 0.3);
    border: 2px solid rgba(229, 161, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    background: rgba(229, 161, 0, 0.6);
    border-color: #E5A100;
    transform: scale(1.3);
}

.nav-dot.active {
    background: #E5A100;
    border-color: #E5A100;
    transform: scale(1.2);
}

.nav-dot::after {
    content: attr(data-label);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 18, 18, 0.95);
    color: #FAF9F6;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 161, 0, 0.3);
}

.nav-dot:hover::after {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.95);
    color: #E5A100;
    border: 2px solid rgba(229, 161, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #E5A100;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(229, 161, 0, 0.3);
}

/* Orange color for Manual Setup heading */
#manual-setup .section-heading {
    color: #E5A100;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        position: relative;
        padding: 1rem;
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        order: 3;
    }

    .main-nav {
        display: flex;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        width: auto;
        padding: 0.5rem 1rem 0.75rem;
        gap: 0.5rem;
        flex-direction: column;
        align-items: stretch;
        background: rgba(18, 18, 18, 0.98);
        border: 1px solid rgba(229, 161, 0, 0.25);
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    }

    .main-nav a {
        padding: 0.6rem 0.25rem;
        text-align: left;
    }

    .main-header.menu-open .main-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.25rem;
    }

    .hero .subline {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .problem-solution {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-column,
    .support-column {
        padding: 2rem;
    }

    .column-heading {
        font-size: 1.5rem;
    }

    /* Hide sticky nav on mobile to avoid clutter */
    .sticky-nav {
        display: none;
    }

    /* Adjust back to top button on mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .main-nav a {
        font-size: 0.9rem;
    }

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

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

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

    section {
        padding: 60px 20px;
    }
}
