:root {
    --orange: #F05025;
    --orange-light: #FF7A3D;
    --cyan: #FF7A3D;
    --teal: #FF8F66;
    --black: #121417;
    --near-black: #1A1E24;
    --card-bg: rgba(31, 35, 42, 0.76);
    --card-hover: rgba(40, 45, 53, 0.9);
    --white: #F5F6F8;
    --gray-400: #C7CBD1;
    --gray-500: #959CA6;
    --gray-600: #6C7480;
    --border: rgba(255, 255, 255, 0.12);
    --border-hover: rgba(240, 80, 37, 0.5);
    --blur: blur(16px);
}

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

a {
    text-decoration: none;
    color: var(--orange-light);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--orange);
}

/* Nav links should stay white */
.nav-link {
    color: var(--white) !important;
}

.nav-link:hover {
    color: var(--orange-light) !important;
}

/* Footer links and other standard links */
.footer a, .section a:not(.btn):not(.mini-link):not(.nav-link) {
    color: var(--orange-light);
    border-bottom: 1px solid transparent;
}

.footer a:hover, .section a:not(.btn):not(.mini-link):not(.nav-link):hover {
    border-bottom-color: var(--orange-light);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: 'Sora', sans-serif;
    background:
        radial-gradient(1000px 540px at 88% -16%, rgba(240, 80, 37, 0.17), transparent 60%),
        radial-gradient(760px 460px at 10% 0%, rgba(255, 255, 255, 0.06), transparent 60%),
        linear-gradient(150deg, #111317 0%, #171A21 55%, #1C2027 100%);
    color: var(--white);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.22;
    z-index: 0;
}

.app-shell {
    position: relative;
    z-index: 2;
    width: min(1320px, 100% - 6.4rem);
    margin: 2.4rem auto 7rem;
}

/* Legacy content wrappers used across demo and guide pages */
.container {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    margin-top: 1rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 100%;
    color: var(--white);
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 700;
}

.glass {
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: var(--blur) saturate(128%);
    -webkit-backdrop-filter: var(--blur) saturate(128%);
}

.topbar {
    position: sticky;
    top: 14px;
    z-index: 1000;
    border-radius: 20px;
    padding: 1rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(240, 80, 37, 0.2);
    display: inline-block;
    margin-left: 0.4rem;
}

.burger-btn {
    display: none;
}

/* Theme Toggle */
.theme-toggle-inline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: 1rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.theme-toggle-inline i {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-inline span {
    display: none;
}

/* Responsive Header and Mobile Menu Improvements */
@media (max-width: 900px) {
    .topbar {
        padding: 0.75rem 1rem;
        top: 10px;
    }

    .brand span:not(.status-dot) {
        display: none;
    }

    .brand .status-dot {
        margin-left: 0;
    }

    .nav-links {
        display: none !important;
    }
}

/* Ensure the burger button is properly positioned in the topbar */
.burger-btn {
    margin-left: auto;
}

.theme-toggle-inline {
    margin-left: 0.5rem;
}

/* Mobile menu base styles (apply globally so content doesn't break on desktop) */
/* Mobile menu enhancements */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 16, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 340px);
    height: 100vh;
    padding: 2rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: linear-gradient(190deg, rgba(20, 24, 30, 0.98), rgba(14, 17, 24, 0.99));
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.35);
    transform: translateX(104%);
    transition: transform 0.28s ease;
}

.mobile-menu-overlay.open .mobile-nav-links {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-brand-mark {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.mobile-menu-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu-title {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
    color: var(--white);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: all 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.is-active {
    background: rgba(240, 80, 37, 0.1);
    border-color: rgba(240, 80, 37, 0.3);
    color: var(--orange-light);
}

.mobile-nav-icon {
    width: 32px;
    font-size: 1.2rem;
}

.mobile-nav-text {
    flex: 1;
    font-weight: 600;
}

.mobile-install-link {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    background: var(--orange);
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

/* Fix for topbar content on mobile */
@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }
    
    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1100;
    }
    
    .burger-btn span {
        width: 100%;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .burger-btn.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .burger-btn.open span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-btn.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.mobile-nav-link.is-active {
    background: rgba(240, 80, 37, 0.1);
    border-color: rgba(240, 80, 37, 0.3);
    color: var(--orange-light);
}

.mobile-nav-link.is-cta {
    border-color: rgba(240, 80, 37, 0.5);
    background: linear-gradient(120deg, rgba(240, 80, 37, 0.26), rgba(255, 122, 61, 0.2));
}

.mobile-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--orange-light);
    margin-right: 0.35rem;
}

.mobile-install-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-weight: 800;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.9rem 1rem;
    border-radius: 12px;
    margin-top: 0.4rem;
}

