:root {
    --green-dark: #224237;
    --green-bright: #00f400;
    --green-soft: #9fffa3;
    --black: #050807;
    --dark: #08110e;
    --dark-2: #0e1a16;
    --cream: #f4f7f5;
    --muted: rgba(244, 247, 245, 0.72);
    --line: rgba(255, 255, 255, 0.12);
    --glass: rgba(255, 255, 255, 0.075);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
}

html[data-theme="light"] {
    --green-dark: #224237;
    --green-bright: #00c900;
    --green-soft: #157a2d;
    --black: #f5f8f6;
    --dark: #ffffff;
    --dark-2: #eef4f0;
    --cream: #102019;
    --muted: rgba(16, 32, 25, 0.68);
    --line: rgba(34, 66, 55, 0.18);
    --glass: rgba(255, 255, 255, 0.72);
    --shadow: 0 24px 70px rgba(34, 66, 55, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
}

body::selection {
    background: var(--green-bright);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

.theme-toggle {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0 1rem;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid var(--line);
    color: var(--cream);
    background: rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    cursor: pointer;
    transition: 0.25s ease;
}

.theme-toggle i {
    color: var(--green-bright);
}

.theme-toggle:hover {
    border-color: rgba(0, 244, 0, 0.35);
    transform: translateY(-1px);
}

html[data-theme="light"] body {
    background: #f5f8f6;
}

html[data-theme="light"] .site-bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 201, 0, 0.12), transparent 25%),
        radial-gradient(circle at 80% 5%, rgba(34, 66, 55, 0.18), transparent 34%),
        linear-gradient(135deg, #f5f8f6, #ffffff 45%, #edf4ef);
}

html[data-theme="light"] .site-header .header-inner,
html[data-theme="light"] .site-footer,
html[data-theme="light"] .mobile-nav {
    background: rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .screen-card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .portfolio-card,
html[data-theme="light"] .feature-row,
html[data-theme="light"] .timeline-item,
html[data-theme="light"] .project-form {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.62));
}

html[data-theme="light"] .secondary-btn,
html[data-theme="light"] .floating-chip,
html[data-theme="light"] .mock-site {
    background: rgba(255,255,255,0.72);
}

html[data-theme="light"] .contact-methods a,
html[data-theme="light"] .contact-methods span {
    background: none;
}

html[data-theme="light"] .project-form input,
html[data-theme="light"] .project-form select,
html[data-theme="light"] .project-form textarea {
    background: rgba(255,255,255,0.78);
    color: var(--cream);
}

html[data-theme="light"] .project-form option {
    color: #102019;
}

/* ================================
   LIGHT MODE FIXES
================================ */

html[data-theme="light"] .desktop-nav a,
html[data-theme="light"] .ghost-link {
    color: rgba(16, 32, 25, 0.72);
}

html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .ghost-link:hover {
    color: #00c900;
}

html[data-theme="light"] .cta-band {
    background:
        radial-gradient(circle at top left, rgba(0, 201, 0, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff, #e8f2ec);
    border-top: 1px solid rgba(34, 66, 55, 0.16);
    border-bottom: 1px solid rgba(34, 66, 55, 0.16);
}

html[data-theme="light"] .cta-band h2 {
    color: #102019;
}

html[data-theme="light"] .project-form label {
    color: rgba(16, 32, 25, 0.78);
}

html[data-theme="light"] .project-form input,
html[data-theme="light"] .project-form select,
html[data-theme="light"] .project-form textarea {
    background: rgba(255, 255, 255, 0.82);
    color: #102019;
    border-color: rgba(34, 66, 55, 0.16);
}

html[data-theme="light"] .project-form input::placeholder,
html[data-theme="light"] .project-form textarea::placeholder {
    color: rgba(16, 32, 25, 0.52);
}

html[data-theme="light"] .project-form select {
    color: #102019;
}

html[data-theme="light"] .project-form option {
    background: #ffffff;
    color: #102019;
}

html[data-theme="light"] .project-form {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.74));
}

html[data-theme="light"] .header-cta,
html[data-theme="light"] .primary-btn {
    background: #05110d;
    color: #ffffff;
}

html[data-theme="light"] .header-cta:hover,
html[data-theme="light"] .primary-btn:hover {
    background: #00c900;
    color: #05110d;
}

html[data-theme="light"] .header-cta.mascot-hover {
    background: #00c900;
    color: #05110d;
}

html[data-theme="light"] .theme-toggle {
    color: #102019;
    background: rgba(255, 255, 255, 0.8);
}

html[data-theme="light"] .mobile-nav a {
    color: rgba(16, 32, 25, 0.72);
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 244, 0, 0.11), transparent 25%),
        radial-gradient(circle at 80% 5%, rgba(34, 66, 55, 0.95), transparent 34%),
        radial-gradient(circle at 50% 80%, rgba(0, 244, 0, 0.08), transparent 35%),
        linear-gradient(135deg, #040706, #0b1411 45%, #020403);
}

.grid-glow {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.65;
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-one {
    width: 270px;
    height: 270px;
    background: rgba(0, 244, 0, 0.18);
    top: 12%;
    left: -80px;
}

.orb-two {
    width: 360px;
    height: 360px;
    background: rgba(34, 66, 55, 0.62);
    top: 4%;
    right: -120px;
    animation-delay: -3s;
}

.orb-three {
    width: 210px;
    height: 210px;
    background: rgba(0, 244, 0, 0.12);
    bottom: 5%;
    left: 50%;
    animation-delay: -6s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(20px, -24px, 0) scale(1.05);
    }
}

