:root {
    /* Extracted from image/long-logos.png dominant accent: #009b97 */
    --brand: 0 155 151;

    /* Derived supporting tones (still aligned to the logo hue) */
    --brand-dark: 0 127 127;
    --brand-soft: 224 248 247;
    --brand-lighter: 230 250 249;
    --brand-accent: 0 180 170;

    /* Neutral tokens (used in custom components) */
    --ink: 15 23 42;
    --muted: 71 85 105;
    --light-bg: 248 250 252;
    --light-page: 246 251 251;
    --light-section: 241 247 247;
    --light-surface: 255 255 255;
    --light-border: 207 226 225;
    --light-shadow: 15 23 42;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Subtle background grid for the hero */
.hero-grid {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 1px 1px, rgb(var(--brand) / 0.12) 1px, transparent 1px);
    background-size: 24px 24px, 96px 96px;
    background-position: 0 0, 12px 18px;
    mask-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 72%);
}

html.dark {
    color-scheme: dark;
}

html:not(.dark) {
    color-scheme: light;
}

@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(8px);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

body {
    animation: page-enter 320ms ease-out both;
}

html.page-is-leaving body {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(2px);
    transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

/* Light-mode safeguard: if any Tailwind `dark:text-*` utilities end up applying
   (for example due to system-level dark preference), force text back to dark
   when the `.dark` class is not present. This prevents white-on-white cards. */
html:not(.dark) .dark\:text-white {
    color: rgb(15 23 42) !important;
}

html:not(.dark) .dark\:text-slate-50,
html:not(.dark) .dark\:text-slate-100 {
    color: rgb(15 23 42) !important;
}

html:not(.dark) .dark\:text-slate-200 {
    color: rgb(30 41 59) !important;
}

html:not(.dark) .dark\:text-slate-300 {
    color: rgb(71 85 105) !important;
}

html:not(.dark) .dark\:text-slate-400 {
    color: rgb(100 116 139) !important;
}

html:not(.dark) .feature-card,
html:not(.dark) .product-card,
html:not(.dark) .quote-card,
html:not(.dark) .price-card,
html:not(.dark) .faq-item,
html:not(.dark) .security-pill {
    color: rgba(15, 23, 42, 0.92);
}

html.dark .hero-grid {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 1px 1px, rgb(var(--brand) / 0.16) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 1) 26%, rgba(0, 0, 0, 0) 72%);
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.78);
    border-radius: 0.95rem;
    padding: 0.5rem 0.75rem;
    transition: color 160ms ease, background-color 160ms ease;
}

.nav-link:hover {
    color: rgba(15, 23, 42, 0.92);
    background: rgba(15, 23, 42, 0.06);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.25rem;
    height: 2px;
    background: rgb(var(--brand) / 0.92);
    border-radius: 9999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

html.dark .nav-link {
    color: rgba(226, 232, 240, 0.82);
}

html.dark .nav-link:hover {
    color: rgba(248, 250, 252, 0.96);
    background: rgba(255, 255, 255, 0.08);
}

html.dark .nav-link::after {
    background: rgb(var(--brand) / 0.95);
}

/* Lightweight micro-interactions (hover only; transform/shadow for performance) */
.feature-card,
.product-card,
.quote-card,
.price-card,
.faq-item,
.security-pill {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.product-card:hover,
.quote-card:hover,
.price-card:hover,
.faq-item:hover,
.security-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
}

html.dark .feature-card:hover,
html.dark .product-card:hover,
html.dark .quote-card:hover,
html.dark .price-card:hover,
html.dark .faq-item:hover,
html.dark .security-pill:hover {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.feature-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(var(--brand), 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(var(--brand-lighter), 0.4) 100%);
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(var(--brand), 0.08), 0 1px 3px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(var(--brand), 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(var(--brand-lighter), 0.6) 100%);
    box-shadow: 0 8px 25px rgba(var(--brand), 0.12), 0 2px 4px rgba(15, 23, 42, 0.12);
}

html.dark .feature-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.feature-icon {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1px solid rgb(var(--brand) / 0.35);
    background: rgb(var(--brand) / 0.12);
    color: rgb(var(--brand));
}

.feature-icon svg {
    height: 1.35rem;
    width: 1.35rem;
}

.security-pill {
    border-radius: 1.25rem;
    border: 1px solid rgba(var(--brand), 0.2);
    background: linear-gradient(135deg, rgba(var(--brand-lighter), 0.5) 0%, rgba(var(--brand-soft), 0.3) 100%);
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(var(--brand-dark));
    font-weight: 500;
}

html.dark .security-pill {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.55);
    color: rgba(226, 232, 240, 0.88);
}

