:root {
    --ink-950: #0b1830;
    --ink-900: #10213f;
    --ink-800: #1c355e;
    --ink-700: #35527d;
    --ink-500: #6a7f9e;
    --surface-50: #f4f8fd;
    --white: #ffffff;
    --line: rgba(16, 33, 63, 0.1);
    --shadow-soft: 0 18px 40px rgba(17, 40, 80, 0.08);
    --shadow-float: 0 28px 60px rgba(12, 31, 63, 0.14);
    --grad-primary: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    --grad-dark: linear-gradient(180deg, #0d2d63 0%, #123b7d 100%);
    --grad-soft: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
    --accent-blue: #0d6efd;
    --accent-violet: #0d6efd;
    --accent-green: #14915f;
    --radius-lg: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--ink-900);
    background: #ffffff;
    line-height: 1.65;
    overflow-x: hidden;
}

main {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.container {
    width: min(100% - 32px, 1380px);
    max-width: 1380px;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.footer-brand,
.admin-brand {
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.04em;
}

h1, h2, h3, h4 {
    line-height: 1.12;
}

p,
li,
small,
span {
    letter-spacing: -0.01em;
}

a { text-decoration: none; }

.breadcrumb-nav {
    padding: 1rem 0 0;
    background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--ink-500);
    font-size: 0.9rem;
    font-weight: 700;
}

.breadcrumb-item::after {
    content: "/";
    color: rgba(16, 33, 63, 0.28);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item a {
    color: var(--ink-700);
}

.breadcrumb-item.active span {
    color: var(--accent-blue);
}

.btn {
    border-radius: 6px;
    font-weight: 700;
    padding: 0.82rem 1.35rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.01em;
}

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

.btn-primary {
    background: var(--grad-primary);
    border: 0;
    box-shadow: 0 14px 28px rgba(13, 110, 253, 0.2);
}

.btn-outline-light {
    color: var(--accent-blue);
    border-color: rgba(13, 110, 253, 0.18);
    background: var(--white);
}

.btn-outline-dark {
    color: var(--ink-900);
    border-color: rgba(15, 23, 45, 0.12);
    background: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 33, 63, 0.08);
}

.top-contact-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b3b84;
}

.top-contact-inner,
.top-contact-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-contact-inner {
    min-height: 42px;
}

.top-contact-list {
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.84rem;
}

.top-contact-link {
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
}

.navbar { padding: 1.05rem 0; }

.brand-lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.brand-lockup small {
    color: var(--ink-500);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-brand {
    color: var(--ink-900);
    font-size: 1.15rem;
    font-weight: 800;
}

.navbar-brand span { color: var(--accent-blue); }
.navbar-toggler { filter: none; }

.nav-link {
    color: var(--ink-700);
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active { color: var(--accent-blue); }

.nav-cluster {
    gap: 0.35rem;
}

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

.hero-section,
.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 4rem;
    background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
    color: var(--ink-900);
    border-bottom: 1px solid rgba(16, 33, 63, 0.06);
}

.inner-hero {
    padding: 4.5rem 0 3.2rem;
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.hero-section::before,
.inner-hero::before {
    content: "";
    position: absolute;
    inset: -10% auto auto -10%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.14), transparent 68%);
}

.hero-section::after,
.inner-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: 60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08), transparent 68%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.15rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    color: var(--accent-blue);
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.12);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-title,
.inner-hero h1 {
    font-size: clamp(2.7rem, 4.7vw, 4.3rem);
    line-height: 1.04;
    margin-bottom: 0.95rem;
    font-weight: 800;
}

.hero-text,
.inner-hero p {
    max-width: 640px;
    color: var(--ink-700);
    font-size: 1.06rem;
}

.hero-actions,
.cta-actions,
.showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.pager-wrap nav {
    display: flex;
    justify-content: center;
}

.pager-wrap .pagination {
    gap: 0.4rem;
}

.pager-wrap .page-link {
    border-radius: 8px;
    color: var(--ink-800);
    border-color: rgba(16, 33, 63, 0.12);
    padding: 0.7rem 0.95rem;
    font-weight: 700;
}

.pager-wrap .active > .page-link {
    background: var(--grad-primary);
    border-color: transparent;
}

.content-copy {
    color: var(--ink-800);
}