.site-header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 50;
}

.header-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 8, 7, 0.68);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(20px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(0, 244, 0, 0.95), rgba(159, 255, 163, 0.78));
    color: var(--black);
    font-weight: 900;
    font-size: 1.35rem;
    box-shadow: 0 0 30px rgba(0, 244, 0, 0.2);
}

.brand-text {
    display: grid;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.75rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.desktop-nav a,
.ghost-link {
    color: rgba(244, 247, 245, 0.76);
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.desktop-nav a:hover,
.ghost-link:hover {
    color: var(--green-bright);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cta {
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--black);
    font-weight: 800;
    font-size: 0.88rem;
    transition: 0.25s ease;
}

.header-cta:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
}
.header-cta.mascot-hover {
    background: var(--green-bright);
    color: var(--black);
    box-shadow: 0 0 30px rgba(0,244,0,.35);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--cream);
    margin: 5px auto;
    transition: 0.25s ease;
}

.menu-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    width: min(var(--container), calc(100% - 40px));
    margin: 10px auto 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 8, 7, 0.9);
    backdrop-filter: blur(20px);
}

.mobile-nav a {
    display: block;
    padding: 0.9rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a:last-child {
    border-bottom: 0;
}

.hero-section {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 150px 0 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--green-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.eyebrow span {
    width: 42px;
    height: 1px;
    background: var(--green-bright);
    box-shadow: 0 0 14px var(--green-bright);
}

.hero-copy h1 {
    margin: 1.35rem 0 1.25rem;
    max-width: 780px;
    font-size: clamp(3.35rem, 7vw, 6.25rem);
    line-height: 0.88;
    letter-spacing: -0.075em;
}

.hero-lead {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.75;
}
.section-lead p {
    margin: 12px;
}

.hero-actions,
.service-footer,
.cta-inner,
.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 54px;
    padding: 0 1.35rem;
    border-radius: 999px;
    font-weight: 850;
    transition: 0.25s ease;
}

.primary-btn {
    background: var(--green-bright);
    color: var(--black);
    box-shadow: 0 0 35px rgba(0, 244, 0, 0.22);
    border: 0;
    cursor: pointer;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 244, 0, 0.24);
}

.primary-btn.light {
    background: var(--cream);
}

.secondary-btn {
    border: 1px solid var(--line);
    color: var(--cream);
    background: rgba(255,255,255,0.055);
}

.secondary-btn:hover {
    border-color: rgba(0, 244, 0, 0.5);
    color: var(--green-bright);
    transform: translateY(-3px);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-proof div {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
}

.hero-proof strong {
    display: block;
    color: var(--cream);
    margin-bottom: 0.35rem;
}

.hero-proof span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.screen-card {
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.main-screen {
    transform: rotate(2deg);
    animation: screenFloat 7s ease-in-out infinite;
}

@keyframes screenFloat {
    0%, 100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-14px);
    }
}

.screen-topbar {
    display: flex;
    gap: 0.45rem;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
}

.screen-topbar span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
}

.screen-topbar span:first-child {
    background: var(--green-bright);
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 110px 1fr;
    min-height: 405px;
}

.preview-sidebar {
    padding: 1rem;
    border-right: 1px solid var(--line);
    background: rgba(0,0,0,0.15);
}

.preview-sidebar div {
    height: 34px;
    margin-bottom: 0.85rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
}

.preview-sidebar div:first-child {
    background: rgba(0,244,0,0.24);
}

.preview-main {
    padding: 1.35rem;
}

.preview-heading {
    width: 55%;
    height: 32px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 1rem;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.stat-card {
    height: 78px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0,244,0,0.18), rgba(255,255,255,0.07));
    border: 1px solid rgba(255,255,255,0.11);
}

.chart-card {
    height: 210px;
    display: flex;
    align-items: end;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--line);
}

.chart-card span {
    flex: 1;
    border-radius: 999px 999px 8px 8px;
    background:
        linear-gradient(180deg, var(--green-bright), rgba(0,244,0,0.12));
    box-shadow: 0 0 25px rgba(0,244,0,0.16);
}

.floating-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 8, 7, 0.76);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.26);
    color: var(--cream);
    font-weight: 800;
    font-size: 0.86rem;
}

.floating-chip i {
    color: var(--green-bright);
}

.chip-one {
    top: 70px;
    left: -22px;
}

.chip-two {
    right: -20px;
    top: 210px;
}

.chip-three {
    bottom: 70px;
    left: 50px;
}
.brand-logo {
    height: 52px;
    width: auto;
    display: block;
    transition: transform .3s ease;
    object-fit: contain;
}

.brand-logo:hover {
    transform: scale(1.03);
}
.logo-strip {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.035);
    overflow: hidden;
}

.strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(244,247,245,0.48);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section {
    padding: 150px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading.left {
    text-align: left;
    margin: 0;
}

.section-heading h2 {
    margin: 0.75rem 0 1rem;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

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

.service-card,
.portfolio-card,
.feature-row,
.timeline-item,
.project-form {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
    box-shadow: 0 18px 55px rgba(0,0,0,0.18);
    backdrop-filter: blur(14px);
}

.service-card {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.35rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto -30% -35% -30%;
    height: 160px;
    background: radial-gradient(circle, rgba(0,244,0,0.18), transparent 68%);
    opacity: 0;
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,244,0,0.36);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--green-bright);
    background: rgba(0,244,0,0.10);
    border: 1px solid rgba(0,244,0,0.22);
    font-size: 1.25rem;
}

.service-content span {
    display: inline-block;
    margin-top: 1.3rem;
    color: var(--green-soft);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.service-content h3,
.feature-row h3,
.timeline-item h3,
.portfolio-body h3 {
    margin: 0.55rem 0;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.service-content p,
.feature-row p,
.timeline-item p,
.portfolio-body p {
    color: var(--muted);
    line-height: 1.65;
}

.service-footer {
    justify-content: space-between;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.service-footer strong {
    color: var(--cream);
}

.service-footer a {
    color: var(--green-bright);
    font-weight: 850;
}

.systems-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 4rem;
    align-items: center;
}

.feature-stack {
    display: grid;
    gap: 1rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 22px;
    transition: 0.3s ease;
}

.feature-row:hover {
    transform: translateX(8px);
    border-color: rgba(0,244,0,0.35);
}

.feature-row i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(0,244,0,0.1);
    color: var(--green-bright);
    font-size: 1.25rem;
}

.feature-row h3,
.feature-row p {
    margin-top: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,244,0,0.35);
}

.portfolio-image {
    position: relative;
    min-height: 245px;
    padding: 1rem;
    background:
        radial-gradient(circle at top right, rgba(0,244,0,0.16), transparent 35%),
        rgba(0,0,0,0.2);
}

.portfolio-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
}

.portfolio-tag {
    position: absolute;
    top: 1.7rem;
    left: 1.7rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(5,8,7,0.75);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
    color: var(--green-soft);
    font-size: 0.75rem;
    font-weight: 850;
}

.mock-site {
    height: 220px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0,244,0,0.12), rgba(255,255,255,0.055));
}

.mock-nav {
    width: 100%;
    height: 26px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 1rem;
}

.mock-hero {
    width: 70%;
    height: 72px;
    border-radius: 18px;
    background: rgba(0,244,0,0.22);
    margin-bottom: 1rem;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.mock-grid span {
    height: 62px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
}

.portfolio-body {
    padding: 1.3rem;
}

.portfolio-body h3,
.portfolio-body p {
    margin-top: 0;
}

.portfolio-body a {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--green-bright);
    font-weight: 850;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,244,0,0.5), transparent);
}

.timeline-item {
    position: relative;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
}

.timeline-item span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    border-radius: 22px;
    background: var(--green-bright);
    color: var(--black);
    font-weight: 950;
    font-size: 1.25rem;
}

.cta-band {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(0,244,0,0.23), transparent 30%),
        linear-gradient(135deg, var(--green-dark), #10221c);
    border-top: 1px solid rgba(255,255,255,0.14);
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.cta-inner {
    justify-content: space-between;
}

.cta-inner h2 {
    margin: 0.5rem 0 0;
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
}

.contact-copy h2 {
    margin: 0.75rem 0 1rem;
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.contact-copy p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.06rem;
}

.contact-methods {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.contact-methods a,
.contact-methods span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
}

.contact-methods i {
    color: var(--green-bright);
}

.project-form {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: var(--radius-xl);
}

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

.project-form label {
    display: grid;
    gap: 0.45rem;
    color: rgba(244,247,245,0.78);
    font-size: 0.9rem;
    font-weight: 700;
}

.project-form input,
.project-form select,
.project-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 16px;
    background: rgba(0,0,0,0.24);
    color: var(--cream);
    padding: 1rem;
    outline: none;
    transition: 0.25s ease;
}

.project-form textarea {
    resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
    border-color: rgba(0,244,0,0.55);
    box-shadow: 0 0 0 4px rgba(0,244,0,0.08);
}

.project-form option {
    color: var(--black);
}

.form-btn {
    width: 100%;
    min-height: 58px;
}

.form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    display: none;
    padding: 1rem;
    border-radius: 16px;
    line-height: 1.5;
}

.form-message.success,
.form-message.error {
    display: block;
}

.form-message.success {
    background: rgba(0,244,0,0.12);
    border: 1px solid rgba(0,244,0,0.3);
}

.form-message.error {
    background: rgba(255,80,80,0.12);
    border: 1px solid rgba(255,80,80,0.3);
}

.site-footer {
    padding: 70px 0 28px;
    border-top: 1px solid var(--line);
    background: rgba(0,0,0,0.22);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    margin-bottom: 1rem;
}