.mobile-install-link:hover {
    border-color: rgba(240, 80, 37, 0.5);
    color: var(--orange-light);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.mobile-menu-head .mobile-menu-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--orange-light);
}

.mobile-menu-head .mobile-menu-note {
    color: var(--gray-500);
    font-size: 0.8rem;
    line-height: 1;
}

.mobile-menu-head .mobile-menu-title {
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .theme-toggle-inline {
        margin-left: 0.5rem;
        margin-right: 2.5rem; /* Make room for burger */
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.62rem 0.88rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.nav-cta {
    background: linear-gradient(120deg, rgba(240, 80, 37, 0.26), rgba(255, 122, 61, 0.2));
    color: var(--white);
    border-color: rgba(240, 80, 37, 0.5);
}

.hero {
    margin-top: 2.4rem;
    border-radius: 32px;
    padding: clamp(2.8rem, 4.2vw, 4.8rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.hero > :only-child {
    grid-column: 1 / -1;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.eyebrow {
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange-light);
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(240, 80, 37, 0.45);
    background: rgba(240, 80, 37, 0.11);
}

.hero h1 {
    font-size: clamp(2rem, 3.3vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 16ch;
}

.hero h1 span {
    background: linear-gradient(110deg, #ffffff 0%, #FFD2BC 62%, #FF8C61 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    color: var(--gray-400);
    max-width: 62ch;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    gap: 0.95rem;
    flex-wrap: wrap;
    margin-top: 0.7rem;
}

.btn {
    border: 1px solid transparent;
    border-radius: 15px;
    padding: 0.92rem 1.24rem;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.56rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(125deg, var(--orange) 0%, #FF6E3A 48%, #FF9453 100%);
    box-shadow: 0 14px 30px rgba(240, 80, 37, 0.28);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.micro-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.3rem;
}

.micro-chip {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.2rem 1.25rem;
}

.micro-chip small {
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.micro-chip strong {
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-visual img {
    width: 100%;
    min-height: 520px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1.03) contrast(1.04);
}

.hero-note {
    position: relative;
    margin-top: -110px;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(24, 27, 34, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hero-note strong {
    font-size: 0.95rem;
    color: var(--white);
}

.hero-note span {
    color: var(--gray-400);
    font-size: 0.86rem;
    line-height: 1.65;
}

.section {
    margin-top: 2.8rem;
    border-radius: 28px;
    padding: clamp(2.4rem, 3.8vw, 4rem);
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.6rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section h2 {
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    letter-spacing: -0.02em;
}

.section p {
    color: var(--gray-400);
    font-size: 0.98rem;
    line-height: 1.72;
}

.price-split-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(240, 80, 37, 0.45);
    background: rgba(240, 80, 37, 0.12);
    color: #ffd8c8 !important;
    font-weight: 700;
    line-height: 1.35;
}

.price-split-note i {
    color: var(--orange-light);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 540px), 1fr));
    gap: 1.5rem;
}

.service-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.6rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.7rem;
    align-items: center;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    background: var(--card-hover);
}

.service-media {
    border-radius: 18px;
    overflow: hidden;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-body {
    display: grid;
    gap: 0.95rem;
}

.service-top {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    width: max-content;
    border-radius: 999px;
    padding: 0.36rem 0.72rem;
    border: 1px solid rgba(240, 80, 37, 0.4);
    background: rgba(240, 80, 37, 0.12);
}

.service-top i {
    font-size: 1rem;
    color: var(--orange-light);
}

.service-top span {
    font-size: 0.68rem;
    color: #FFD8C8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.08rem;
    line-height: 1.35;
}

.price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.price-line strong {
    font-size: 1.2rem;
}

.price-line small {
    color: var(--gray-500);
    font-size: 0.79rem;
    font-weight: 500;
}

.mini-actions {
    display: flex;
    gap: 0.72rem;
    flex-wrap: wrap;
}

.mini-link {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 0.56rem 0.78rem;
    background: rgba(255, 255, 255, 0.05);
}

.mini-link:hover {
    border-color: var(--orange-light);
    color: var(--orange-light);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
}

.back-button:hover {
    color: var(--orange-light);
    background: rgba(240, 80, 37, 0.05);
    border-color: rgba(240, 80, 37, 0.2);
    transform: translateX(-4px);
}

.industry-scroll {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.industry-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.15rem;
    display: grid;
    gap: 0.9rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.industry-card:hover {
    border-color: var(--orange-light);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.industry-card:hover .industry-image {
    border-color: var(--orange-light);
}

.industry-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.industry-copy {
    display: grid;
    gap: 0.6rem;
    padding: 0.1rem 0.2rem 0.2rem;
}

.industry-card h3 {
    font-size: 1.06rem;
}

.industry-card .mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--orange-light);
    font-weight: 700;
}

.app-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.8rem;
    align-items: center;
    border-radius: 24px;
    border: 1px solid rgba(240, 80, 37, 0.44);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.04), rgba(240, 80, 37, 0.14));
    padding: 1.9rem;
    margin-top: 2.2rem;
}

.app-cta h3 {
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    margin-bottom: 0.55rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.8rem;
    margin-top: 1.1rem;
}

.contact-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
}

.contact-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.95rem;
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-list a {
    color: var(--white);
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--orange-light);
}

.form-grid {
    display: grid;
    gap: 0.75rem;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(18, 22, 29, 0.82);
    color: var(--white);
    border-radius: 12px;
    padding: 0.84rem 0.95rem;
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-grid input:focus,
.form-grid textarea:focus {
    border-color: var(--orange);
}

.guide-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

.guide-table th,
.guide-table td {
    overflow-wrap: anywhere;
}

.footer {
    margin-top: 2.8rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    padding: 1.45rem 1.6rem;
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
    color: var(--gray-500);
    font-size: 0.86rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.install-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    place-items: center;
    background: rgba(8, 8, 8, 0.62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1rem;
}

.install-modal[hidden] {
    display: none;
}

.install-card {
    width: min(520px, 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(24, 28, 35, 0.95);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    padding: 1.5rem;
}

.install-card h3 {
    font-size: 1.24rem;
    margin-bottom: 0.55rem;
}

.install-card p {
    color: var(--gray-400);
    font-size: 0.94rem;
    margin-bottom: 1rem;
}

.install-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.install-actions button {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.66rem 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
}

.install-actions .primary {
    background: linear-gradient(120deg, var(--orange) 0%, #FF7A3D 100%);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 440px;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .industry-scroll {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    .app-shell {
        width: min(1220px, 100% - 1.35rem);
        margin-top: 0.8rem;
    }

    .topbar {
        border-radius: 16px;
        padding: 0.78rem 0.95rem;
    }

    .brand span:last-child {
        display: none;
    }

    .nav-links {
        display: none; /* Hide default nav on mobile */
    }

    /* Burger Menu Styles */
    .burger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(23, 27, 34, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 14px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px) saturate(130%);
        -webkit-backdrop-filter: blur(10px) saturate(130%);
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: absolute;
        right: 0.9rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    }

    .burger-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.06);
        opacity: 1;
        pointer-events: none;
    }

    .theme-toggle-inline {
        margin-left: auto;
        margin-right: 3.35rem; /* Make room for burger */
    }

    .burger-btn span {
        width: 18px;
        height: 2px;
        background: var(--white);
        border-radius: 999px;
        transition: all 0.25s ease;
        position: absolute;
        transform-origin: center;
        box-shadow: none;
        opacity: 0.94;
    }

    .burger-btn span:nth-child(1) {
        transform: translateY(-6px);
    }

    .burger-btn span:nth-child(2) {
        width: 14px;
        transform: translateX(2px);
    }

    .burger-btn span:nth-child(3) {
        transform: translateY(6px);
    }

    .burger-btn:hover {
        transform: translateY(-50%) scale(1.02);
        border-color: rgba(255, 122, 61, 0.42);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.11);
    }

    .burger-btn.open span:nth-child(1) {
        transform: rotate(45deg);
    }

    .burger-btn.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .burger-btn.open span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(8, 10, 16, 0.52);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
        font-size: 1.15rem;
        cursor: pointer;
        padding: 0;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .mobile-menu-close:hover {
        color: var(--orange);
        transform: rotate(90deg);
    }

    .mobile-nav-links {
        position: absolute;
        top: 0;
        right: 0;
        width: min(86vw, 340px);
        height: 100vh;
        padding: 4.5rem 1.1rem 1.4rem;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        background: linear-gradient(190deg, rgba(20, 24, 30, 0.95), rgba(14, 17, 24, 0.96));
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: -18px 0 42px rgba(0, 0, 0, 0.35);
        transform: translateX(104%);
        transition: transform 0.28s ease;
    }

    .mobile-menu-overlay.open .mobile-nav-links {
        transform: translateX(0);
    }

    .mobile-nav-link {
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        transition: all 0.22s ease;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 0.85rem 0.9rem;
        background: rgba(255, 255, 255, 0.02);
    }

    .mobile-nav-link:hover {
        color: var(--orange-light);
        border-color: rgba(255, 122, 61, 0.5);
        background: rgba(240, 80, 37, 0.12);
    }

    .hero,
    .section {
        border-radius: 22px;
    }

    .hero-note {
        margin-top: -95px;
        margin-left: 0.9rem;
        margin-right: 0.9rem;
    }

    .micro-strip {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 360px;
    }

    .app-cta {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category-title i {
    color: var(--orange);
    font-size: 1.25rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--white);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question i {
    color: var(--orange);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-content {
    color: var(--gray-400);
    line-height: 1.75;
    padding-top: 0.5rem;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-400);
}

/* Table of Contents */
.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.toc-item a {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
}

.toc-item a:hover {
    background: rgba(240, 80, 37, 0.1);
    border-color: var(--orange);
    color: var(--orange-light);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .app-shell {
        width: min(1220px, 100% - 1rem);
    }

    .hero,
    .section {
        padding: 1.25rem;
    }

    .tool-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .tool-price {
        margin-left: 0;
        text-align: left;
        width: 100%;
        display: flex;
        gap: 1.5rem;
    }

    .tool-price .price-tag {
        margin-top: 0 !important;
    }
}

.tool-section:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: rgba(240, 80, 37, 0.1);
    border: 1px solid rgba(240, 80, 37, 0.25);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--orange-light);
}

.tool-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.tool-price {
    margin-left: auto;
    text-align: right;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange-light);
}

