/* Styles.css */
/* All miscellaneous styles goes here */

:root {
    --site-ink: #161616;
    --site-blue: #f58220;
    --site-cyan: #f9b24c;
    --site-sand: #f8f5ef;
    --site-slate: #5f5f5f;
    --site-green: #2d7d5b;
    --site-surface: rgba(255, 255, 255, 0.9);
    --site-border: rgba(22, 22, 22, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background:
        linear-gradient(135deg, rgba(245, 130, 32, 0.08), transparent 34%),
        linear-gradient(225deg, rgba(45, 125, 91, 0.06), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #f3eee6 100%);
    color: var(--site-ink);
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand,
.hero-title,
.section-label {
    font-family: 'Sora', sans-serif;
}

p {
    color: var(--site-slate);
}

a {
    text-decoration: none;
}

.site-nav {
    margin: 0;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--site-border);
    box-shadow: 0 12px 30px rgba(22, 22, 22, 0.08);
}

.site-nav .container {
    align-items: center;
}

.site-nav .nav-link,
.site-nav .navbar-brand {
    color: rgba(22, 22, 22, 0.76) !important;
}

.site-nav .nav-link.active,
.site-nav .nav-link:hover,
.site-nav .navbar-brand:hover {
    color: var(--site-blue) !important;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    line-height: 1;
    padding: 0;
}

.brand-logo {
    display: block;
    width: 220px;
    max-height: 84px;
    height: auto;
    object-fit: contain;
}

.site-nav .navbar-toggler {
    border-color: rgba(22, 22, 22, 0.16);
}

.site-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(245, 130, 32, 0.2);
}

.site-nav .nav-link {
    opacity: 0.92;
}

.site-nav .nav-link.active {
    opacity: 1;
}

.nav-action {
    color: rgba(22, 22, 22, 0.76);
}

.nav-action:hover,
.nav-action:focus {
    color: var(--site-blue);
}

.hero-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: var(--site-surface);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(22, 22, 22, 0.1);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(245, 130, 32, 0.12);
    color: var(--site-blue);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5rem, 4.8rem);
    line-height: 0.98;
    letter-spacing: 0;
    color: var(--site-ink);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--site-blue);
    font-weight: 700;
}

.feature-card {
    height: 100%;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 50px rgba(22, 22, 22, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(22, 22, 22, 0.12);
    border-color: rgba(245, 130, 32, 0.24);
}

.feature-card .icon-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.16), rgba(249, 178, 76, 0.24));
    color: var(--site-blue);
    font-size: 1.1rem;
}

.soft-panel {
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 50px rgba(22, 22, 22, 0.08);
}

.hero-stat {
    padding: 1rem 1.1rem;
    border-radius: 8px;
    background: rgba(245, 130, 32, 0.08);
}

.hero-stat strong {
    display: block;
    font-size: 1.05rem;
    color: var(--site-ink);
}

.hero-stat span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-panel {
    position: relative;
    z-index: 1;
}

.hero-image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 24rem;
    background:
        linear-gradient(180deg, rgba(22, 22, 22, 0.06), rgba(22, 22, 22, 0.28)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1200&q=80') center/cover;
    box-shadow: 0 24px 60px rgba(22, 22, 22, 0.18);
}

.hero-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.02), rgba(22, 22, 22, 0.18));
}

.hero-image-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
    padding: 1rem 1.1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(22, 22, 22, 0.12);
}

.hero-image-badge strong {
    display: block;
    color: var(--site-ink);
}

.section-heading {
    max-width: 42rem;
}

.section-heading h2 {
    letter-spacing: 0;
}

.metric-strip {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--site-border);
    box-shadow: 0 18px 50px rgba(22, 22, 22, 0.08);
}

.metric-strip .metric-item {
    padding: 1.1rem 1rem;
}

.metric-strip .metric-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--site-ink);
}

.metric-strip .metric-item span {
    font-size: 0.92rem;
    color: var(--site-slate);
}

.feature-card h5 {
    margin-bottom: 0.6rem;
}

.quote-card {
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 50px rgba(22, 22, 22, 0.08);
}

.sort-chip.active {
    background-color: rgba(245, 130, 32, 0.1);
    border-color: rgba(245, 130, 32, 0.3);
    color: var(--site-ink);
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 50px rgba(22, 22, 22, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 130, 32, 0.24);
    box-shadow: 0 24px 60px rgba(22, 22, 22, 0.12);
}