.content-copy p,
.content-copy li {
    font-size: 1rem;
}

.content-copy h2,
.content-copy h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.85rem;
}

.hero-actions { margin-top: 2rem; }

.hero-company-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.hero-company-strip span {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.1);
    color: var(--ink-700);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-trustbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.hero-trustbar span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.06);
    color: var(--ink-700);
    font-size: 0.92rem;
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.7rem;
}

.hero-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.hero-capability-grid div,
.overview-card {
    padding: 1.15rem 1.1rem;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.hero-capability-grid strong,
.overview-card h3 {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1rem;
    font-weight: 800;
}

.hero-capability-grid span,
.overview-card p {
    color: var(--ink-500);
    font-size: 0.92rem;
}

.hero-metrics div {
    padding: 1.2rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
    display: block;
    font-size: 1.8rem;
}

.hero-metrics span {
    color: var(--ink-500);
    font-size: 0.9rem;
}

.hero-dashboard {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: var(--shadow-float);
}

.corporate-dashboard {
    padding: 1.35rem;
}

.hero-stats-panel {
    display: grid;
    gap: 0.85rem;
    margin: 1.25rem 0 1rem;
}

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

.hero-stats-row div {
    padding: 1rem;
    border-radius: 10px;
    background: #f6faff;
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.hero-stats-row strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink-900);
}

.hero-stats-row span {
    color: var(--ink-500);
    font-size: 0.88rem;
}

.hero-service-list {
    display: grid;
    gap: 0.75rem;
}

.hero-service-item {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.hero-service-item span {
    width: 14px;
    height: 14px;
    margin-top: 0.25rem;
    border-radius: 50%;
    background: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.hero-service-item p {
    margin: 0;
    color: var(--ink-700);
}

.company-intro-card,
.footer-top-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.company-intro-card h2,
.footer-top-panel h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.company-intro-card p,
.footer-top-panel p {
    color: var(--ink-700);
}

.intro-metric-stack,
.delivery-grid,
.values-grid {
    display: grid;
    gap: 1rem;
}

.intro-metric-stack div,
.process-card,
.value-card {
    padding: 1.2rem 1.25rem;
    border-radius: 10px;
    background: rgba(244, 248, 253, 0.96);
    border: 1px solid rgba(15, 23, 45, 0.06);
}

.intro-metric-stack strong,
.process-card span {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
}

.intro-metric-stack span,
.process-card p,
.value-card p {
    color: var(--ink-500);
}

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

.delivery-model-section {
    position: relative;
    background:
        radial-gradient(circle at right top, rgba(13, 110, 253, 0.07), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 54%, #eef4ff 100%);
}

.delivery-model-section .section-heading h2 {
    max-width: 920px;
}

.delivery-model-section .section-heading p {
    max-width: 760px;
}

.delivery-model-section .delivery-grid {
    position: relative;
    gap: 1.2rem;
}

.delivery-model-section .delivery-grid::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 2.9rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.08), rgba(13, 110, 253, 0.28), rgba(13, 110, 253, 0.08));
    z-index: 0;
}

.delivery-model-section .process-card {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.3rem 1.35rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
    border: 1px solid rgba(16, 33, 63, 0.08);
    box-shadow: 0 18px 36px rgba(17, 40, 80, 0.08);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.delivery-model-section .process-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #54b2ff);
}

.delivery-model-section .process-card:nth-child(2)::before {
    background: linear-gradient(90deg, #1768ff, #32a2ff);
}

.delivery-model-section .process-card:nth-child(3)::before {
    background: linear-gradient(90deg, #0f8acb, #32c2d6);
}

.delivery-model-section .process-card:nth-child(4)::before {
    background: linear-gradient(90deg, #14915f, #30c48c);
}

.delivery-model-section .process-card::after {
    content: "";
    position: absolute;
    top: 2.45rem;
    right: -0.7rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: #ffffff;
    border: 4px solid rgba(13, 110, 253, 0.2);
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.06);
}

.delivery-model-section .process-card:last-child::after {
    display: none;
}

.delivery-model-section .process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 110, 253, 0.16);
    box-shadow: 0 26px 52px rgba(17, 40, 80, 0.14);
}

.delivery-model-section .process-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.delivery-model-section .process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--accent-blue);
    box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.1);
}