.price-tag small {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* Content Sections */
.content-section {
    margin-bottom: 2rem;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--orange-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section h3 i {
    font-size: 1.25rem;
}

.content-section p {
    color: var(--gray-400);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-400);
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* Objection Handling */
.objection-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--orange);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.objection-box strong {
    color: var(--orange-light);
    display: block;
    margin-bottom: 0.5rem;
}

/* Quick Reference */
.quick-ref {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.ref-card {
    background: var(--near-black);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.ref-card h4 {
    color: var(--orange-light);
    margin-bottom: 1rem;
}

/* Demo Mockup Styles */
.demo-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(240, 80, 37, 0.1);
    border: 1px solid rgba(240, 80, 37, 0.3);
    border-radius: 0.5rem;
    color: var(--orange-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 1.5rem 0;
}

.demo-toggle-btn:hover {
    background: rgba(240, 80, 37, 0.2);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.demo-mockup {
    display: none;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1.5rem 0;
    overflow: hidden;
}

.demo-mockup.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.demo-header h4 {
    color: var(--orange-light);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(240, 80, 37, 0.15);
    border: 1px solid rgba(240, 80, 37, 0.3);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: var(--orange-light);
    font-weight: 600;
}

/* Demo UI Elements */
.demo-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--near-black);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.demo-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 80, 37, 0.1);
}

.demo-btn {
    padding: 0.625rem 1.25rem;
    background: var(--orange);
    border: none;
    border-radius: 0.5rem;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9375rem;
}

.demo-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.demo-btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray-400);
}