.product-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.12), rgba(22, 22, 22, 0.04));
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-meta {
    display: inline-block;
    color: var(--site-slate);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-details {
    font-size: 0.95rem;
}

.product-details strong {
    color: var(--site-ink);
}

.cta-panel {
    border-radius: 8px;
    background: linear-gradient(135deg, #111111 0%, #252525 52%, #f58220 140%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(22, 22, 22, 0.2);
}

.cta-panel .btn-light {
    color: var(--site-blue);
}

.btn-primary {
    background-color: var(--site-blue);
    border-color: var(--site-blue);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #db6e10 !important;
    border-color: #db6e10 !important;
    color: #fff !important;
}

.btn-outline-secondary {
    color: var(--site-ink);
    border-color: rgba(22, 22, 22, 0.2);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    background-color: rgba(22, 22, 22, 0.08) !important;
    color: var(--site-ink) !important;
    border-color: rgba(22, 22, 22, 0.2) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.78);
}

.footer-note {
    color: rgba(22, 22, 22, 0.7);
}

.hero-logo-card {
    position: relative;
    display: flex;
    min-height: 24rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(245, 130, 32, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 178, 76, 0.16)),
        linear-gradient(180deg, #ffffff 0%, #fff8ef 100%);
    box-shadow: 0 24px 60px rgba(22, 22, 22, 0.14);
}

.hero-logo-card img {
    width: min(82%, 25rem);
    max-height: 18rem;
    object-fit: contain;
}

.statement-panel {
    height: 100%;
    border-left: 6px solid var(--site-blue);
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    box-shadow: 0 18px 50px rgba(22, 22, 22, 0.12);
}

.statement-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.tiny-stat {
    display: block;
    padding-top: 0.8rem;
    border-top: 1px solid var(--site-border);
    color: var(--site-green);
    font-size: 0.88rem;
    font-weight: 700;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
}

.workflow-step {
    min-height: 10rem;
    padding: 1rem;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
}

.workflow-step i {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    background: rgba(245, 130, 32, 0.12);
    color: var(--site-blue);
}

.workflow-step strong,
.workflow-step span,
.timeline-list strong,
.timeline-list span,
.quote-card strong,
.quote-card span {
    display: block;
}

.workflow-step strong {
    color: var(--site-ink);
}

.workflow-step span {
    margin-top: 0.35rem;
    color: var(--site-slate);
    font-size: 0.92rem;
}

.timeline-list {
    display: grid;
    gap: 0.85rem;
}

.timeline-list div {
    padding: 1rem 1.1rem;
    border: 1px solid var(--site-border);
    border-left: 5px solid var(--site-blue);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 36px rgba(22, 22, 22, 0.06);
}

.timeline-list span,
.quote-card span {
    color: var(--site-slate);
}

.quote-card {
    min-height: 6rem;
}

.contact-phone {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        padding-top: 0;
    }

    .brand-logo {
        width: 180px;
        max-height: 70px;
    }

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

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-logo-card {
        min-height: 18rem;
    }
}

.http-error {
    margin-top: 5rem;
}

.http-error h1 {
    font-size: 8rem;
    font-weight: bold;
}

.http-error p {
    font-size: 1.5rem;
}

/* Admin-inspired public theme */
:root {
    --site-ink: #111827;
    --site-blue: #2563eb;
    --site-cyan: #06b6d4;
    --site-sand: #f8fafc;
    --site-slate: #64748b;
    --site-green: #10b981;
    --site-surface: rgba(255, 255, 255, 0.88);
    --site-border: rgba(148, 163, 184, 0.26);
    --site-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* InnovaEdge logo color system */
:root {
    --site-ink: #111111;
    --site-blue: #ff7a00;
    --site-cyan: #ffb35c;
    --site-sand: #fff8ef;
    --site-slate: #5f5f5f;
    --site-green: #2f7d5a;
    --site-surface: rgba(255, 255, 255, 0.9);
    --site-border: rgba(17, 17, 17, 0.1);
    --site-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

body {
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.1), transparent 34%),
        linear-gradient(225deg, rgba(17, 17, 17, 0.04), transparent 30%),
        linear-gradient(180deg, #fffdf9 0%, #fff5e8 48%, #ffffff 100%);
}

.site-nav .nav-link.active,
.site-nav .nav-link:hover {
    background: rgba(255, 122, 0, 0.1);
    color: var(--site-blue) !important;
}

.site-nav .nav-cta {
    background: var(--site-blue);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.2);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
    background: #e86d00;
}