.site-footer p {
    max-width: 430px;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--green-bright);
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--green-bright);
    background: rgba(255,255,255,0.045);
    transition: 0.25s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    border-color: rgba(0,244,0,0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom1 {
    display: flex;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
}

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

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

@media (max-width: 1050px) {
    .desktop-nav,
    .ghost-link,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav.active {
        display: block;
    }

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

    .hero-visual {
        min-height: 460px;
    }

    .services-grid,
    .portfolio-grid,
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .site-header {
        top: 10px;
    }

    .header-inner {
        height: 66px;
        padding: 0 12px;
    }

    .brand-text {
        display: none;
    }

    .hero-section {
        padding: 125px 0 70px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 16vw, 4.7rem);
    }

    .hero-proof,
    .services-grid,
    .portfolio-grid,
    .timeline,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 390px;
    }

    .dashboard-preview {
        grid-template-columns: 78px 1fr;
        min-height: 310px;
    }

    .preview-sidebar {
        padding: 0.75rem;
    }

    .preview-sidebar div {
        height: 28px;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .stat-card {
        height: 44px;
    }

    .chart-card {
        height: 145px;
    }

    .floating-chip {
        position: relative;
        inset: auto;
        margin: 0.5rem 0.35rem 0 0;
    }

    .strip-inner {
        min-width: 780px;
        animation: marquee 18s linear infinite;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading h2,
    .contact-copy h2,
    .cta-inner h2 {
        font-size: clamp(2.25rem, 12vw, 3.35rem);
    }

    .cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-45%);
    }
}


/* =========================================================
   GLOBAL THEME REFINEMENT PATCH
   Fixes dark/light inconsistencies across public pages.
   Keep this block at the bottom of showcase.css.
========================================================= */

.theme-toggle {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0 1rem;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid var(--line);
    color: var(--cream);
    background: rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    cursor: pointer;
    transition: 0.25s ease;
}

.theme-toggle i {
    color: var(--green-bright);
}

.theme-toggle:hover {
    border-color: rgba(0, 244, 0, 0.35);
    transform: translateY(-1px);
}

/* ---------- Light Mode: Public Front-End ---------- */

html[data-theme="light"] body {
    background: #f5f8f6;
    color: #102019;
}

html[data-theme="light"] .site-bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 201, 0, 0.14), transparent 27%),
        radial-gradient(circle at 82% 4%, rgba(34, 66, 55, 0.18), transparent 34%),
        radial-gradient(circle at 50% 78%, rgba(0, 201, 0, 0.10), transparent 36%),
        linear-gradient(135deg, #f5f8f6, #ffffff 45%, #edf4ef);
}

html[data-theme="light"] .grid-glow,
html[data-theme="light"] .dash-grid {
    background-image:
        linear-gradient(rgba(34, 66, 55, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 66, 55, 0.06) 1px, transparent 1px);
}

html[data-theme="light"] .orb-one,
html[data-theme="light"] .orb-three {
    background: rgba(0, 201, 0, 0.18);
}

html[data-theme="light"] .orb-two {
    background: rgba(34, 66, 55, 0.18);
}

html[data-theme="light"] .site-header .header-inner,
html[data-theme="light"] .mobile-nav {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(34, 66, 55, 0.16);
    box-shadow: 0 22px 70px rgba(34, 66, 55, 0.16);
}

html[data-theme="light"] .brand-text strong,
html[data-theme="light"] .brand-text small {
    color: #102019;
}

html[data-theme="light"] .desktop-nav a,
html[data-theme="light"] .ghost-link,
html[data-theme="light"] .mobile-nav a {
    color: rgba(16, 32, 25, 0.72);
}

html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .ghost-link:hover,
html[data-theme="light"] .mobile-nav a:hover {
    color: #00a900;
}
html[data-theme="light"] .mobile-nav a:hover {
    color: var(--green-bright);
}

html[data-theme="light"] .mobile-nav a.mascot-hover {
    color: var(--green-bright);
}

.mobile-nav a:hover {
    color: var(--green-bright);
}
.mobile-nav a.mascot-hover {
    color: var(--green-bright);
}

html[data-theme="light"] .header-cta,
html[data-theme="light"] .primary-btn {
    background: #06120e;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(6, 18, 14, 0.16);
}

html[data-theme="light"] .header-cta:hover,
html[data-theme="light"] .primary-btn:hover {
    background: #00c900;
    color: #06120e;
}

html[data-theme="light"] .secondary-btn,
html[data-theme="light"] .theme-toggle {
    color: #102019;
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(34, 66, 55, 0.16);
}

html[data-theme="light"] .hero-copy h1,
html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .contact-copy h2,
html[data-theme="light"] .cta-inner h2,
html[data-theme="light"] .service-content h3,
html[data-theme="light"] .feature-row h3,
html[data-theme="light"] .timeline-item h3,
html[data-theme="light"] .portfolio-body h3,
html[data-theme="light"] .footer-brand strong {
    color: #102019;
}

html[data-theme="light"] .hero-lead,
html[data-theme="light"] .section-heading p,
html[data-theme="light"] .contact-copy p,
html[data-theme="light"] .service-content p,
html[data-theme="light"] .feature-row p,
html[data-theme="light"] .timeline-item p,
html[data-theme="light"] .portfolio-body p,
html[data-theme="light"] .site-footer p {
    color: rgba(16, 32, 25, 0.68);
}

html[data-theme="light"] .logo-strip,
html[data-theme="light"] .site-footer {
    background: rgba(255, 255, 255, 0.54);
    border-color: rgba(34, 66, 55, 0.14);
}

html[data-theme="light"] .strip-inner {
    color: rgba(16, 32, 25, 0.46);
}