.demo-btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange-light);
}

.demo-card {
    background: var(--near-black);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.demo-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.demo-list {
    list-style: none;
}

.demo-list li {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-list li:last-child {
    border-bottom: none;
}

.demo-badge-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Service Detail Page Styles */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 6rem;
    position: relative;
}

.stat {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 30px rgba(240, 80, 37, 0.3));
    transition: transform 0.3s ease;
}

.stat-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
}

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

.service-card-vertical {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.75rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-vertical:hover {
    transform: translateY(-15px);
    border-color: var(--border-hover);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.service-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(240, 80, 37, 0.1);
    border: 1px solid rgba(240, 80, 37, 0.25);
    border-radius: 1rem;
    font-size: 1.75rem;
    color: var(--orange-light);
    margin-bottom: 1.75rem;
    transition: all 0.4s;
}

.service-card-vertical:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    background: rgba(240, 80, 37, 0.15);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--gray-500);
    font-size: 0.9375rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.service-features li i {
    color: var(--orange);
}

.service-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.service-price {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(240, 80, 37, 0.45);
    background: rgba(240, 80, 37, 0.12);
    color: #ffd8c8;
    font-weight: 700;
    line-height: 1.35;
}

.service-price small {
    color: var(--orange-light);
    font-size: 0.72rem;
    font-weight: 700;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.75rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--border-hover);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.pricing-card i {
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.pricing-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-large {
    margin: 1.5rem 0;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-table-container {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    margin: 2rem 0;
    overflow-x: auto;
}

.feature-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.feature-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
}

.feature-table th:first-child {
    text-align: left;
    background: var(--card-bg);
}

.feature-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    color: var(--gray-400);
}

