:root {
    --primary-color: #3457d5;
    --primary-hover: #2947b6;
    --secondary-color: #0f172a;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Sora', 'Plus Jakarta Sans', sans-serif;
    --bg-canvas: #070f1c;
    --bg-soft: #0b1526;
    --bg-elevated: #101d33;
    --text-strong: #f4f7ff;
    --text-muted: #9fb0c8;
    --glass-bg: rgba(10, 18, 32, 0.9);
    --glass-border: rgba(143, 161, 184, 0.16);
    --section-divider: rgba(143, 161, 184, 0.12);
}

html[data-theme='light'] {
    --primary-color: #2f49b7;
    --primary-hover: #22388f;
    --secondary-color: #15315f;
    --bg-canvas: #f4f7fd;
    --bg-soft: #ffffff;
    --bg-elevated: #eef3ff;
    --text-strong: #11213b;
    --text-muted: #4d5f79;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(15, 23, 42, 0.14);
    --section-divider: rgba(15, 23, 42, 0.1);
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 12% 8%, rgba(52, 87, 213, 0.2), transparent 35%),
        radial-gradient(circle at 88% 0%, rgba(14, 165, 233, 0.12), transparent 30%),
        var(--bg-canvas);
    color: var(--text-strong);
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: background-color 0.25s ease, color 0.25s ease;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.display-5,
.display-4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

main {
    position: relative;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 2000;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
}

.saas-navbar {
    background: color-mix(in srgb, var(--bg-canvas) 92%, transparent);
    border-bottom: 1px solid var(--section-divider);
    backdrop-filter: blur(10px);
}

.saas-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    text-decoration: none;
}

.saas-brand-mark {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.saas-brand-accent {
    color: var(--primary-color);
}

.saas-brand-meta {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.saas-navbar .nav-link {
    color: color-mix(in srgb, var(--text-strong) 78%, transparent);
    font-weight: 500;
    font-size: 0.95rem;
}

.saas-navbar .nav-link:hover,
.saas-navbar .nav-link.is-active {
    color: #fff;
}

.saas-navbar .nav-link[aria-current='page'] {
    color: #fff;
}

.saas-nav-list {
    gap: 0.25rem;
}

.saas-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.28);
}

.saas-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.saas-nav-login {
    color: color-mix(in srgb, var(--text-strong) 76%, transparent);
    text-decoration: none;
}

.saas-theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.saas-dropdown {
    background: color-mix(in srgb, var(--bg-soft) 92%, transparent);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.45rem;
    min-width: 15rem;
}

.saas-dropdown .dropdown-item {
    color: var(--text-strong);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
}

.saas-dropdown .dropdown-item:hover,
.saas-dropdown .dropdown-item:focus {
    background: rgba(79, 70, 229, 0.16);
    color: #fff;
}

.saas-pills .nav-link {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 10px;
    margin: 0 5px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.saas-pills .nav-link.active {
    background: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.saas-pills .nav-link:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.hero-section {
    padding: 146px 0 72px;
    background:
        radial-gradient(circle at 78% 20%, rgba(79, 70, 229, 0.28), transparent 42%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 92%, #09111f) 0%, color-mix(in srgb, var(--bg-canvas) 96%, #060b16) 100%);
    border-bottom: 1px solid var(--section-divider);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.06;
    color: var(--text-strong);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: none;
}

.hero-copy {
    max-width: 42rem;
    font-size: 1.18rem;
    line-height: 1.7;
}

.hero-note {
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(143, 161, 184, 0.14);
    border-radius: 18px;
    padding: 1.75rem;
}

.landing-section {
    padding: 64px 0;
    border-top: 1px solid var(--section-divider);
}

.landing-section-inner {
    padding: 0;
}

.landing-section-dark {
    background:
        radial-gradient(circle at 20% 4%, rgba(59, 130, 246, 0.1), transparent 34%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 90%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 95%, transparent) 100%);
}

.hero-side-title {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.hero-highlight-list {
    display: grid;
    gap: 0.9rem;
}

.hero-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #dbe4f0;
    line-height: 1.6;
}

.hero-highlight-item i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.hero-side-divider {
    height: 1px;
    background: rgba(143, 161, 184, 0.14);
    margin: 1.4rem 0;
}

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

.hero-meta-grid strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.hero-meta-grid span {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.5;
}

.landing-pricing-section {
    background:
        radial-gradient(circle at 82% 15%, rgba(56, 189, 248, 0.16), transparent 35%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-elevated) 88%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 94%, transparent) 100%);
}

.pricing-editorial-shell {
    padding-top: 0.75rem;
}