.quote-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(var(--brand), 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(var(--brand-lighter), 0.35) 100%);
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(var(--brand), 0.08), 0 1px 3px rgba(15, 23, 42, 0.1);
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 9999px;
    border: 1.5px solid rgba(var(--brand), 0.25);
    background: linear-gradient(135deg, rgba(var(--brand-lighter), 0.6) 0%, rgba(var(--brand-soft), 0.4) 100%);
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgb(var(--brand-dark));
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.pill:hover {
    background: linear-gradient(135deg, rgba(var(--brand), 0.15) 0%, rgba(var(--brand), 0.08) 100%);
    border-color: rgb(var(--brand));
    color: rgb(var(--brand-dark));
    transform: translateY(-1px);
}

.pill[aria-pressed="true"] {
    border-color: rgb(var(--brand) / 0.6);
    background: linear-gradient(135deg, rgba(var(--brand), 0.18) 0%, rgba(var(--brand), 0.12) 100%);
    color: rgb(var(--brand-dark));
}

html.dark .pill {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(2, 6, 23, 0.35);
    color: rgba(226, 232, 240, 0.82);
}

html.dark .pill:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 250, 252, 0.92);
}

html.dark .pill[aria-pressed="true"] {
    border-color: rgb(var(--brand) / 0.5);
    background: rgb(var(--brand) / 0.16);
    color: rgb(var(--brand));
}

.product-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(var(--brand), 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(var(--brand-lighter), 0.4) 100%);
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(var(--brand), 0.08), 0 1px 3px rgba(15, 23, 42, 0.1);
}

html.dark .product-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1.5px solid rgb(var(--brand) / 0.35);
    background: linear-gradient(135deg, rgb(var(--brand) / 0.15) 0%, rgb(var(--brand) / 0.08) 100%);
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: rgb(var(--brand-dark));
}

html.dark .badge {
    border-color: rgb(var(--brand) / 0.40);
    background: rgb(var(--brand) / 0.14);
    color: rgb(var(--brand));
}

html.dark .quote-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.price-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(var(--brand), 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(var(--brand-lighter), 0.35) 100%);
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(var(--brand), 0.08), 0 1px 3px rgba(15, 23, 42, 0.1);
}

html.dark .price-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.check {
    position: relative;
    padding-left: 1.6rem;
}

.check::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(var(--brand));
    font-weight: 800;
}

.faq-item {
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

html.dark .faq-item {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.92);
    background: transparent;
}

html.dark .faq-q {
    color: rgba(248, 250, 252, 0.92);
}

.faq-q:focus-visible {
    outline: 2px solid rgb(var(--brand) / 0.65);
    outline-offset: 2px;
    border-radius: 1rem;
}

.faq-icon {
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.02);
    color: rgba(15, 23, 42, 0.82);
    font-weight: 800;
    flex: 0 0 auto;
}

html.dark .faq-icon {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(2, 6, 23, 0.35);
    color: rgba(248, 250, 252, 0.85);
}

.faq-a {
    padding: 0 1.25rem 1.2rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(71, 85, 105, 0.95);
}

html.dark .faq-a {
    color: rgba(203, 213, 225, 0.92);
}

.form-input {
    margin-top: 0.5rem;
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.02);
    padding: 0.85rem 1rem;
    color: rgba(15, 23, 42, 0.92);
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-input::placeholder {
    color: rgba(71, 85, 105, 0.72);
}

.form-input:focus {
    outline: none;
    border-color: rgb(var(--brand) / 0.55);
    box-shadow: 0 0 0 4px rgb(var(--brand) / 0.18);
    background: rgb(var(--brand) / 0.06);
}

html.dark .form-input {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(2, 6, 23, 0.35);
    color: rgba(248, 250, 252, 0.92);
}

html.dark .form-input::placeholder {
    color: rgba(148, 163, 184, 0.75);
}