html[data-theme="light"] .hero-proof div,
html[data-theme="light"] .screen-card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .portfolio-card,
html[data-theme="light"] .feature-row,
html[data-theme="light"] .timeline-item,
html[data-theme="light"] .project-form,
html[data-theme="light"] .floating-chip,
html[data-theme="light"] .mock-site {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68));
    border-color: rgba(34, 66, 55, 0.15);
    color: #102019;
    box-shadow: 0 24px 70px rgba(34, 66, 55, 0.12);
}

html[data-theme="light"] .preview-sidebar,
html[data-theme="light"] .chart-card,
html[data-theme="light"] .portfolio-image {
    background: rgba(34, 66, 55, 0.055);
    border-color: rgba(34, 66, 55, 0.12);
}

html[data-theme="light"] .preview-sidebar div,
html[data-theme="light"] .preview-heading,
html[data-theme="light"] .mock-nav,
html[data-theme="light"] .mock-grid span {
    background: rgba(34, 66, 55, 0.12);
}

html[data-theme="light"] .stat-card,
html[data-theme="light"] .mock-hero {
    background: rgba(0, 201, 0, 0.16);
}

html[data-theme="light"] .portfolio-tag {
    background: rgba(255, 255, 255, 0.86);
    color: #157a2d;
    border-color: rgba(34, 66, 55, 0.16);
}

html[data-theme="light"] .cta-band {
    background:
        radial-gradient(circle at top left, rgba(0, 201, 0, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff, #e8f2ec);
    border-top: 1px solid rgba(34, 66, 55, 0.16);
    border-bottom: 1px solid rgba(34, 66, 55, 0.16);
}

html[data-theme="light"] .project-form label {
    color: rgba(16, 32, 25, 0.78);
}

html[data-theme="light"] .project-form input,
html[data-theme="light"] .project-form select,
html[data-theme="light"] .project-form textarea {
    background: rgba(255, 255, 255, 0.88);
    color: #102019;
    border-color: rgba(34, 66, 55, 0.16);
}

html[data-theme="light"] .project-form input::placeholder,
html[data-theme="light"] .project-form textarea::placeholder {
    color: rgba(16, 32, 25, 0.52);
}

html[data-theme="light"] .project-form option {
    background: #ffffff;
    color: #102019;
}

html[data-theme="light"] .form-message.success {
    background: rgba(0, 201, 0, 0.12);
    border-color: rgba(0, 201, 0, 0.28);
    color: #102019;
}

html[data-theme="light"] .form-message.error {
    background: rgba(255, 80, 80, 0.12);
    border-color: rgba(255, 80, 80, 0.28);
    color: #102019;
}

/* ---------- Dark Mode Reinforcement ---------- */

html[data-theme="dark"] .project-form input,
html[data-theme="dark"] .project-form select,
html[data-theme="dark"] .project-form textarea {
    background: rgba(0, 0, 0, 0.24);
    color: #f4f7f5;
    border-color: rgba(255, 255, 255, 0.13);
}

html[data-theme="dark"] .project-form input::placeholder,
html[data-theme="dark"] .project-form textarea::placeholder {
    color: rgba(244, 247, 245, 0.55);
}

html[data-theme="dark"] .project-form option {
    background: #08110e;
    color: #f4f7f5;
}

@media (max-width: 720px) {
    html[data-theme="light"] .menu-toggle {
        background: rgba(255, 255, 255, 0.78);
        border-color: rgba(34, 66, 55, 0.16);
    }

    html[data-theme="light"] .menu-toggle span {
        background: #102019;
    }
}

.mascot-home {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    position: relative;
    display: grid;
    place-items: center;
}

.mascot-runner {
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 30;
}

.mascot-home .mascot-runner {
    position: relative;
    transform: none !important;
}

.mascot-runner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: bottom center;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,.35));
}
.mascot-runner img {
    backface-visibility: hidden;
    transform: translateZ(0);
}

