/* ==========================================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
    /* Brand Colors */
    --color-teal: #0d9488;
    --color-teal-light: #14b8a6;
    --color-teal-dark: #0f766e;
    --color-orange: #f97316;
    --color-orange-light: #fb923c;
    --color-orange-dark: #ea580c;

    /* Backgrounds */
    --color-bg-primary: #0f172a;
    --color-bg-secondary: #1e293b;
    --color-bg-tertiary: #334155;
    --color-bg-card: #1e293b;
    --color-bg-card-hover: #253348;

    /* Text */
    --color-text-primary: #f1f5f9;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;

    /* Borders */
    --color-border: #334155;
    --color-border-light: #475569;

    /* Typography */
    --font-family-base: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --line-height-base: 1.7;

    /* Spacing */
    --section-padding-y: clamp(3rem, 5vw, 5rem);

    /* Borders & Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;

    /* Transitions */
    --transition-base: all 0.2s ease-in-out;
    --transition-slow: all 0.3s ease-in-out;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow-teal: 0 0 20px rgba(13, 148, 136, 0.3);
    --shadow-glow-orange: 0 0 20px rgba(249, 115, 22, 0.3);
}

/* ==========================================================================
   2. Base / Reset Overrides
   ========================================================================== */

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: var(--font-family-base);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: var(--line-height-base);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--color-teal-light);
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-teal);
}

::selection {
    background: rgba(13, 148, 136, 0.3);
    color: var(--color-text-primary);
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-primary);
}

.lead {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.text-secondary {
    color: var(--color-text-secondary) !important;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.btn-accent-teal {
    background-color: var(--color-teal);
    border-color: var(--color-teal);
    color: #fff;
}

.btn-accent-teal:hover,
.btn-accent-teal:focus {
    background-color: var(--color-teal-light);
    border-color: var(--color-teal-light);
    color: #fff;
}

.btn-accent-orange {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
}

.btn-accent-orange:hover,
.btn-accent-orange:focus {
    background-color: var(--color-orange-light);
    border-color: var(--color-orange-light);
    color: #fff;
}

.btn-outline-light {
    border-color: var(--color-border-light);
    color: var(--color-text-primary);
}

.btn-outline-light:hover {
    background-color: var(--color-bg-tertiary);
    border-color: var(--color-border-light);
    color: var(--color-text-primary);
}

.btn {
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition-base);
}

.btn-lg {
    padding: 0.75rem 1.75rem;
}

/* ==========================================================================
   5. Navbar
   ========================================================================== */

.navbar {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
    z-index: 1030;
    transition: var(--transition-slow);
}

.navbar.navbar-scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand svg {
    display: block;
}

.navbar-toggler {
    border-color: var(--color-border-light);
    padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(241, 245, 249, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    transition: var(--transition-base);
}

.navbar .nav-link:hover {
    color: var(--color-text-primary);
}

.navbar .nav-link.active {
    color: var(--color-teal-light);
    position: relative;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background-color: var(--color-teal);
    border-radius: 1px;
}

/* ==========================================================================
   6. Hero Section
   ========================================================================== */

.hero-section {
    padding: clamp(6rem, 12vw, 10rem) 0 var(--section-padding-y);
    background: radial-gradient(ellipse at center, var(--color-bg-secondary) 0%, var(--color-bg-primary) 70%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section--video {
    position: relative;
    overflow: hidden;
}

.hero-section--video .container {
    position: relative;
    z-index: 2;
}

.hero-section__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-section--compact {
    min-height: auto;
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(2rem, 4vw, 3rem);
}

.hero-section__headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-section__subheadline {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-section__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   7. Sections
   ========================================================================== */

.section {
    padding: var(--section-padding-y) 0;
}

.section--alt {
    background-color: var(--color-bg-secondary);
}

.section__header {
    margin-bottom: 3rem;
}

.section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section__header .section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-teal);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   8. Product Cards
   ========================================================================== */

.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card.accent-teal:hover {
    border-color: var(--color-teal);
    box-shadow: var(--shadow-glow-teal);
}

.product-card.accent-orange:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-glow-orange);
}

.product-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.accent-teal .product-card__icon {
    background: rgba(13, 148, 136, 0.15);
    color: var(--color-teal-light);
}

.accent-orange .product-card__icon {
    background: rgba(249, 115, 22, 0.15);
    color: var(--color-orange-light);
}

.product-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.product-card__subtitle {
    font-size: 0.9rem;
    color: var(--color-teal-light);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.accent-orange .product-card__subtitle {
    color: var(--color-orange-light);
}

.product-card__description {
    color: var(--color-text-secondary);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   9. Value / Feature Cards
   ========================================================================== */

.value-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition-base);
}

.value-card:hover {
    border-color: var(--color-border-light);
    background: var(--color-bg-card-hover);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-card__icon.accent-teal {
    background: rgba(13, 148, 136, 0.15);
    color: var(--color-teal-light);
}

.value-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card__text {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ==========================================================================
   10. Trust Strip
   ========================================================================== */

.trust-strip {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-strip__text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

/* ==========================================================================
   11. Use Case Cards (AI Advisor page)
   ========================================================================== */

.use-case-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    height: 100%;
    border-top: 3px solid var(--color-teal);
    transition: var(--transition-base);
}

.use-case-card:hover {
    border-top-color: var(--color-teal-light);
    background: var(--color-bg-card-hover);
}

.use-case-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.use-case-card__text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   12. Pricing Cards
   ========================================================================== */

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.pricing-card--featured {
    border-color: var(--color-teal);
    box-shadow: var(--shadow-glow-teal);
}

.pricing-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-teal-light);
    margin-bottom: 1rem;
}

.pricing-card__text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   13. Feature Visual (AI Advisor steps)
   ========================================================================== */

.feature-visual__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
}

.feature-visual__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.feature-visual__icon.accent-teal {
    background: rgba(13, 148, 136, 0.15);
    color: var(--color-teal-light);
}

/* ==========================================================================
   14. Glossary Cards (JimboMesh page)
   ========================================================================== */

.glossary-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    height: 100%;
    border-left: 3px solid var(--color-orange);
    transition: var(--transition-base);
}

