:root {
    --site-bg: #09141d;
    --site-bg-soft: #0f1f2b;
    --site-surface: #122636;
    --site-surface-alt: #f4f8fb;
    --site-border: rgba(255, 255, 255, 0.08);
    --site-primary: #00c2a8;
    --site-primary-dark: #009f8b;
    --site-secondary: #8fb6d9;
    --site-heading: #f5fbff;
    --site-body: #d5e3ef;
    --site-muted: #8ba5ba;
    --site-dark-text: #152535;
    --shadow-soft: 0 20px 50px rgba(7, 18, 26, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #eef4f8;
    color: var(--site-dark-text);
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    overflow: hidden;
}

.site-topbar,
.site-header,
.site-footer,
.section-dark,
.hero-section,
.cta-panel,
.contact-panel,
.stats-band {
    background: var(--site-bg);
}

.site-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-link,
.site-footer a {
    color: inherit;
}

.site-header .navbar {
    background: rgba(9, 20, 29, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled .navbar {
    box-shadow: 0 12px 32px rgba(5, 13, 19, 0.24);
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--site-primary), #36e4cb);
    color: #041117;
    font-size: 1.2rem;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.brand-tag {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.btn-pill {
    border-radius: 999px;
}

.btn-primary {
    background: var(--site-primary);
    border-color: var(--site-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--site-primary-dark);
    border-color: var(--site-primary-dark);
}

.btn-outline-light:hover {
    color: var(--site-bg);
}

.social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: ;
    color: #fff;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--site-primary);
    color: #051219;
}

.section-space {
    padding: 2rem 0;
}

.section-space-sm {
    padding: 4rem 0;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.section-title,
.hero-title,
.display-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.hero-section {
    position: relative;
    color: var(--site-heading);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 194, 168, 0.18), transparent 32%), linear-gradient(135deg, rgba(5, 16, 24, 0.88), rgba(5, 16, 24, 0.66));
}

.hero-media,
.hero-grid,
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-media {
    border-radius: 32px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow-soft);
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-copy {
    color: var(--site-body);
    font-size: 1.05rem;
    max-width: 52rem;
}

.hero-checks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem 1.25rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.mini-list {
    display: grid;
    gap: 0.85rem;
}

.mini-list span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    color: #294153;
}

.mini-list span::before {
    content: '';
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: var(--site-primary);
    box-shadow: 0 0 0 5px rgba(0, 194, 168, 0.14);
}

.mini-list.two-col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mini-list.one-col {
    grid-template-columns: 1fr;
}

.hero-metrics,
.logo-strip,
.info-list,
.inline-feature-list {
    display: grid;
    gap: 1rem;
}

.hero-metrics {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-top: 2rem;
}

.metric-card,
.info-card,
.feature-card,
.product-card,
.project-card,
.resource-card,
.process-card,
.value-card,
.contact-card,
.client-card,
.cert-card,
.dark-panel,
.team-card {
    border: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    background: #fff;
    overflow: hidden;
}

.metric-card,
.dark-panel,
.contact-panel,
.floating-card {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.metric-label {
    color: rgba(255, 255, 255, 0.72);
}

.section-lead {
    color: #5e7688;
    max-width: 46rem;
}

.surface-section {
    background: linear-gradient(180deg, #eef4f8 0%, #f8fbfd 100%);
}

.surface-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.icon-box {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(0, 194, 168, 0.12);
    color: var(--site-primary-dark);
    font-size: 1.2rem;
}

.feature-card,
.product-card,
.project-card,
.resource-card,
.process-card,
.value-card,
.contact-card,
.client-card,
.cert-card,
.team-card {
    height: 100%;
}

.feature-card img,
.product-card img,
.project-card img,
.resource-card img,
.team-card img,
.split-media img,
.industry-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.feature-card .card-body,
.product-card .card-body,
.project-card .card-body,
.resource-card .card-body,
.process-card .card-body,
.value-card .card-body,
.contact-card .card-body,
.client-card .card-body,
.cert-card .card-body,
.team-card .card-body {
    padding: 1.75rem;
}

.badge-soft {
    background: rgba(0, 194, 168, 0.12);
    color: #037361;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
}

.split-media {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.check-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.check-list i {
    color: var(--site-primary-dark);
    margin-top: 0.25rem;
}

.stats-band {
    color: #fff;
}

.stat-block {
    text-align: center;
    padding: 1.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
}

.stat-value {
    font-size: 2.4rem;
    font-weight: 800;
}

.project-filter .btn {
    border-radius: 999px;
}

.project-card .project-meta,
.resource-meta,
.client-meta {
    color: #688296;
    font-size: 0.95rem;
}

.project-card .project-link,
.resource-link {
    color: var(--site-primary-dark);
    font-weight: 700;
}

.process-step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 194, 168, 0.12);
    color: var(--site-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.testimonial-card {
    border-radius: 28px;
    padding: 2rem;
    height: 100%;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.quote-mark {
    font-size: 2.3rem;
    color: var(--site-primary);
}

.client-logo {
    padding: 1.25rem;
    border-radius: 22px;
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    color: #2a4153;
}

.contact-panel {
    color: #fff;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1620, #102433);
    box-shadow: 0 24px 60px rgba(6, 16, 24, 0.3);
}

.contact-panel .section-title,
.contact-panel .eyebrow,
.contact-panel .form-check-label {
    color: #fff;
}

.contact-panel .contact-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.contact-panel .contact-card .card-body {
    color: #fff;
}

.contact-panel .form-control,
.contact-panel .form-select,
.contact-panel textarea {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0.85rem 1rem;
}

.contact-panel .form-control::placeholder,
.contact-panel textarea::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

.contact-panel .form-control:focus,
.contact-panel .form-select:focus,
.contact-panel textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 194, 168, 0.6);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0, 194, 168, 0.16);
}

.footer-cta {
    background: linear-gradient(135deg, rgba(0, 194, 168, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
}

.page-hero {
    padding: 5.5rem 0 4rem;
    background: linear-gradient(135deg, #0a1620, #102433);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -35% auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 194, 168, 0.28), transparent 65%);
}

.page-hero .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
    --bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.72);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.82);
}

.accordion-item {
    border: 0;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-button {
    font-weight: 700;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    color: var(--site-dark-text);
    background: rgba(0, 194, 168, 0.1);
    box-shadow: none;
}

.table-modern {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.table-modern .table {
    margin-bottom: 0;
}

.table-modern thead th {
    background: #0f2230;
    color: #fff;
    border: 0;
}

.table-modern tbody tr:nth-child(even) {
    background: #f7fbfc;
}

.toast-message {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    min-width: 280px;
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 4rem 0;
    }

    .hero-section,
    .page-hero {
        text-align: left;
    }

    .hero-media {
        min-height: 280px;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 3.5rem 0;
    }

    .display-title {
        font-size: 2.3rem;
    }

    .hero-title,
    .section-title {
        font-size: 2rem;
    }

    .feature-card img,
    .product-card img,
    .project-card img,
    .resource-card img,
    .team-card img,
    .split-media img,
    .industry-image img {
        height: 200px;
    }
}