.mascot-runner.is-jumping {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

.header-target-bounce {
    animation: headerTargetBounce 0.24s ease-out;
}

@keyframes headerTargetBounce {
    0% {
        transform: translateY(0) scale(1);
    }

    42% {
        transform: translateY(4px) scale(0.96);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}
.mobile-nav a.header-target-bounce,
.menu-toggle.header-target-bounce {
    animation: headerTargetBounce 0.24s ease-out;
}

@media (max-width: 720px) {
    .mascot-home {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .mascot-runner {
        width: 40px;
        height: 40px;
    }

    .mascot-home {
        order: 1;
    }

    .brand {
        order: 2;
    }

    .header-actions {
        order: 3;
    }

    .theme-toggle {
        order: 1;
    }

    .menu-toggle {
        order: 2;
    }
}

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

.service-choice-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .75rem;
    align-items: flex-start;
    padding: .95rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    cursor: pointer;
}

.service-choice-card input {
    margin-top: .2rem;
}

.service-choice-card strong,
.service-choice-card small {
    display: block;
}

.service-choice-card small {
    margin-top: .25rem;
    opacity: .75;
    line-height: 1.45;
}

@media (max-width: 700px) {
    .service-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PUBLIC REVIEWS SECTION
========================================================= */

.reviews-section {
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.public-review-card {
    position: relative;
    min-height: 280px;
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    overflow: hidden;
}

.public-review-card::before {
    content: "“";
    position: absolute;
    right: 1rem;
    top: -.55rem;
    font-size: 7rem;
    line-height: 1;
    color: rgba(0,244,0,.08);
    font-family: Georgia, serif;
}

.review-stars,
.public-review-stars {
    display: flex;
    gap: .2rem;
    color: var(--green-bright);
    font-size: 1rem;
    padding-bottom: .75rem;
}

.review-stars i,
.public-review-stars i {
    filter: drop-shadow(0 0 6px rgba(0,244,0,.35));
}

.public-review-card p {
    position: relative;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.public-review-author {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.public-review-author strong,
.public-review-author span {
    display: block;
}

.public-review-author strong {
    color: var(--cream);
}

.public-review-author span {
    margin-top: .25rem;
    color: var(--green-soft);
    font-size: .9rem;
}

.review-featured-pill {
    display: inline-flex;
    width: fit-content;
    margin-bottom: .85rem;
    padding: .4rem .65rem;
    border-radius: 999px;
    color: var(--green-soft);
    background: rgba(0,244,0,.1);
    border: 1px solid rgba(0,244,0,.22);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

html[data-theme="light"] .public-review-card {
    background: rgba(255,255,255,.82);
}

html[data-theme="light"] .public-review-author strong {
    color: #102019;
}

@media (max-width: 950px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.turnstile-wrapper {
    display: flex;
    justify-content: center;
    margin: 0.45rem 0 0.2rem;
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
}
html[data-theme="light"] .turnstile-wrapper {
    background: rgba(34, 66, 55, 0.045);
    border-color: rgba(34, 66, 55, 0.12);
}
.privacy-notice {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0.75rem 1rem;
    text-align: center;

    border-top: 1px solid var(--line);
}

.privacy-note {
    margin: 0;
    max-width: 900px;

    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted);

    text-align: center;
}

html[data-theme="light"] .privacy-notice {
    background: rgba(34, 66, 55, 0.045);
    border-color: rgba(34, 66, 55, 0.12);
}

/* =========================================================
   INTERACTIVE DASHBOARD DEMO MODAL
========================================================= */

.hero-visual {
    cursor: pointer;
}

.hero-visual::after {
    content: "Click to explore";
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 10;
    padding: .7rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 8, 7, .8);
    color: var(--green-bright);
    font-size: .8rem;
    font-weight: 900;
    backdrop-filter: blur(14px);
}

.demo-dashboard-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
}

.demo-dashboard-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.demo-dashboard-shell {
    position: relative;
    width: min(1100px, 100%);
    max-height: 88vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(8, 17, 14, .96);
    box-shadow: 0 35px 120px rgba(0,0,0,.55);
}

.demo-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
}

.demo-sidebar {
    display: grid;
    align-content: start;
    gap: .75rem;
    padding: 1.25rem;
    border-right: 1px solid var(--line);
    background: rgba(0,0,0,.22);
}

.demo-sidebar strong {
    margin-bottom: .75rem;
    color: var(--green-bright);
}

.demo-sidebar button {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .9rem 1rem;
    background: rgba(255,255,255,.055);
    color: var(--muted);
    text-align: left;
    font-weight: 900;
    cursor: pointer;
}

.demo-sidebar button.active,
.demo-sidebar button:hover {
    background: rgba(0,244,0,.12);
    color: var(--green-bright);
    border-color: rgba(0,244,0,.35);
}

.demo-main {
    padding: 2.5rem;
    overflow-y: auto;
}

.demo-topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.demo-topbar span {
    color: var(--green-soft);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 900;
    font-size: .75rem;
}

.demo-topbar h2 {
    margin: .35rem 0 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -.06em;
}

.demo-content {
    display: none;
    animation: demoFade .25s ease;
}

.demo-content.active {
    display: grid;
    gap: 1rem;
}

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

.demo-stat,
.demo-row {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    color: var(--muted);
}

.demo-stat strong,
.demo-row span {
    display: block;
    margin-top: .35rem;
    color: var(--green-bright);
    font-size: 1.6rem;
    font-weight: 950;
}

.demo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-row span {
    margin: 0;
    font-size: .95rem;
}

.demo-chart {
    height: 360px;
    display: flex;
    align-items: end;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(0,0,0,.22);
}

.demo-chart span {
    flex: 1;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, var(--green-bright), rgba(0,244,0,.12));
    box-shadow: 0 0 30px rgba(0,244,0,.22);
}

@media (max-width: 800px) {
    .demo-dashboard-shell {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .demo-sidebar {
        grid-template-columns: repeat(2, 1fr);
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .demo-sidebar strong {
        grid-column: 1 / -1;
    }

    .demo-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.demo-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.demo-panel {
    display: grid;
    gap: .75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255,255,255,.04);
}

.demo-panel h3 {
    margin: 0 0 .35rem;
}

.demo-clickable {
    cursor: pointer;
    text-align: left;
    transition: .22s ease;
}

.demo-clickable:hover {
    transform: translateY(-3px);
    border-color: rgba(0,244,0,.45);
    background: rgba(0,244,0,.075);
}

.demo-insight-box {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(0,244,0,.22);
    border-radius: 20px;
    background: rgba(0,244,0,.075);
    color: var(--green-soft);
    font-weight: 800;
    line-height: 1.55;
}

.demo-insight-box.pulse {
    animation: demoPulse .35s ease;
}

@keyframes demoPulse {
    0% { transform: scale(.98); opacity: .65; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 800px) {
    .demo-stats-grid {
        grid-template-columns: 1fr;
    }
}

.demo-report-panel {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,.04);
}

.demo-report-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.demo-report-header h3,
.demo-report-header p {
    margin: 0;
}

.demo-report-header p {
    margin-top: .25rem;
    color: var(--muted);
}

.demo-report-header span {
    color: var(--green-bright);
    font-size: 1.8rem;
    font-weight: 950;
}

.demo-report-chart {
    height: 330px;
    display: flex;
    align-items: end;
    gap: .85rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(0,0,0,.22);
}

.demo-bar {
    flex: 1;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: .75rem .35rem;
    border: 0;
    border-radius: 999px 999px 12px 12px;
    background: linear-gradient(180deg, var(--green-bright), rgba(0,244,0,.18));
    color: var(--black);
    box-shadow: 0 0 30px rgba(0,244,0,.22);
}

.demo-bar span {
    font-weight: 950;
}

.demo-bar small {
    font-weight: 900;
    opacity: .85;
}

@media (max-width: 800px) {
    .demo-report-header {
        flex-direction: column;
        gap: .35rem;
    }

    .demo-report-header span {
        font-size: 1.45rem;
    }

    .demo-report-chart {
        height: auto;
        min-height: 360px;
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: .65rem;
    }

    .demo-bar {
        width: 100%;
        min-height: 58px;
        height: auto !important;
        flex-direction: row;
        border-radius: 16px;
        padding: .85rem 1rem;
    }

    .demo-bar span,
    .demo-bar small {
        color: var(--black);
    }
}

/* =========================================================
   MOBILE HERO DASHBOARD CHIP FIX
========================================================= */

@media (max-width: 720px) {
    .hero-visual {
        min-height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: .65rem;
        padding-bottom: 1rem;
    }

    .hero-visual .screen-card {
        width: 100%;
        flex: 0 0 100%;
        order: 1;
    }

    .floating-chip {
        position: relative;
        inset: auto;
        margin: 0;
        transform: none;
        font-size: .78rem;
        padding: .7rem .85rem;
        justify-content: center;
        white-space: nowrap;
    }

    .chip-one {
        order: 2;
    }

    .chip-two {
        order: 3;
    }

    .chip-three {
        order: 4;
    }

    .hero-visual::after {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        order: 5;
        margin: 0;
        padding: .7rem .95rem;
        font-size: .78rem;
    }
}

/* =========================================================
   SERVICES CAROUSEL
========================================================= */

.services-carousel {
    position: relative;
    margin-top: 2rem;
}

.services-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    margin-bottom: 1rem;
}

.services-arrow {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.065);
    color: var(--green-bright);
    cursor: pointer;
    transition: .25s ease;
}

.services-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(0,244,0,.45);
    background: rgba(0,244,0,.1);
}

.services-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: .25rem 0 1.1rem;
    background: none !important;
    scrollbar-width: thin;
    scrollbar-color: var(--green-bright) transparent;
}

.services-viewport::-webkit-scrollbar {
    height: 7px;
}

.services-viewport::-webkit-scrollbar-track {
    background: transparent;
}

.services-viewport::-webkit-scrollbar-thumb {
    background: rgba(0,244,0,.45);
    border-radius: 999px;
}

.services-track {
    display: flex;
    gap: 1.15rem;
    width: max-content;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.services-track .service-card {
    flex: 0 0 calc((min(var(--container), calc(100vw - 40px)) - 2.3rem) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.services-track .service-card:hover {
    transform: translateY(-8px);
}

@media (max-width: 950px) {
    .services-track .service-card {
        flex-basis: calc((min(var(--container), calc(100vw - 40px)) - 1.15rem) / 2);
    }
}

@media (max-width: 650px) {
    .services-carousel {
        --mobile-service-card-width: min(84vw, 370px);
    }

    .services-carousel-controls {
        justify-content: center;
    }

    .services-viewport {
        padding-left: 0;
        padding-right: 0;
        scroll-padding-inline: calc((100% - var(--mobile-service-card-width)) / 2);
    }

    .services-track {
        width: auto;
        padding-inline: calc((100% - var(--mobile-service-card-width)) / 2);
    }

    .services-track .service-card {
        flex: 0 0 var(--mobile-service-card-width);
    }
}

html[data-theme="light"] .services-track .service-card {
    background: #ffffff;
    box-shadow: none;
}

html[data-theme="light"] .services-track .service-card::before {
    display: none;
}

html[data-theme="light"] .services-viewport,
html[data-theme="light"] .services-track {
    background: transparent !important;
}

/* =========================================================
   INTERACTIVE DASHBOARD DEMO MODAL — LIGHT MODE
========================================================= */

html[data-theme="light"] .demo-dashboard-modal {
    background: rgba(245, 248, 246, 0.72);
    backdrop-filter: blur(18px);
}

html[data-theme="light"] .demo-dashboard-shell {
    background:
        radial-gradient(circle at top right, rgba(0, 201, 0, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.98), rgba(238,244,240,0.94));
    border-color: rgba(34, 66, 55, 0.18);
    box-shadow: 0 35px 120px rgba(34, 66, 55, 0.22);
    color: #102019;
}

html[data-theme="light"] .demo-close {
    background: rgba(255,255,255,0.88);
    color: #102019;
    border-color: rgba(34, 66, 55, 0.18);
}

html[data-theme="light"] .demo-close:hover {
    background: rgba(0, 201, 0, 0.12);
    color: #00a900;
    border-color: rgba(0, 201, 0, 0.35);
}

html[data-theme="light"] .demo-sidebar {
    background: rgba(34, 66, 55, 0.055);
    border-color: rgba(34, 66, 55, 0.14);
}

html[data-theme="light"] .demo-sidebar strong {
    color: #00a900;
}

html[data-theme="light"] .demo-sidebar button {
    background: rgba(255,255,255,0.82);
    color: rgba(16, 32, 25, 0.68);
    border-color: rgba(34, 66, 55, 0.16);
}

html[data-theme="light"] .demo-sidebar button.active,
html[data-theme="light"] .demo-sidebar button:hover {
    background: rgba(0, 201, 0, 0.12);
    color: #00a900;
    border-color: rgba(0, 201, 0, 0.34);
}

html[data-theme="light"] .demo-topbar span {
    color: #157a2d;
}

html[data-theme="light"] .demo-topbar h2 {
    color: #102019;
}

html[data-theme="light"] .demo-stat,
html[data-theme="light"] .demo-row,
html[data-theme="light"] .demo-panel,
html[data-theme="light"] .demo-report-panel {
    background: rgba(255,255,255,0.82);
    border-color: rgba(34, 66, 55, 0.16);
    color: rgba(16, 32, 25, 0.68);
    box-shadow: 0 18px 45px rgba(34, 66, 55, 0.08);
}

html[data-theme="light"] .demo-stat strong,
html[data-theme="light"] .demo-row span,
html[data-theme="light"] .demo-report-header span {
    color: #00a900;
}

html[data-theme="light"] .demo-stat small,
html[data-theme="light"] .demo-report-header p {
    color: rgba(16, 32, 25, 0.58);
}

html[data-theme="light"] .demo-panel h3,
html[data-theme="light"] .demo-report-header h3 {
    color: #102019;
}

html[data-theme="light"] .demo-clickable:hover {
    background: rgba(0, 201, 0, 0.08);
    border-color: rgba(0, 201, 0, 0.35);
}

html[data-theme="light"] .demo-insight-box {
    background: rgba(0, 201, 0, 0.09);
    border-color: rgba(0, 201, 0, 0.28);
    color: #157a2d;
}

html[data-theme="light"] .demo-report-chart,
html[data-theme="light"] .demo-chart {
    background:
        linear-gradient(180deg, rgba(34, 66, 55, 0.055), rgba(34, 66, 55, 0.025));
    border-color: rgba(34, 66, 55, 0.14);
}

html[data-theme="light"] .demo-bar {
    background: linear-gradient(180deg, #00c900, rgba(0, 201, 0, 0.20));
    color: #06120e;
    box-shadow: 0 18px 38px rgba(0, 201, 0, 0.18);
}

html[data-theme="light"] .demo-bar:hover {
    background: linear-gradient(180deg, #00e000, rgba(0, 201, 0, 0.28));
}

html[data-theme="light"] .demo-bar span,
html[data-theme="light"] .demo-bar small {
    color: #06120e;
}

html[data-theme="light"] .demo-main::-webkit-scrollbar {
    width: 7px;
}

html[data-theme="light"] .demo-main::-webkit-scrollbar-track {
    background: transparent;
}

html[data-theme="light"] .demo-main::-webkit-scrollbar-thumb {
    background: rgba(0, 201, 0, 0.45);
    border-radius: 999px;
}

html[data-theme="light"] .demo-dashboard-shell .primary-btn {
    background: #06120e;
    color: #ffffff;
}

html[data-theme="light"] .demo-dashboard-shell .primary-btn:hover {
    background: #00c900;
    color: #06120e;
}

/* =========================================================
   SEO INTRO SECTION
========================================================= */

.seo-intro-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.seo-intro-card {
    max-width: 980px;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(0,244,0,.12), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.seo-intro-card h2 {
    margin: .85rem 0 1rem;
    max-width: 840px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.seo-intro-card p {
    max-width: 850px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

html[data-theme="light"] .seo-intro-card {
    background: rgba(255,255,255,.82);
    border-color: rgba(34,66,55,.15);
    box-shadow: 0 24px 70px rgba(34,66,55,.10);
}

html[data-theme="light"] .seo-intro-card h2 {
    color: #102019;
}

html[data-theme="light"] .seo-intro-card p {
    color: rgba(16,32,25,.68);
}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.faq-card {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    box-shadow: 0 18px 55px rgba(0,0,0,.16);
}

.faq-card h3 {
    margin: 0 0 .65rem;
    color: var(--cream);
    font-size: 1.2rem;
    letter-spacing: -.03em;
}

.faq-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

html[data-theme="light"] .faq-card {
    background: rgba(255,255,255,.82);
    border-color: rgba(34,66,55,.15);
    box-shadow: 0 20px 55px rgba(34,66,55,.09);
}

html[data-theme="light"] .faq-card h3 {
    color: #102019;
}

html[data-theme="light"] .faq-card p {
    color: rgba(16,32,25,.68);
}

@media (max-width: 950px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .seo-intro-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .seo-intro-card {
        padding: 1.35rem;
    }

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