.hero-shell {
    border-color: rgba(255, 122, 0, 0.18);
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 255, 255, 0.98) 42%, rgba(17, 17, 17, 0.035));
}

.hero-pill {
    border-color: rgba(255, 122, 0, 0.26);
    background: rgba(255, 122, 0, 0.1);
    color: #c95700;
}

.section-label,
.metric-strip .metric-item strong {
    color: var(--site-blue);
}

.btn-primary {
    background: var(--site-blue);
    border-color: var(--site-blue);
    box-shadow: 0 14px 28px rgba(255, 122, 0, 0.22);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #e86d00 !important;
    border-color: #e86d00 !important;
}

.feature-card:hover,
.product-card:hover {
    border-color: rgba(255, 122, 0, 0.28);
    box-shadow: 0 24px 60px rgba(255, 122, 0, 0.12);
}

/* Keep the public menu visible even with Filament/Tailwind and Bootstrap collapse styles loaded together. */
.site-nav .container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.site-nav .navbar-collapse {
    display: flex !important;
    visibility: visible !important;
    height: auto !important;
    opacity: 1 !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
    gap: 0.75rem;
}

.site-nav .navbar-toggler {
    display: none !important;
}

.site-nav .navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.site-nav .nav-menu {
    margin-right: auto;
}

@media (max-width: 991.98px) {
    .site-nav .container,
    .site-nav .navbar-collapse,
    .site-nav .navbar-nav {
        align-items: stretch;
        width: 100%;
    }

    .site-nav .navbar-collapse {
        flex-basis: 100%;
        flex-direction: column;
    }

    .site-nav .navbar-brand {
        width: 100%;
    }

    .site-nav .navbar-nav {
        flex-direction: column;
    }

    .site-nav .nav-link,
    .site-nav .nav-action {
        width: 100%;
        text-align: left;
    }
}

.feature-card .icon-badge,
.workflow-step i,
.hero-dashboard-list i {
    background: rgba(255, 122, 0, 0.1);
    color: var(--site-blue);
}