.pricing-editorial-copy {
    max-width: 32rem;
}

.pricing-principles-list {
    display: grid;
    gap: 0.9rem;
}

.pricing-principle-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #dbe4f0;
    line-height: 1.65;
}

.pricing-principle-item i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.pricing-editorial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pricing-estimator-shell {
    padding: 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(143, 161, 184, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-landing-panel {
    padding: 1.6rem;
    border-radius: 18px;
    border: 1px solid rgba(143, 161, 184, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.pricing-landing-points {
    display: grid;
    gap: 1rem;
}

.pricing-landing-point {
    display: grid;
    gap: 0.3rem;
}

.pricing-landing-point strong {
    color: #fff;
    font-size: 0.95rem;
}

.pricing-landing-point span {
    color: #94a3b8;
    line-height: 1.55;
}

.pricing-estimator-shell #price-estimator {
    margin-top: 0 !important;
    background: transparent;
    border: 0;
    padding: 0;
}

.solution-story-card {
    padding: 2rem;
}

.solution-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.solution-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #dbe4f0;
    line-height: 1.7;
}

.solution-bullet-list i {
    margin-top: 0.25rem;
}

.solution-focus-card {
    height: 100%;
    padding: 1.35rem;
    border-radius: 16px;
    border: 1px solid rgba(143, 161, 184, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.solution-metric-grid {
    display: grid;
    gap: 0.85rem;
}

.solution-metric-item {
    display: grid;
    gap: 0.3rem;
}

.solution-metric-item strong {
    color: #fff;
    font-size: 0.92rem;
}

.solution-metric-item span {
    color: #94a3b8;
    line-height: 1.5;
}

.landing-faq-section .accordion-item {
    border-radius: 16px !important;
}

.landing-faq-empty {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
}

.landing-final-cta {
    background:
        radial-gradient(circle at 10% 20%, rgba(52, 87, 213, 0.2), transparent 34%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-elevated) 84%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 96%, transparent) 100%);
    border-top: 1px solid var(--section-divider);
}

.value-card {
    border-color: rgba(143, 161, 184, 0.12);
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(52, 87, 213, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.persona-card strong {
    font-weight: 700;
}

.brand-position-panel {
    border-color: rgba(143, 161, 184, 0.12);
}

.brand-pillar-card {
    height: 100%;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.trust-banner {
    border-color: rgba(99, 102, 241, 0.3);
}

.text-primary-color {
    color: var(--primary-color);
}

.faq-page-shell {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 28%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 90%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 94%, transparent) 100%);
    min-height: 80vh;
}

.pricing-page-shell {
    background:
        radial-gradient(circle at top right, rgba(52, 87, 213, 0.14), transparent 28%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 90%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 94%, transparent) 100%);
    min-height: 80vh;
}

.contact-page-shell {
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.14), transparent 26%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 90%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 94%, transparent) 100%);
    min-height: 80vh;
}

.discovery-page-shell {
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 28%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 90%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 94%, transparent) 100%);
    min-height: 80vh;
}

.faq-hero-actions,
.faq-sidebar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-helper-card {
    height: 100%;
}

.faq-helper-kicker,
.solution-card-category {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    color: #bfdbfe;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.faq-sidebar {
    position: sticky;
    top: 104px;
}

.faq-sidebar-card {
    border-radius: 24px;
}

.faq-topic-list {
    display: grid;
    gap: 12px;
}

.faq-topic-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.faq-topic-link strong {
    color: #fff;
}

.faq-topic-link span {
    color: #94a3b8;
    line-height: 1.5;
}

.faq-topic-link:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.38);
    background: rgba(96, 165, 250, 0.06);
}

.solutions-hero {
    position: relative;
    overflow: hidden;
}

.solutions-decision-card {
    padding: 1.5rem;
    text-align: left;
}

.solution-stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
}

.solution-stat-value {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
}

.solution-stat-label {
    color: #94a3b8;
    line-height: 1.5;
}

.solutions-tab-bar {
    backdrop-filter: blur(10px);
}

.solutions-intro-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
}

.solutions-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.solution-card {
    border-radius: 24px;
}

.solution-card-footer {
    display: flex;
    flex-direction: column;
}

.solution-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solution-secondary-link {
    color: #93c5fd;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
}

.solution-secondary-link:hover {
    color: #dbeafe;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hover-up:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.bg-darker {
    background-color: #0b1120;
}

.fs-xs {
    font-size: 0.7rem;
}

.contact-page-intro {
    max-width: 54rem;
}

.pricing-page-intro {
    max-width: 54rem;
}