.delivery-model-section .process-icon svg {
    width: 24px;
    height: 24px;
}

.delivery-model-section .process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
    padding: 0 0.9rem;
    border-radius: 14px;
    background: rgba(16, 33, 63, 0.04);
    color: var(--ink-800);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.delivery-model-section .process-card:nth-child(2) .process-icon,
.delivery-model-section .process-card:nth-child(2) .process-step {
    background: rgba(23, 104, 255, 0.08);
    color: #1768ff;
}

.delivery-model-section .process-card:nth-child(3) .process-icon,
.delivery-model-section .process-card:nth-child(3) .process-step {
    background: rgba(15, 138, 203, 0.08);
    color: #0f8acb;
}

.delivery-model-section .process-card:nth-child(4) .process-icon,
.delivery-model-section .process-card:nth-child(4) .process-step {
    background: rgba(20, 145, 95, 0.09);
    color: #14915f;
}

.delivery-model-section .process-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.08rem;
    color: var(--ink-900);
}

.delivery-model-section .process-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.72;
}

.process-card h3,
.value-card h3 {
    margin: 0.7rem 0 0.55rem;
    font-size: 1.15rem;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.12);
}

.company-values-section {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(84, 178, 255, 0.14), transparent 26%),
        linear-gradient(180deg, #0d2347 0%, #112d59 56%, #173a6d 100%);
}

.company-values-section .section-heading h2 {
    max-width: 920px;
}

.company-values-section .section-heading p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.company-values-section .values-grid {
    gap: 1.15rem;
}

.company-values-section .value-card {
    position: relative;
    padding: 1.45rem 1.35rem 1.35rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(4, 14, 33, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    overflow: hidden;
}

.company-values-section .value-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #54b2ff, #0d6efd);
}

.company-values-section .value-card:nth-child(2)::before {
    background: linear-gradient(90deg, #35c7a0, #2da7ff);
}

.company-values-section .value-card:nth-child(3)::before {
    background: linear-gradient(90deg, #7db6ff, #4d84ff);
}

.company-values-section .value-card:nth-child(4)::before {
    background: linear-gradient(90deg, #2fc38b, #54b2ff);
}

.company-values-section .value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.value-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-icon,
.value-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
    border-radius: 14px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.value-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.95rem;
}

.value-kicker {
    padding: 0 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.company-values-section .value-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.08rem;
    color: var(--white);
}

.company-values-section .value-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
    font-size: 0.95rem;
}

.values-grid-light .value-card,
.value-card-light {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.values-grid-light .value-card p,
.value-card-light p {
    color: var(--ink-500);
}

.value-card p {
    color: rgba(255, 255, 255, 0.72);
}

.technology-showcase-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(84, 178, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #081b3a 0%, #102a57 52%, #173769 100%);
}

.technology-showcase-section .section-heading,
.technology-showcase-section .section-heading p,
.technology-showcase-section .section-heading h2,
.technology-showcase-section .eyebrow {
    color: var(--white);
}

.technology-showcase-section .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.technology-heading {
    max-width: 920px;
    margin-bottom: 2rem;
}

.technology-heading p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.76);
}

.tech-showcase-panel {
    padding: 1.6rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 50px rgba(4, 14, 33, 0.22);
    backdrop-filter: blur(14px);
}

.tech-showcase-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tech-showcase-meta div {
    padding: 1rem 1.05rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-showcase-meta strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 0.95rem;
}

.tech-showcase-meta span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.tech-marquee-shell {
    position: relative;
    overflow: hidden;
    padding: 0.75rem 0;
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.tech-marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: tech-marquee 34s linear infinite;
    will-change: transform;
}

.tech-marquee-shell:hover .tech-marquee-track {
    animation-play-state: paused;
}

.tech-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    width: 380px;
    min-height: 220px;
    padding: 1.45rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 253, 0.98) 100%);
    border: 1px solid rgba(16, 33, 63, 0.08);
    box-shadow: 0 20px 40px rgba(4, 14, 33, 0.14);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    overflow: hidden;
}

.tech-card-glow {
    position: absolute;
    inset: -32% auto auto -8%;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(84, 178, 255, 0.2), transparent 68%);
    pointer-events: none;
}