.feature-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}

.feature-available {
    color: var(--orange);
    background: rgba(240, 80, 37, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-unavailable {
    color: var(--gray-500);
    font-size: 1.5rem;
    font-weight: 300;
}

/* Service suite pages */
.service-suite-page .hero {
    position: relative;
    overflow: hidden;
    border-color: rgba(240, 80, 37, 0.3);
    background:
        radial-gradient(560px 300px at -8% -12%, rgba(240, 80, 37, 0.24), transparent 70%),
        radial-gradient(460px 240px at 110% 10%, rgba(255, 122, 61, 0.18), transparent 68%),
        var(--card-bg);
}

.service-suite-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 35%);
}

.service-suite-page #services {
    position: relative;
    border: 1px solid rgba(240, 80, 37, 0.35);
    background: linear-gradient(160deg, rgba(58, 35, 28, 0.28), rgba(24, 28, 35, 0.88) 55%, rgba(20, 23, 30, 0.95));
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 122, 61, 0.12);
}

.service-suite-page #services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.6rem;
    right: 1.6rem;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(255, 122, 61, 0), rgba(255, 122, 61, 0.95), rgba(255, 122, 61, 0));
}

.service-suite-page .service-card-vertical {
    border-color: rgba(240, 80, 37, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 122, 61, 0.14), rgba(255, 122, 61, 0) 38%),
        linear-gradient(160deg, rgba(31, 35, 42, 0.96), rgba(18, 22, 28, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px rgba(0, 0, 0, 0.3);
}

.service-suite-page .service-card-vertical::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 3px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(90deg, rgba(255, 122, 61, 0), rgba(255, 122, 61, 0.95), rgba(255, 122, 61, 0));
}

.service-suite-page .service-card-vertical:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(255, 122, 61, 0.62);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 122, 61, 0.22);
}

.service-suite-page .service-icon-large {
    box-shadow: 0 12px 30px rgba(240, 80, 37, 0.22);
}

.service-suite-page .service-price {
    background: linear-gradient(135deg, rgba(240, 80, 37, 0.28), rgba(240, 80, 37, 0.14));
    border-color: rgba(255, 122, 61, 0.62);
    box-shadow: 0 10px 22px rgba(240, 80, 37, 0.18);
    font-size: 0.98rem;
}

.service-suite-page .price-split-note {
    box-shadow: 0 12px 26px rgba(240, 80, 37, 0.15);
    border-color: rgba(255, 122, 61, 0.62);
    background: linear-gradient(135deg, rgba(240, 80, 37, 0.24), rgba(240, 80, 37, 0.12));
}