html.dark .form-input:focus {
    background: rgb(var(--brand) / 0.08);
}

/* Minimal global remaps for common Tailwind utilities used in the markup.
   We use !important because Tailwind CDN injects its stylesheet after styles.css. */
html.dark .bg-white {
    background-color: rgb(2 6 23) !important;
}

html.dark .bg-slate-50 {
    background-color: rgb(15 23 42) !important;
}

html.dark .bg-slate-100 {
    background-color: rgb(30 41 59) !important;
}

html.dark .text-slate-900 {
    color: rgb(241 245 249) !important;
}

html.dark .text-slate-800 {
    color: rgb(226 232 240) !important;
}

html.dark .text-slate-700 {
    color: rgb(203 213 225) !important;
}

html.dark .text-slate-600 {
    color: rgb(148 163 184) !important;
}

html.dark .text-slate-500 {
    color: rgb(148 163 184) !important;
}

html.dark .border-slate-200 {
    border-color: rgb(51 65 85) !important;
}

html.dark .via-white {
    --tw-gradient-stops: var(--tw-gradient-from), rgb(2 6 23) var(--tw-gradient-via-position), var(--tw-gradient-to) !important;
}

html.dark .to-white {
    --tw-gradient-to: rgb(2 6 23) var(--tw-gradient-to-position) !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
    }

    .feature-card:hover,
    .product-card:hover,
    .quote-card:hover,
    .price-card:hover,
    .faq-item:hover,
    .security-pill:hover {
        transform: none !important;
    }
}


.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.04);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

html.dark .badge {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.35);
    color: rgba(226, 232, 240, 0.82);
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
textarea,
select,
header,
footer,
section,
.card,
.feature-card,
.product-card,
.quote-card,
.price-card,
.faq-item,
.security-pill,
.pill,
.badge,
.feature-icon,
.industry-icon,
.process-badge,
.form-input,
.nav-link,
.hero-illustration,
.hero-grid {
    transition-property: color, background-color, border-color, box-shadow, transform, opacity, filter;
    transition-duration: 260ms;
    transition-timing-function: ease;
}

body,
main,
h1,
h2,
h3,
h4,
p,
span,
li,
strong,
svg,
path,
circle,
rect {
    transition-property: color, background-color, border-color, fill, stroke, opacity;
    transition-duration: 260ms;
    transition-timing-function: ease;
}

/* Active nav link indicator */
.nav-link.active {
    color: rgb(var(--brand-dark));
    background: rgb(var(--brand-soft));
}

html.dark .nav-link.active {
    color: rgb(var(--brand));
    background: rgb(var(--brand) / 0.15);
}

/* Human-styled helpers for redesigned index */
.hero-illustration {
    border: 1px solid rgba(15,23,42,0.04);
    overflow: hidden;
}

.hero-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-illustration::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.btn-primary {
    background: rgb(var(--brand)) !important;
    color: #fff !important;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(var(--brand), 0.3), 0 4px 8px rgba(0,0,0,0.08);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(var(--brand-lighter), 0.35) 100%);
    border: 1px solid rgba(var(--brand), 0.15);
    padding: 1.5rem;
    border-radius: 1.25rem;
    text-align: left;
    box-shadow: 0 8px 24px rgba(var(--brand), 0.08), 0 2px 6px rgba(15,23,42,0.08);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(var(--brand), 0.25);
    box-shadow: 0 12px 32px rgba(var(--brand), 0.12), 0 4px 8px rgba(15,23,42,0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgb(var(--brand) / 0.10);
    color: rgb(var(--brand));
    font-size: 1.05rem;
}

/* Variant for buttons placed on brand/gradient backgrounds */
.btn-on-gradient {
    background: #ffffff !important;
    color: rgb(var(--brand)) !important;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(2,6,23,0.12);
}

.btn-on-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.16);
}

/* Dark mode adjustments for .card */
html.dark .card {
    background: rgba(15,23,42,0.55);
    border-color: rgba(148,163,184,0.12);
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    color: rgba(226,232,240,0.95);
}

/* Ensure buttons remain legible when Tailwind utilities exist */
.btn-primary, .btn-on-gradient {
    border: none !important;
}

/* Tighter card icon layout */
.feature-icon svg { display: block; width: 20px; height: 20px; }