.tech-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-card-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.tech-card-badge,
.tech-admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 64px;
    padding: 0.75rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(13, 88, 202, 0.08));
    color: var(--accent-blue);
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tech-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 178, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 246, 255, 1) 100%);
    box-shadow: 0 26px 52px rgba(4, 14, 33, 0.18);
}

.tech-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--ink-900);
}

.tech-card-label {
    display: inline-flex;
    margin-top: 0.35rem;
    color: var(--ink-500);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tech-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.96rem;
    line-height: 1.65;
    max-width: none;
}

.tech-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.15rem;
}

.tech-card-footer span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.06);
    border: 1px solid rgba(13, 110, 253, 0.08);
    color: var(--ink-800);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tech-admin-badge {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
}

.consultation-section {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
}

.consultation-panel {
    padding: 2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #0e284f 0%, #143768 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 56px rgba(8, 22, 49, 0.22);
    color: var(--white);
}

.consultation-panel .eyebrow,
.consultation-panel h2,
.consultation-panel p {
    color: var(--white);
}

.consultation-panel .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.consultation-panel h2 {
    max-width: 620px;
    margin-bottom: 0.9rem;
}

.consultation-panel p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.78);
}

.consultation-points {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.5rem;
}

.consultation-points div {
    padding: 1rem 1.05rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.consultation-points strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 0.96rem;
}

.consultation-points span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.6;
}

.consultation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.consultation-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.8rem;
    font-weight: 700;
}

.consultation-form-card {
    height: 100%;
    padding: 1.75rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.98) 100%);
    border: 1px solid rgba(16, 33, 63, 0.08);
    box-shadow: 0 24px 50px rgba(17, 40, 80, 0.1);
}

.consultation-form-head {
    margin-bottom: 1.15rem;
}

.consultation-form-head h3 {
    margin: 0.7rem 0 0.45rem;
    font-size: 1.3rem;
    color: var(--ink-900);
}

.consultation-form-head p {
    margin: 0;
    color: var(--ink-500);
}

.consultation-form-card .form-label {
    font-weight: 700;
    color: var(--ink-800);
}

.consultation-form-card .form-control {
    background: #ffffff;
}

.consultation-submit {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@keyframes tech-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(calc(-50% - 0.625rem), 0, 0);
    }
}

.section-block {
    padding: 4.75rem 0;
}

.section-light {
    background: #ffffff;
}

.dark-band {
    background: linear-gradient(180deg, #0f2f67 0%, #12356f 100%);
    color: var(--white);
}

.dark-band .section-heading p,
.dark-band .section-heading h2 {
    color: var(--white);
}

.feature-card,
.product-card,
.content-card,
.form-card,
.stat-card,
.cta-panel,
.quote-card,
.intro-card,
.map-card {
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.4rem;
}

.section-heading-wide {
    max-width: 920px;
}

.section-heading h2 {
    font-size: clamp(1.95rem, 3.6vw, 2.75rem);
    margin-bottom: 0.75rem;
    line-height: 1.14;
}

.section-heading p {
    color: var(--ink-700);
    max-width: 680px;
}

.inner-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.25rem;
}

.inner-side-card {
    padding: 1.35rem;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.inner-side-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.inner-side-card p,
.inner-side-card li {
    color: var(--ink-500);
}

.corporate-list-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.corporate-list-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    background: #edf4fc;
}

.corporate-list-copy h2,
.corporate-list-copy h3 {
    margin-bottom: 0.55rem;
}

.corporate-list-copy p {
    color: var(--ink-700);
}

.section-tight {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.company-overview-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #eef5ff 48%, #ffffff 100%);
}

.company-overview-section .section-heading {
    position: relative;
    z-index: 1;
}

.company-overview-section .eyebrow {
    background: rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.12);
    color: var(--accent-blue);
}

.company-overview-section .section-heading h2 {
    max-width: 980px;
}

.company-overview-section .section-heading p {
    max-width: 760px;
    font-size: 1.04rem;
}

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

.company-overview-section .overview-card {
    position: relative;
    padding: 1.5rem 1.35rem 1.35rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.98) 100%);
    border: 1px solid rgba(16, 33, 63, 0.08);
    box-shadow: 0 20px 40px rgba(17, 40, 80, 0.08);
    overflow: hidden;
}

.company-overview-section .overview-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #35a0ff);
}