.contact-decision-card {
    padding: 1.5rem;
}

.pricing-page-sidecard {
    padding: 1.5rem;
}

.discovery-page-intro {
    max-width: 54rem;
}

.discovery-decision-card {
    padding: 1.5rem;
}

.contact-path-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    height: 100%;
}

.contact-path-card strong {
    color: #fff;
}

.contact-path-card span {
    color: #94a3b8;
    line-height: 1.5;
}

.pricing-overview-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    height: 100%;
}

.pricing-overview-card strong {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}

.pricing-overview-card span {
    color: #94a3b8;
    line-height: 1.55;
}

.discovery-path-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    height: 100%;
}

.discovery-path-card strong {
    color: #fff;
}

.discovery-path-card span {
    color: #94a3b8;
    line-height: 1.5;
}

.contact-trust-panel {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.contact-shortcuts {
    display: grid;
    gap: 12px;
}

.contact-shortcut {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-shortcut strong {
    color: #fff;
}

.contact-shortcut span {
    color: #94a3b8;
    font-size: 0.92rem;
}

.contact-shortcut:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(96, 165, 250, 0.06);
}

.contact-form-actions,
.landing-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.discovery-sidebar {
    position: sticky;
    top: 104px;
}

.discovery-sidebar-card {
    border-radius: 24px;
}

.discovery-result-card {
    border-radius: 24px;
}

.discovery-result-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(14, 165, 233, 0.8));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discovery-result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.discovery-secondary-link {
    color: #93c5fd;
    font-size: 0.9rem;
    text-decoration: none;
}

.discovery-secondary-link:hover {
    color: #dbeafe;
}

.landing-support-card {
    position: sticky;
    top: 104px;
}

.form-control.text-white::placeholder,
.form-select.text-white {
    color: rgba(226, 232, 240, 0.7);
}

.form-select option {
    color: #0f172a;
}

.btn-primary-saas {
    background: var(--primary-color);
    color: #fff;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-primary-saas:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.section-tag {
    color: #7ea2ff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.pricing-card {
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.1), transparent);
    border-color: var(--primary-color);
    position: relative;
}

.pricing-card.popular::after {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

#price-estimator .estimator-summary {
    border-left: 1px solid rgba(148, 163, 184, 0.3);
    padding-left: 24px;
}

#price-estimator .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

#price-estimator .solution-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

#price-estimator .solution-option:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.08);
}

#price-estimator .solution-option input {
    margin-top: 4px;
}

#price-estimator .solution-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#price-estimator .solution-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#price-estimator .solution-meta .title {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

#price-estimator .solution-meta .note {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.75rem;
}

#price-estimator .solution-meta .price {
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
}

#price-estimator .estimator-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.25);
    font-size: 0.9rem;
    color: #e2e8f0;
}

#price-estimator .estimator-line:last-child {
    border-bottom: none;
}

#price-estimator .estimator-band-labels span {
    font-size: 0.7rem;
}

.custom-range::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
}

.custom-range::-webkit-slider-thumb {
    background: var(--primary-color);
    width: 24px;
    height: 24px;
    margin-top: -8px;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

.custom-range::-moz-range-track {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
}

.custom-range::-moz-range-thumb {
    background: var(--primary-color);
    width: 24px;
    height: 24px;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

footer {
    border-top: 1px solid var(--section-divider);
    padding: 80px 0 40px;
}

.saas-footer {
    background: color-mix(in srgb, var(--bg-canvas) 92%, transparent);
    border-top: 1px solid var(--section-divider);
}

.footer-main {
    padding: 8px 0 36px;
}

.footer-brand {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.85rem;
}

.footer-brand:hover {
    color: #fff;
}

.footer-brand-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.footer-copy {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 40ch;
}

.footer-copy-small {
    max-width: none;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a,
.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    color: #fff;
}

.footer-contact-simple {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-contact-simple a {
    color: #dbe4f0;
    text-decoration: none;
    width: fit-content;
}

.footer-action-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 16rem;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(226, 232, 240, 0.5);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-copyright {
    color: color-mix(in srgb, var(--text-muted) 90%, transparent);
    font-size: 0.9rem;
}

.solution-detail-shell {
    background:
        radial-gradient(circle at 18% 6%, rgba(52, 87, 213, 0.18), transparent 30%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 92%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 94%, transparent) 100%);
}

.solution-detail-panel {
    padding: 1.35rem;
}

.solution-detail-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.solution-detail-stat {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
}

.solution-detail-stat strong {
    display: block;
    font-size: 1rem;
    color: var(--text-strong);
}

.solution-detail-stat span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.solution-detail-panel-divider {
    height: 1px;
    margin: 0.95rem 0;
    background: var(--section-divider);
}

.solution-feature-tile {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.solution-feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(52, 87, 213, 0.2);
    color: #c6d6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-module-stack {
    display: grid;
    gap: 0.7rem;
}

.solution-module-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    gap: 0.2rem;
}

.solution-module-item strong {
    color: var(--text-strong);
    font-size: 0.93rem;
}

.solution-module-item span {
    color: var(--text-muted);
    font-size: 0.84rem;
}

.public-crosslinks-shell {
    border-top: 1px solid var(--section-divider);
}

.dashboard-empty {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-muted);
    text-align: center;
}