/* Software process section */
.process-step {
    position: relative;
    padding-top: 1.1rem;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    border-radius: 9999px;
    border: 1px solid rgb(var(--brand) / 0.35);
    background: rgb(var(--brand) / 0.12);
    color: rgb(var(--brand-dark));
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

html.dark .process-badge {
    border-color: rgb(var(--brand) / 0.45);
    background: rgb(var(--brand) / 0.18);
    color: rgb(var(--brand));
}

/* Industries section enhancements */
.industry-card {
    position: relative;
    padding-top: 1rem;
}

.industry-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.45rem;
    border: 1px solid rgb(var(--brand) / 0.28);
    background: rgb(var(--brand) / 0.10);
    color: rgb(var(--brand-dark));
    margin-bottom: 0.5rem;
}

.industry-icon svg {
    width: 0.7rem;
    height: 0.7rem;
    display: block;
}

html.dark .industry-icon {
    border-color: rgb(var(--brand) / 0.42);
    background: rgb(var(--brand) / 0.16);
    color: rgb(var(--brand));
}


@media (max-width: 640px) {
    .hero-illustration { padding: 18px; }
    .btn-primary { width: 100%; justify-content: center; }
}

/* Polished light theme
   Tailwind CDN loads after this file on most pages, so these intentional
   remaps use !important to keep light mode cohesive across all templates. */
html:not(.dark) body {
    background:
        radial-gradient(circle at top left, rgb(var(--brand) / 0.10), transparent 26rem),
        linear-gradient(180deg, rgb(var(--light-page)) 0%, rgb(255 255 255) 42%, rgb(var(--light-page)) 100%) !important;
    color: rgb(var(--ink)) !important;
}

html:not(.dark) .bg-white,
html:not(.dark) .from-white {
    background-color: rgb(255 255 255) !important;
}

html:not(.dark) .bg-slate-50,
html:not(.dark) .bg-slate-100 {
    background-color: rgb(var(--light-section)) !important;
}

html:not(.dark) .to-slate-50 {
    --tw-gradient-to: rgb(var(--light-page)) var(--tw-gradient-to-position) !important;
}

html:not(.dark) header {
    border-color: rgb(var(--light-border) / 0.78) !important;
    background: rgb(255 255 255 / 0.86) !important;
    box-shadow: 0 10px 30px rgb(var(--light-shadow) / 0.06);
}

html:not(.dark) #mobileMenu,
html:not(.dark) #mobile-menu {
    border-color: rgb(var(--light-border) / 0.9) !important;
    background: rgb(255 255 255 / 0.98) !important;
    box-shadow: 0 18px 40px rgb(var(--light-shadow) / 0.08);
}

html:not(.dark) .hero-grid {
    background-image:
        linear-gradient(rgb(var(--brand) / 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgb(var(--brand) / 0.06) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgb(var(--brand) / 0.14), transparent 36rem);
    background-size: 34px 34px, 34px 34px, 100% 100%;
    mask-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 0.95) 18%, rgba(0, 0, 0, 0) 76%);
}

html:not(.dark) section.relative.overflow-hidden.bg-white,
html:not(.dark) section.relative.overflow-hidden.bg-gradient-to-b {
    background:
        radial-gradient(circle at 15% 0%, rgb(var(--brand) / 0.13), transparent 34rem),
        linear-gradient(180deg, rgb(255 255 255) 0%, rgb(var(--light-page)) 100%) !important;
}

html:not(.dark) .card,
html:not(.dark) .feature-card,
html:not(.dark) .product-card,
html:not(.dark) .quote-card,
html:not(.dark) .price-card,
html:not(.dark) .faq-item,
html:not(.dark) .rounded-3xl.border.bg-white,
html:not(.dark) [class*="rounded-3xl"][class*="border"][class*="bg-white"] {
    border-color: rgb(var(--light-border) / 0.95) !important;
    background:
        linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(255 255 255 / 0.92)) padding-box,
        linear-gradient(135deg, rgb(var(--brand) / 0.28), rgb(148 163 184 / 0.16)) border-box !important;
    box-shadow:
        0 18px 44px rgb(var(--light-shadow) / 0.08),
        0 2px 8px rgb(var(--brand) / 0.06) !important;
}