.statement-panel,
.hero-dashboard::before {
    background: linear-gradient(135deg, #111111, #262626);
}

.statement-panel {
    border-color: rgba(255, 122, 0, 0.22);
    border-left-color: var(--site-blue);
}

.timeline-list div {
    border-left-color: var(--site-blue);
}

.hero-dashboard {
    border-color: rgba(255, 122, 0, 0.2);
}

.hero-dashboard-top span {
    color: #ffd8ad;
}

.status-dot {
    background: rgba(255, 122, 0, 0.16);
    color: #ffcf99 !important;
}

.hero-dashboard .hero-image-badge {
    border-color: rgba(255, 122, 0, 0.24);
    background: rgba(255, 248, 239, 0.95);
}

.cta-panel {
    border-color: rgba(255, 122, 0, 0.3);
    background: linear-gradient(135deg, #111111 0%, #262626 62%, #ff7a00 145%);
    box-shadow: 0 28px 70px rgba(17, 17, 17, 0.24);
}

.sort-chip.active {
    background-color: rgba(255, 122, 0, 0.1);
    border-color: rgba(255, 122, 0, 0.32);
}

body {
    background:
        linear-gradient(180deg, #f8fafc 0%, #eef2ff 42%, #f8fafc 100%);
    color: var(--site-ink);
}

p {
    color: var(--site-slate);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(16px);
}

.site-nav .nav-link {
    border-radius: 8px;
    color: #475569 !important;
    font-weight: 700;
    padding: 0.55rem 0.8rem !important;
}

.site-nav .nav-menu,
.site-nav .nav-actions {
    gap: 0.25rem;
}

.site-nav .nav-actions {
    flex-shrink: 0;
}

.site-nav .nav-link.active,
.site-nav .nav-link:hover {
    background: #eff6ff;
    color: var(--site-blue) !important;
}

.site-nav .nav-cta {
    background: var(--site-blue);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
    background: #1d4ed8;
    color: #ffffff !important;
}

.brand-logo {
    width: 190px;
    max-height: 72px;
}

.home-page {
    padding-top: 2rem;
}

.hero-shell {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(239, 246, 255, 0.94), rgba(255, 255, 255, 0.98) 42%, rgba(240, 253, 250, 0.86));
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
}

.hero-pill {
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-title {
    max-width: 46rem;
    color: #0f172a;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1;
}

.lead {
    color: #475569;
}

.btn {
    border-radius: 8px;
    font-weight: 800;
}

.btn-primary {
    background: var(--site-blue);
    border-color: var(--site-blue);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
}

.btn-outline-secondary {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #334155;
}

.metric-strip,
.feature-card,
.soft-panel,
.quote-card,
.timeline-list div,
.product-card {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--site-shadow);
}

.metric-strip .metric-item {
    padding: 1.25rem;
}

.metric-strip .metric-item strong {
    color: var(--site-blue);
    font-size: 1.55rem;
}

.section-label {
    color: var(--site-blue);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.feature-card:hover,
.product-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.13);
}

.feature-card .icon-badge,
.workflow-step i {
    background: #eff6ff;
    color: var(--site-blue);
}

.statement-panel {
    border: 1px solid #dbeafe;
    border-left: 6px solid var(--site-blue);
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.tiny-stat {
    border-top-color: #e2e8f0;
    color: #059669;
}

.workflow-step {
    border-color: #e2e8f0;
    background: #ffffff;
}

.timeline-list div {
    border-left-color: var(--site-blue);
}

.cta-panel {
    border: 1px solid rgba(37, 99, 235, 0.28);
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 70%, #06b6d4 130%);
    box-shadow: 0 28px 70px rgba(37, 99, 235, 0.24);
}

.hero-dashboard {
    position: relative;
    min-height: 31rem;
    overflow: hidden;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.hero-dashboard::before {
    content: '';
    display: block;
    height: 4.5rem;
    background: #0f172a;
}

.hero-dashboard-top {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.hero-dashboard-top span {
    display: block;
    color: #bfdbfe;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-dashboard-top strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
}

.status-dot {
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.16);
    color: #86efac !important;
    padding: 0.35rem 0.65rem;
}

.hero-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 1.1rem;
}

.dash-stat {
    min-height: 7rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    padding: 1rem;
}

.dash-stat span {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 800;
}

.dash-stat strong {
    display: block;
    margin-top: 0.75rem;
    color: #0f172a;
    font-size: 1.8rem;
    line-height: 1;
}

.hero-dashboard-list {
    display: grid;
    gap: 0.75rem;
    padding: 0 1.1rem 6rem;
}

.hero-dashboard-list div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    padding: 0.9rem 1rem;
    color: #334155;
    font-weight: 800;
}

.hero-dashboard-list i {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 8px;
    background: #eff6ff;
    color: var(--site-blue);
}

.hero-dashboard .hero-image-badge {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    background: rgba(239, 246, 255, 0.94);
    border: 1px solid #bfdbfe;
}

@media (max-width: 575.98px) {
    .hero-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .hero-dashboard {
        min-height: auto;
    }

    .hero-dashboard-list {
        padding-bottom: 8rem;
    }
}

/* Final InnovaEdge palette enforcement */
.site-nav .nav-link.active,
.site-nav .nav-link:hover {
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00 !important;
}

.site-nav .nav-cta,
.btn-primary {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(255, 122, 0, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #e86d00 !important;
    border-color: #e86d00 !important;
}

.hero-shell {
    border-color: rgba(255, 122, 0, 0.18);
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 255, 255, 0.98) 42%, rgba(17, 17, 17, 0.035));
}

.hero-pill,
.feature-card .icon-badge,
.workflow-step i,
.hero-dashboard-list i {
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
}

.hero-pill,
.hero-dashboard,
.hero-dashboard .hero-image-badge {
    border-color: rgba(255, 122, 0, 0.24);
}

.section-label,
.metric-strip .metric-item strong {
    color: #ff7a00;
}

.statement-panel,
.hero-dashboard::before {
    background: linear-gradient(135deg, #111111, #262626);
}

.cta-panel {
    background: linear-gradient(135deg, #111111 0%, #262626 62%, #ff7a00 145%);
    box-shadow: 0 28px 70px rgba(17, 17, 17, 0.24);
}

.feature-card:hover,
.product-card:hover {
    border-color: rgba(255, 122, 0, 0.28);
    box-shadow: 0 24px 60px rgba(255, 122, 0, 0.12);
}