.company-overview-section .overview-card:nth-child(2)::before {
    background: linear-gradient(90deg, #123b7d, #1b74e4);
}

.company-overview-section .overview-card:nth-child(3)::before {
    background: linear-gradient(90deg, #14915f, #2fc38b);
}

.company-overview-section .overview-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    color: var(--ink-900);
}

.company-overview-section .overview-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.96rem;
    line-height: 1.7;
}

.footer-top-panel {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0f2f67 0%, #1a4a97 100%);
}

.footer-top-panel h2,
.footer-top-panel .eyebrow-dark {
    color: var(--white);
}

.footer-top-panel p {
    color: rgba(255, 255, 255, 0.8);
}

.hero-dashboard-top,
.card-badge-row,
.map-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hero-dashboard-top h3 {
    font-size: 1.6rem;
    margin: 0.35rem 0 0;
}

.hero-dashboard-top small,
.map-card-head span,
.form-note { color: var(--ink-500); }

.status-pill,
.tiny-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(91, 124, 255, 0.12);
    color: var(--accent-blue);
    font-size: 0.82rem;
    font-weight: 800;
}

.tiny-pill-featured {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.hero-chart-card,
.feature-card,
.product-card,
.content-card,
.form-card,
.stat-card,
.cta-panel,
.quote-card,
.intro-card,
.pricing-card,
.map-card,
.product-showcase {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.hero-chart-card {
    margin-top: 1rem;
    padding: 1.4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.chart-bars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 0.75rem;
    height: 120px;
}

.chart-bars span {
    display: block;
    border-radius: 999px 999px 12px 12px;
    background: var(--grad-primary);
}

.chart-bars span:nth-child(1) { height: 38%; }
.chart-bars span:nth-child(2) { height: 52%; }
.chart-bars span:nth-child(3) { height: 68%; }
.chart-bars span:nth-child(4) { height: 58%; }
.chart-bars span:nth-child(5) { height: 78%; }
.chart-bars span:nth-child(6) { height: 94%; }

.chart-copy,
.form-card-head { margin-top: 1rem; }

.chart-copy p,
.section-heading p,
.feature-card p,
.product-card p,
.content-card p,
.form-card p,
.footer-copy,
.footer-text,
.contact-points li,
.pricing-card p,
.quote-card p { color: var(--ink-500); }

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

.mini-card {
    padding: 1.15rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
}

.mini-card strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--ink-900);
}

.mini-card span { color: var(--ink-500); }

.section-block { padding: 5.5rem 0; }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 0.9rem;
    font-weight: 800;
}

/* Contrast safety: light backgrounds get dark copy, dark backgrounds get light copy. */
.section-light,
.hero-section,
.inner-hero {
    color: var(--ink-900);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.inner-hero h1,
.inner-hero h2,
.inner-hero h3 {
    color: var(--ink-900);
}

.section-light p,
.section-light li,
.section-light small,
.hero-section p,
.hero-section li,
.hero-section small,
.inner-hero p,
.inner-hero li,
.inner-hero small {
    color: var(--ink-700);
}

.dark-band {
    background: linear-gradient(180deg, rgba(15, 23, 45, 0.02), rgba(15, 23, 45, 0.02)), var(--grad-dark);
    color: var(--white);
}

.dark-band,
.technology-showcase-section {
    color: var(--white);
}

.dark-band h1,
.dark-band h2,
.dark-band h3,
.dark-band h4,
.dark-band h5,
.dark-band h6,
.technology-showcase-section h1,
.technology-showcase-section h2,
.technology-showcase-section h3,
.technology-showcase-section h4,
.technology-showcase-section h5,
.technology-showcase-section h6 {
    color: var(--white);
}

.dark-band p,
.dark-band li,
.dark-band small,
.technology-showcase-section p,
.technology-showcase-section li,
.technology-showcase-section small {
    color: rgba(255, 255, 255, 0.78);
}

.dark-band .section-heading p,
.dark-band .product-card p,
.dark-band .product-footer span,
.dark-band .product-footer a { color: rgba(255, 255, 255, 0.72); }

.feature-card,
.product-card,
.content-card,
.form-card,
.stat-card,
.quote-card,
.pricing-card,
.intro-card {
    padding: 1.35rem;
}

.feature-card,
.product-card {
    height: 100%;
}

.startup-card,
.pricing-card,
.product-showcase { transition: transform 0.2s ease; }

.startup-card:hover,
.pricing-card:hover,
.product-showcase:hover { transform: translateY(-4px); }

.feature-card h2,
.feature-card h3,
.product-card h2,
.product-card h3,
.pricing-card h2 { margin-bottom: 0.75rem; }

.feature-card h3,
.product-card h3,
.process-card h3,
.value-card h3 {
    font-size: 1.02rem;
    line-height: 1.24;
}

.feature-icon,
.product-category,
.pricing-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 800;
}