html:not(.dark) .card:hover,
html:not(.dark) .feature-card:hover,
html:not(.dark) .product-card:hover,
html:not(.dark) .quote-card:hover,
html:not(.dark) .price-card:hover,
html:not(.dark) .faq-item:hover,
html:not(.dark) [class*="rounded-3xl"][class*="border"][class*="bg-white"]:hover {
    border-color: rgb(var(--brand) / 0.36) !important;
    box-shadow:
        0 24px 58px rgb(var(--light-shadow) / 0.12),
        0 10px 24px rgb(var(--brand) / 0.10) !important;
}

html:not(.dark) .feature-icon,
html:not(.dark) .industry-icon,
html:not(.dark) .process-badge,
html:not(.dark) .badge,
html:not(.dark) .pill,
html:not(.dark) [style*="rgba(var(--brand), 0.1)"] {
    border-color: rgb(var(--brand) / 0.24) !important;
    background: linear-gradient(135deg, rgb(var(--brand) / 0.13), rgb(var(--brand-soft) / 0.68)) !important;
    color: rgb(var(--brand-dark)) !important;
}

html:not(.dark) .nav-link.active {
    color: rgb(var(--brand-dark)) !important;
    background: rgb(var(--brand) / 0.11) !important;
}

html:not(.dark) .btn-primary {
    background: linear-gradient(135deg, rgb(var(--brand)), rgb(var(--brand-dark))) !important;
    box-shadow: 0 14px 32px rgb(var(--brand) / 0.26) !important;
}

html:not(.dark) .btn-primary:hover {
    box-shadow: 0 20px 44px rgb(var(--brand) / 0.34) !important;
}

html:not(.dark) .btn-on-gradient {
    background: rgb(255 255 255) !important;
    color: rgb(var(--brand-dark)) !important;
    border: 1px solid rgb(255 255 255 / 0.72) !important;
}

html:not(.dark) .quote-card footer {
    display: inline-flex;
    border-radius: 9999px;
    background: rgb(15 23 42);
    padding: 0.35rem 0.65rem;
    color: rgb(255 255 255) !important;
    font-weight: 700;
}

html.dark .quote-card footer {
    display: inline-flex;
    border-radius: 9999px;
    background: rgb(255 255 255);
    padding: 0.35rem 0.65rem;
    color: rgb(15 23 42) !important;
    font-weight: 700;
}

html:not(.dark) .cta-secondary {
    background: rgb(255 255 255) !important;
    border-color: rgb(255 255 255 / 0.72) !important;
    color: rgb(15 23 42) !important;
    font-weight: 700;
    box-shadow: 0 14px 32px rgb(15 23 42 / 0.18);
}

html:not(.dark) .cta-secondary:hover {
    background: rgb(241 245 249) !important;
    border-color: rgb(255 255 255) !important;
    color: rgb(15 23 42) !important;
}

html:not(.dark) a.border:not(.btn-on-gradient),
html:not(.dark) button.border,
html:not(.dark) .form-input {
    border-color: rgb(var(--light-border) / 0.95) !important;
    background-color: rgb(255 255 255 / 0.92) !important;
    box-shadow: 0 1px 2px rgb(var(--light-shadow) / 0.04);
}

html:not(.dark) a.border:not(.btn-on-gradient):hover,
html:not(.dark) button.border:hover {
    border-color: rgb(var(--brand) / 0.34) !important;
    background-color: rgb(var(--brand) / 0.06) !important;
}

html:not(.dark) .form-input:focus {
    background: rgb(255 255 255) !important;
    box-shadow: 0 0 0 4px rgb(var(--brand) / 0.16), 0 10px 24px rgb(var(--brand) / 0.08) !important;
}

html:not(.dark) footer {
    border-top: 1px solid rgb(15 23 42 / 0.9) !important;
    background: rgb(15 23 42) !important;
    color: rgb(148 163 184) !important;
}

html:not(.dark) footer h3,
html:not(.dark) footer h4,
html:not(.dark) footer .text-white,
html:not(.dark) footer .text-slate-900 {
    color: rgb(248 250 252) !important;
}

html:not(.dark) footer a:hover {
    color: rgb(248 250 252) !important;
}

html:not(.dark) footer .border-t {
    border-color: rgb(51 65 85) !important;
}