.service-suite-page .pricing-card {
    background: linear-gradient(170deg, rgba(36, 40, 48, 0.95), rgba(23, 27, 34, 0.94));
    border-color: rgba(255, 255, 255, 0.16);
}

.service-suite-page .pricing-card:last-child {
    box-shadow: 0 24px 62px rgba(240, 80, 37, 0.22), inset 0 1px 0 rgba(255, 122, 61, 0.18);
}

.service-suite-page .feature-table-container {
    border-color: rgba(240, 80, 37, 0.32);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 122, 61, 0.1);
}

@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .service-suite-page .service-card-vertical:hover { transform: translateY(-8px); }
}

@media (max-width: 600px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 2.4rem 0;
    }

    .stat-value {
        font-size: clamp(2.1rem, 11vw, 2.8rem);
    }

    .service-suite-page #services::before {
        left: 1rem;
        right: 1rem;
    }

    .service-suite-page .service-card-vertical::before {
        left: 0.95rem;
        right: 0.95rem;
    }
}

/* Industry Boost Pack detail pages */
.industry-pack-page .hero {
    align-items: stretch;
}

.industry-pack-page .hero .container {
    width: 100%;
}

.industry-pack-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 0.83rem;
    font-weight: 600;
}

.industry-pack-page .package-card,
.industry-pack-page .tool-section {
    background: linear-gradient(160deg, rgba(31, 35, 42, 0.9), rgba(17, 20, 27, 0.9));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(1.1rem, 2.2vw, 2.1rem);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.industry-pack-page .package-card {
    border-color: rgba(255, 122, 61, 0.34);
}

.industry-pack-page .package-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.industry-pack-page .package-feature {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1rem;
}

.industry-pack-page .package-feature i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--orange-light);
    background: rgba(240, 80, 37, 0.16);
    margin-bottom: 0.6rem;
}

.industry-pack-page .package-feature h4 {
    font-size: 0.98rem;
}

.industry-pack-page .package-price {
    margin-top: 1.2rem;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.industry-pack-page .price-main {
    font-size: clamp(1.4rem, 3.6vw, 2.15rem);
    font-weight: 800;
    line-height: 1.12;
}

.industry-pack-page .price-sub {
    color: var(--gray-400);
    font-size: 0.84rem;
}

.industry-pack-page .tool-section + .tool-section {
    margin-top: 1rem;
}

.industry-pack-page .package-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.industry-pack-page .package-feature p {
    min-height: 3rem;
}

.industry-pack-page .use-case {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.industry-pack-page .use-case-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem;
}

.industry-pack-page .use-case-card.before {
    background: linear-gradient(145deg, rgba(114, 28, 36, 0.14), rgba(18, 18, 18, 0.2));
}

.industry-pack-page .use-case-card.after {
    background: linear-gradient(145deg, rgba(22, 82, 48, 0.16), rgba(18, 18, 18, 0.2));
}

.industry-pack-page .use-case-card h5 {
    margin-bottom: 0.6rem;
}

.industry-pack-page .benefits-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.industry-pack-page .benefits-list li {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.78rem 0.84rem;
    color: var(--gray-400);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.industry-pack-page .benefits-list li i {
    color: var(--orange-light);
    margin-top: 0.1rem;
}

.industry-pack-page .demo-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.73rem;
    font-weight: 700;
}

.industry-pack-page .demo-status.success {
    background: rgba(22, 163, 74, 0.15);
    color: #86efac;
}

.industry-pack-page .demo-status.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
}

.industry-pack-page .demo-stat-value {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
}

.industry-pack-page .demo-stat-label {
    font-size: 0.84rem;
    color: var(--gray-500);
    margin-top: 0.35rem;
}