.feature-icon {
    margin-bottom: 1rem;
    background: rgba(30, 194, 139, 0.14);
    color: #0e8f67;
}

.product-category {
    background: rgba(91, 124, 255, 0.12);
    color: var(--accent-blue);
}

.pricing-tag {
    background: rgba(125, 92, 255, 0.12);
    color: var(--accent-violet);
}

.card-link,
.product-footer a {
    display: inline-flex;
    margin-top: 1.25rem;
    color: var(--accent-blue);
    font-weight: 700;
}

.service-card-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.glass-card h3,
.dark-band h2,
.dark-band h3,
.dark-band .product-category { color: var(--white); }

.product-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: 1.2rem;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.cta-panel-strong { padding: 2rem; }

.quote-card {
    height: 100%;
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.service-grid-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.intro-card strong {
    display: block;
    margin-bottom: 0.55rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    padding: 1.75rem;
}

.product-showcase-copy,
.product-showcase-panel { display: flex; align-items: center; }

.panel-window {
    width: 100%;
    padding: 1.3rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #111b32 0%, #1b2948 100%);
    color: var(--white);
}

.panel-dots {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.panel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.panel-metric { padding: 1rem 0 1.2rem; }
.panel-metric strong { display: block; font-size: 1.7rem; }

.panel-list {
    display: grid;
    gap: 0.65rem;
}

.panel-list span {
    display: block;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-side-stack { display: grid; gap: 1rem; height: 100%; }
.map-card { overflow: hidden; padding: 0; }
.map-card-head { padding: 1.25rem 1.25rem 0.95rem; }

.map-card iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.form-control,
.form-select {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 45, 0.12);
    padding: 0.95rem 1rem;
    background: #fbfcff;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(91, 124, 255, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(91, 124, 255, 0.12);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card-featured {
    background: linear-gradient(180deg, #11192f 0%, #182443 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-float);
}

.pricing-card-featured p,
.pricing-card-featured .pricing-list li { color: rgba(255, 255, 255, 0.78); }

.price-tag {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-500);
}

.pricing-card-featured .price-tag span { color: rgba(255, 255, 255, 0.7); }

.pricing-list,
.check-list,
.contact-points {
    margin: 0;
    padding-left: 1.2rem;
}

.pricing-list li,
.check-list li,
.contact-points li { margin-bottom: 0.6rem; }

.site-footer {
    padding: 0 0 1.4rem;
    background: #0d1f3d;
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0 0.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.site-footer h6 {
    margin: 0 0 0.3rem;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-brand {
    display: inline-block;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 800;
}

.footer-kicker {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer a,
.site-footer span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-column a:hover,
.footer-brand:hover {
    color: var(--white);
}

.footer-copy,
.footer-text {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.95rem;
}

.footer-column-contact {
    align-items: flex-start;
}

.footer-cta {
    margin-top: 0.4rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1040;
    padding: 0.95rem 1.2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #1fbf74, #0ea663);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(14, 166, 99, 0.28);
}

.admin-body { background: #eef2f8; }

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #10213f 0%, #0d1b34 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-brand-wrap {
    margin-bottom: 2rem;
}

.admin-brand {
    display: block;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
}

.admin-brand-wrap small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-nav {
    display: grid;
    gap: 0.4rem;
}

.admin-nav a {
    padding: 0.9rem 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.admin-main { padding: 2rem; }

.admin-page-title {
    margin-bottom: 0.2rem;
    font-size: 2rem;
    font-weight: 800;
}

.admin-table th {
    color: var(--ink-500);
    font-weight: 700;
}

.lead-message { max-width: 260px; }

.stat-card span {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--ink-500);
}

.stat-card strong { font-size: 2.2rem; }

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: radial-gradient(circle at top, rgba(125, 92, 255, 0.18), transparent 35%), #09101f;
}

.admin-login-card {
    width: min(100%, 460px);
    padding: 2rem;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.demo-note {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: var(--ink-500);
}

.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.eyebrow-dark {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 45, 0.08);
    color: var(--ink-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.crm-hero,
.crm-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 1.25rem;
    align-items: stretch;
}

.crm-hero {
    padding: 1.75rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 45, 0.96), rgba(38, 57, 97, 0.96));
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.crm-hero h2 {
    margin-bottom: 0.85rem;
    font-size: 2rem;
    font-weight: 800;
}

.crm-hero p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.crm-hero-actions,
.lead-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    justify-content: center;
}

.crm-toolbar-card {
    padding: 1.35rem 1.4rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.crm-toolbar-card span,
.stat-card small {
    display: block;
    color: var(--ink-500);
}

.crm-toolbar-card strong {
    display: block;
    margin: 0.3rem 0 0.45rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink-900);
}

.cms-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

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

.cms-entry-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cms-entry-head {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.cms-entry-thumb {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--surface-50);
}

.cms-entry-copy h3 {
    margin-bottom: 0.45rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.cms-entry-copy p {
    margin-bottom: 0.45rem;
    color: var(--ink-700);
}

.cms-entry-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.settings-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.25rem;
}

.settings-preview-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    font-weight: 800;
}

.settings-preview-card p {
    color: var(--ink-700);
}

.settings-preview-list {
    display: grid;
    gap: 1rem;
}

.settings-preview-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

.settings-preview-list span {
    display: block;
    color: var(--ink-500);
}

.stat-card {
    height: 100%;
    padding: 1.35rem 1.4rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 45, 0.06);
    background: rgba(255, 255, 255, 0.9);
}

.stat-card-highlight {
    background: linear-gradient(135deg, rgba(91, 124, 255, 0.16), rgba(125, 92, 255, 0.12)), #fff;
}

.stat-card-tone strong,
.status-chip {
    font-weight: 800;
}

.stat-card-new { border-color: rgba(91, 124, 255, 0.16); }
.stat-card-contacted { border-color: rgba(255, 166, 0, 0.18); }
.stat-card-converted { border-color: rgba(30, 194, 139, 0.18); }

.lead-status-form {
    min-width: 210px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.status-chip-new {
    background: rgba(91, 124, 255, 0.12);
    color: var(--accent-blue);
}

.status-chip-contacted {
    background: rgba(255, 166, 0, 0.14);
    color: #b97500;
}

.status-chip-converted {
    background: rgba(30, 194, 139, 0.14);
    color: #108864;
}

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

    .hero-metrics,
    .hero-capability-grid,
    .hero-panel-grid,
    .hero-stats-row,
    .service-grid-intro,
    .pricing-grid,
    .delivery-grid,
    .values-grid,
    .overview-grid,
    .inner-page-grid,
    .corporate-list-card,
    .admin-shell,
    .product-showcase,
    .crm-hero,
    .crm-toolbar,
    .settings-shell,
    .company-intro-card,
    .footer-top-panel { grid-template-columns: 1fr; }

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

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

@media (max-width: 767.98px) {
    .container {
        width: min(100% - 24px, 100%);
    }

    .hero-section,
    .inner-hero,
    .section-block { padding: 4rem 0; }

    .hero-title,
    .inner-hero h1 { font-size: 2.4rem; }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        background: #ffffff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
    }

    .hero-dashboard-top,
    .card-badge-row,
    .map-card-head,
    .product-footer,
    .top-contact-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-contact-list {
        gap: 0.45rem 1rem;
    }

    .nav-actions {
        margin-top: 1rem;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .admin-main {
        padding: 1.25rem;
    }

    .lead-status-form {
        min-width: 100%;
    }

    .cms-grid,
    .cms-entry-head {
        grid-template-columns: 1fr;
    }

    .hero-company-strip {
        gap: 0.55rem;
    }

    .cms-entry-thumb {
        height: 220px;
    }

    .tech-card {
        width: 330px;
        min-height: 210px;
    }

    .delivery-model-section .delivery-grid::before,
    .delivery-model-section .process-card::after {
        display: none;
    }
}