.glossary-card:hover {
    background: var(--color-bg-card-hover);
}

.glossary-card__term {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-orange-light);
    margin-bottom: 0.5rem;
}

.glossary-card__definition {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   15. Feature List
   ========================================================================== */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-teal);
}

/* ==========================================================================
   16. Code Block (JimboMesh quick start)
   ========================================================================== */

.code-block {
    background: #0b1120;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.code-block__header {
    background: var(--color-bg-tertiary);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-block__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-muted);
}

.code-block__dot:nth-child(1) { background: #ef4444; }
.code-block__dot:nth-child(2) { background: #eab308; }
.code-block__dot:nth-child(3) { background: #22c55e; }

.code-block__title {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.code-block__content {
    padding: 1.25rem;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    overflow-x: auto;
}

.code-block__content code {
    color: var(--color-text-secondary);
    font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

/* ==========================================================================
   17. Marketplace Visual
   ========================================================================== */

.marketplace-visual {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.marketplace-visual__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.marketplace-visual__label {
    background: rgba(249, 115, 22, 0.15);
    color: var(--color-orange-light);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.marketplace-visual__center {
    background: var(--color-orange);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1rem;
}

.marketplace-visual__arrow {
    color: var(--color-text-muted);
    font-size: 1.25rem;
}

.marketplace-visual__subtext {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   18. Stat Cards (JimboMesh network stats)
   ========================================================================== */

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem 1rem;
}

.stat-card__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-orange-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card__label {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   19. Founder Card (About page)
   ========================================================================== */

.founder-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
}

.founder-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal), var(--color-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.founder-card__avatar span {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.founder-card__name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.founder-card__role {
    color: var(--color-teal-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-card__bio {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   20. CTA Banner
   ========================================================================== */

.cta-banner {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-banner__headline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-banner__text {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   21. Contact Form
   ========================================================================== */

.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.form-control,
.form-select {
    background-color: var(--color-bg-primary);
    border-color: var(--color-border);
    color: var(--color-text-primary);
    border-radius: var(--border-radius-sm);
    padding: 0.65rem 0.85rem;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--color-bg-primary);
    border-color: var(--color-teal);
    color: var(--color-text-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.25);
}

.form-control::placeholder {
    color: var(--color-text-muted);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.35rem;
}

.text-danger {
    color: #ef4444 !important;
    font-size: 0.85rem;
}

.alert-success {
    background-color: rgba(13, 148, 136, 0.15);
    border-color: var(--color-teal);
    color: var(--color-teal-light);
}

/* ==========================================================================
   22. Contact Info Sidebar
   ========================================================================== */

.contact-info {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.contact-info__item svg {
    color: var(--color-teal-light);
    min-width: 20px;
    margin-top: 0.15rem;
}

.contact-info__item p {
    margin-bottom: 0;
    color: var(--color-text-secondary);
}

.contact-info__item strong {
    display: block;
    color: var(--color-text-primary);
    margin-bottom: 0.15rem;
}

/* ==========================================================================
   23. Footer
   ========================================================================== */

.site-footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0 0;
    margin-top: 0;
}

.footer-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-text a {
    color: var(--color-text-secondary);
}

.footer-text a:hover {
    color: var(--color-teal-light);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-nav a:hover {
    color: var(--color-teal-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.footer-social a:hover {
    color: var(--color-teal-light);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    margin-top: 2rem;
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--color-text-secondary);
}

.footer-bottom a:hover {
    color: var(--color-teal-light);
}

.footer-separator {
    margin: 0 0.5rem;
    color: var(--color-border);
}

/* ==========================================================================
   24. Flywheel (About page product evolution)
   ========================================================================== */

.flywheel {
    position: relative;
    padding-left: 2rem;
}

.flywheel__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    transition: var(--transition-base);
}

.flywheel__item:hover {
    border-color: var(--color-border-light);
    background: var(--color-bg-card-hover);
}

.flywheel__marker {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.flywheel__marker--teal {
    background: rgba(13, 148, 136, 0.15);
    color: var(--color-teal-light);
}

.flywheel__marker--orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--color-orange-light);
}

.flywheel__content {
    flex: 1;
}

.flywheel__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.flywheel__text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.flywheel__connector {
    width: 2px;
    height: 1.5rem;
    background: var(--color-border);
    margin: 0 auto;
    position: relative;
}

.flywheel__connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-teal);
}

/* ==========================================================================
   25. Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section__headline,
.hero-section__subheadline,
.hero-section__actions {
    animation: fadeInUp 0.6s ease-out backwards;
}

.hero-section__subheadline {
    animation-delay: 0.1s;
}

.hero-section__actions {
    animation-delay: 0.2s;
}

/* ==========================================================================
   25. Responsive Overrides
   ========================================================================== */

@media (max-width: 767.98px) {
    .navbar .nav-link.active::after {
        display: none;
    }

    .navbar-collapse {
        padding: 1rem 0;
        border-top: 1px solid var(--color-border);
        margin-top: 0.75rem;
    }

    .hero-section {
        min-height: auto;
        padding: clamp(5rem, 10vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
    }

    .marketplace-visual__row {
        gap: 0.5rem;
    }

    .marketplace-visual__arrow {
        display: none;
    }

    .marketplace-visual__row {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hero-section__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-section__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-section__actions .me-3 {
        margin-right: 0 !important;
    }
}