html[data-theme='light'] .text-white,
html[data-theme='light'] .text-white * {
    color: var(--text-strong) !important;
}

html[data-theme='light'] .text-white-50,
html[data-theme='light'] .lead.text-white-50 {
    color: var(--text-muted) !important;
}

html[data-theme='light'] .btn-outline-light {
    border-color: rgba(17, 33, 59, 0.28) !important;
    color: var(--text-strong) !important;
}

html[data-theme='light'] .btn-outline-light:hover {
    background: rgba(17, 33, 59, 0.06);
}

html[data-theme='light'] .saas-navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
}

html[data-theme='light'] .whatsapp-float {
    box-shadow: 0 10px 24px rgba(22, 40, 73, 0.2);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .hero-section {
        padding: 128px 0 56px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .landing-section {
        padding: 60px 0;
    }

    .saas-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .saas-pills::-webkit-scrollbar {
        display: none;
    }

    .saas-pills .nav-item {
        min-width: 210px;
    }

    .saas-pills .nav-link {
        margin: 0;
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .pricing-editorial-copy {
        max-width: none;
    }

    .solution-story-card {
        padding: 1.5rem;
    }

    .saas-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 14px;
        background: rgba(8, 17, 29, 0.98);
        border: 1px solid var(--glass-border);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .saas-navbar .navbar-nav {
        align-items: stretch !important;
        gap: 0.25rem;
    }

    .saas-nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin: 1rem 0 0;
    }

    .saas-navbar .navbar-nav .nav-link {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
        border-radius: 12px;
    }

    .saas-navbar .nav-link,
    .saas-navbar .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .faq-sidebar {
        position: static;
        top: auto;
    }

    .discovery-sidebar {
        position: static;
        top: auto;
    }

    .landing-support-card {
        position: static;
        top: auto;
    }

    .saas-dropdown {
        background: transparent;
        border: none;
        padding: 0.25rem 0 0 0.75rem;
        min-width: auto;
    }

    .saas-dropdown .dropdown-item {
        padding: 0.65rem 0;
    }

    footer {
        padding: 56px 0 32px;
    }

    .solutions-intro-row {
        align-items: stretch;
    }

    #price-estimator .estimator-summary {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(148, 163, 184, 0.25);
        padding-top: 24px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 120px 0 56px;
    }

    .saas-brand-mark {
        font-size: 1.55rem;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.08;
    }

    .hero-section .lead {
        font-size: 1.05rem !important;
        padding-right: 0 !important;
    }

    .section-tag {
        letter-spacing: 1.4px;
    }

    .landing-section {
        padding: 48px 0;
    }

    .btn-primary-saas {
        width: 100%;
        padding: 14px 24px;
    }

    .faq-hero-actions,
    .faq-sidebar-actions,
    .solutions-intro-actions,
    .contact-form-actions,
    .landing-support-actions,
    .pricing-editorial-actions {
        flex-direction: column;
    }

    .hero-meta-grid {
        grid-template-columns: 1fr;
    }

    #solutions .btn,
    #pricing .btn,
    #faq + section .btn {
        width: 100%;
    }

    #price-estimator .solution-grid {
        grid-template-columns: 1fr;
    }

    #price-estimator .estimator-band-labels {
        gap: 8px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 6px;
    }

    #price-estimator .estimator-band-labels span {
        flex: 0 0 auto;
    }

    #price-estimator #estimator-total {
        font-size: 2.2rem;
    }

    .footer-action-stack,
    .footer-bottom-links {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-bottom {
        align-items: flex-start;
    }

.whatsapp-float {
        width: 46px;
        height: 46px;
        right: 12px;
        bottom: 12px;
        font-size: 22px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }
}

.campaign-hero-section .hero-title {
    max-width: 12ch;
}

.campaign-summary-card {
    min-height: auto;
}

.campaign-proof-section .value-card {
    padding: 28px;
}