@media (max-width: 900px) {
    .industry-pack-page .hero,
    .industry-pack-page .section {
        margin-top: 1rem;
        padding: 1.1rem;
    }

    .industry-pack-page .grid,
    .industry-pack-page .package-features,
    .industry-pack-page .use-case {
        grid-template-columns: 1fr;
    }

    .industry-pack-page .tool-title {
        font-size: 1.2rem;
    }

    .industry-pack-page .tool-icon {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
        border-radius: 12px;
    }

    .industry-pack-page .hero-actions .btn,
    .industry-pack-page .card .btn {
        width: 100%;
        justify-content: center;
    }

    .industry-pack-page .demo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .industry-pack-page .app-shell {
        width: min(1320px, 100% - 1rem);
    }

    .industry-pack-page .topbar {
        min-height: 60px;
    }

    .industry-pack-page .brand {
        max-width: calc(100% - 118px);
        overflow: hidden;
    }

    .industry-pack-page .brand span {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .industry-pack-page .hero h1 {
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }
}

/* Learning guide layout refinements (retail/transport/healthcare) */
.industry-guide-page .hero {
    display: block;
    padding: clamp(1.3rem, 2.9vw, 2.4rem);
}

.industry-guide-page .guide-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 1rem;
    align-items: stretch;
}

.industry-guide-page .guide-hero-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: clamp(1rem, 2vw, 1.6rem);
}

.industry-guide-page .guide-hero-main h1 {
    margin-bottom: 0.6rem;
}

.industry-guide-page .guide-hero-main p {
    max-width: 60ch;
}

.industry-guide-page .guide-hero-panel {
    border-radius: 18px;
    border: 1px solid rgba(255, 122, 61, 0.35);
    background: linear-gradient(155deg, rgba(240, 80, 37, 0.16), rgba(255, 255, 255, 0.03));
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
}

.industry-guide-page .guide-panel-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange-light);
    font-weight: 700;
}

.industry-guide-page .guide-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.industry-guide-page .guide-kpi {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(17, 20, 27, 0.48);
    padding: 0.55rem;
    text-align: center;
}

.industry-guide-page .guide-kpi strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
}

.industry-guide-page .guide-kpi span {
    display: block;
    font-size: 0.68rem;
    color: var(--gray-400);
    margin-top: 0.2rem;
}

.industry-guide-page .guide-panel-list {
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.industry-guide-page .guide-panel-list li {
    font-size: 0.84rem;
    color: var(--gray-400);
    display: flex;
    gap: 0.45rem;
}

.industry-guide-page .guide-panel-list i {
    color: var(--orange-light);
    margin-top: 0.1rem;
}

.industry-guide-page .guide-panel-cta {
    margin-top: 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.6rem 0.9rem;
}

.industry-guide-page .section .container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.industry-guide-page .tool-section {
    padding: clamp(1rem, 1.6vw, 1.7rem);
}

.industry-guide-page .guide-hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.industry-guide-page .guide-hero-actions .btn {
    font-size: 0.8rem;
    padding: 0.55rem 1.1rem;
}

.industry-guide-page .workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.industry-guide-page .workflow-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    min-height: 140px;
}

.industry-guide-page .workflow-step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(240, 80, 37, 0.18);
    border: 1px solid rgba(240, 80, 37, 0.3);
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.industry-guide-page .workflow-step h5 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.industry-guide-page .workflow-step p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.5;
}

.industry-guide-page .workflow-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.industry-guide-page .workflow-steps > .workflow-step:last-child .workflow-arrow {
    display: none;
}

.industry-guide-page .roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.industry-guide-page .roi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.1rem;
    text-align: center;
}

.industry-guide-page .roi-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.industry-guide-page .roi-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.industry-guide-page .checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.industry-guide-page .checklist-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.industry-guide-page .checklist-card h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.industry-guide-page .checklist-card ul {
    list-style: none;
    padding: 0;
}

.industry-guide-page .checklist-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.industry-guide-page .cta {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 2rem;
    text-align: center;
}

.industry-guide-page .cta h2 {
    margin-bottom: 0.8rem;
}

.industry-guide-page .cta p {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.industry-guide-page .cta a {
    color: var(--orange-light);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-bottom: 1px solid transparent;
}

.industry-guide-page .cta a:hover {
    border-bottom-color: var(--orange-light);
}

@media (max-width: 900px) {
    .industry-guide-page .guide-hero-layout {
        grid-template-columns: 1fr;
    }

    .industry-guide-page .guide-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .industry-guide-page .guide-kpis {
        grid-template-columns: 1fr;
    }
}
