:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #eef5f4;
    --surface-dark: #111827;
    --surface-dark-2: #1d2939;
    --text: #0f172a;
    --muted: #516074;
    --line: rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.14);
    --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shell: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(245, 158, 11, 0.08), transparent 20%),
        var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    --hero-tilt-x: 0px;
    --hero-tilt-y: 0px;
}

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

iframe,
video,
canvas,
svg {
    max-width: 100%;
}

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

:where(p, h1, h2, h3, h4, h5, h6, span, a, li) {
    overflow-wrap: anywhere;
}

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

main {
    min-height: 60vh;
}

.shell {
    width: calc(100% - 40px);
    margin: 0 auto;
}

.section {
    padding: 76px 0;
}
.section-inner-page {
    padding: 36px 0;
}

.home-sections {
    display: flex;
    flex-direction: column;
}

.home-section-order {
    width: 100%;
}

.home-sections > * {
    min-width: 0;
}

.surface-strip {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(238, 245, 244, 0.9));
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.22), transparent 24%),
        linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2));
    color: #f8fafc;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.25rem);
}

h3 {
    font-size: 1.3rem;
}

p {
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--theme-primary), #17b3a6);
    color: #fff;
    box-shadow: 0 16px 36px rgba(15, 118, 110, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-primary);
    font-weight: 700;
}

.text-link::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

.text-link.muted {
    color: var(--muted);
}

.topbar {
    background: #0b1320;
    color: rgba(248, 250, 252, 0.82);
    font-size: 0.92rem;
}

.topbar-inner,
.topbar-social,
.header-row,
.footer-bottom-row,
.trust-row,
.cta-panel {
    display: flex;
    align-items: center;
}

.topbar-inner,
.footer-bottom-row {
    justify-content: space-between;
    min-height: 44px;
    gap: 16px;
}

.topbar-inner {
    row-gap: 12px;
}

.topbar-inner.row {
    gap: 0;
    flex-wrap: wrap;
    row-gap: 12px;
    margin-left: 0;
    margin-right: 0;
}

.topbar-inner.row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.topbar-block {
    min-width: 0;
}

.topbar-block-start {
    text-align: left;
}

.topbar-block-center {
    display: flex;
    justify-content: center;
}

.topbar-block-end {
    text-align: right;
}

.topbar-block > * {
    margin-bottom: 0;
}

.topbar-block a,
.topbar-block span,
.topbar-block p,
.topbar-block div,
.topbar-block li {
    color: inherit;
}

.topbar-block a,
.topbar-block span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-block p,
.topbar-block ul {
    margin: 0;
}

.topbar-block ul {
    list-style: none;
    padding: 0;
}

.topbar-social {
    gap: 10px;
    justify-content: center;
}

.topbar-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, transform 0.25s ease;
}

.topbar-social a:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

@supports not ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
    .site-header {
        background: rgba(255, 255, 255, 0.98);
    }
}

.header-row {
    min-height: 86px;
    row-gap: 16px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.site-logo,
.footer-logo {
    max-height: 80px;
    width: auto;
}

.brand-token {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--theme-primary), #0f172a);
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1.06rem;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links,
.submenu,
.footer-list,
.feature-list,
.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.has-dropdown {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.nav-link-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease;
}

.nav-link-item:hover,
.nav-item:hover > .nav-link-item {
    background: rgba(15, 118, 110, 0.08);
    color: var(--text);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 50;
}

.submenu .nav-link-item {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 12px 14px;
}

.submenu-mega {
    min-width: min(720px, calc(100vw - 48px));
    padding: 18px;
    display: grid;
    gap: 10px 14px;
    align-content: start;
}

.submenu-mega-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submenu-mega-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.submenu-mega > .nav-item {
    min-width: 0;
}

.submenu-mega > .nav-item > .nav-link-item {
    min-height: 48px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(244, 247, 251, 0.7);
}

.submenu-mega > .nav-item > .nav-link-item:hover,
.submenu-mega > .nav-item:hover > .nav-link-item {
    background: rgba(15, 118, 110, 0.08);
}

.has-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.submenu .has-dropdown > .submenu {
    top: 0;
    left: calc(100% - 2px);
}

.header-cta {
    display: flex;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: rgba(15, 118, 110, 0.08);
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 999px;
}

.hero-band {
    /* padding: 24px 0 90px; */
}

.hero-shell {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 24px;
    align-items: stretch;
}

.hero-copy,
.hero-stage,
.hero-card,
.hero-placeholder,
.prose-card,
.context-card,
.service-tile,
.solution-card,
.project-card,
.team-card,
.testimonial-card,
.insight-card,
.faq-item,
.page-hero-card,
.value-stack article,
.partner-logo,
.placeholder-panel {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-lg);
    min-width: 0;
}

.hero-copy,
.hero-stage,
.hero-placeholder,
.prose-card,
.context-card,
.service-tile,
.solution-card,
.project-card,
.team-card,
.testimonial-card,
.insight-card,
.faq-item,
.page-hero-card,
.value-stack article,
.placeholder-panel {
    border-radius: var(--radius-sm);
}

.hero-copy {
    padding: 40px;
    display: grid;
    gap: 22px;
    align-content: center;
    transform: translate3d(calc(var(--hero-tilt-x) * -0.35), calc(var(--hero-tilt-y) * -0.35), 0);
    transition: transform 0.3s ease;
}

.hero-summary {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 60ch;
}

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

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 8px;
}

.hero-metrics div {
    padding: 18px 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(245, 158, 11, 0.08));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.hero-metrics strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-stage {
    overflow: hidden;
    padding: 0;
    min-height: 100%;
    display: flex;
    align-items: stretch;
    transform: translate3d(calc(var(--hero-tilt-x) * 0.45), calc(var(--hero-tilt-y) * 0.45), 0);
    transition: transform 0.3s ease;
}

.hero-slider {
    position: relative;
    min-height: 100%;
    width: 100%;
    flex: 1 1 auto;
}

.hero-card {
    display: none;
    overflow: hidden;
    height: 100%;
    border-radius: inherit;
}

.hero-card.is-active {
    display: block;
    height: 100%;
}

.hero-card-link {
    display: block;
    min-height: 100%;
    height: 100%;
}

.hero-card-media {
    position: relative;
    min-height: 100%;
    height: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: inherit;
}

.hero-card-media img,
.project-media,
.solution-media,
.insight-media,
.team-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback {
    min-height: 100%;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.9), rgba(17, 24, 39, 0.9)),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.22), transparent 30%);
}

.hero-chip,
.project-tag,
.insight-date {
    display: inline-flex;
    align-items: center;
    align-self: start;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--theme-primary);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-card-body,
.service-copy,
.solution-copy,
.intro-copy,
.faq-panel,
.prose-card,
.context-card {
    color: var(--muted);
}

.hero-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-dots {
    position: absolute;
    right: 28px;
    bottom: 22px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(15, 23, 42, 0.18);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
}

.hero-placeholder {
    padding: 32px;
    min-height: 100%;
    display: flex;
    align-items: center;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.placeholder-panel {
    padding: 24px;
}

.placeholder-panel span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
}

.placeholder-panel strong {
    display: block;
    margin-top: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.card-grid {
    display: grid;
    gap: 24px;
}

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

.service-tile,
.solution-card,
.insight-card,
.team-card {
    padding: 28px;
}

.service-tile {
    display: grid;
    gap: 18px;
}

.service-tile-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.14));
    color: var(--theme-primary);
    font-size: 1.35rem;
}

.tile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--text);
    font-weight: 700;
}

.tile-link::after,
.back-to-top::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.78rem;
}

.card-link-wrap {
    display: grid;
    width: 100%;
    height: 100%;
    color: inherit;
}

.service-tile-link {
    gap: 18px;
    min-height: 100%;
}

.home-portfolio-link,
.project-card-link,
.blog-feature-link,
.portfolio-showcase-link {
    color: inherit;
}

.split-panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.split-copy {
    display: grid;
    gap: 18px;
}

.split-copy p {
    color: rgba(248, 250, 252, 0.78);
}

.feature-list {
    display: grid;
    gap: 10px;
    color: rgba(248, 250, 252, 0.88);
}

.feature-list li {
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--theme-secondary);
}

.value-stack,
.trust-grid,
.testimonial-grid,
.project-grid,
.team-grid,
.faq-layout {
    display: grid;
    gap: 24px;
}

.value-stack article {
    padding: 24px;
}

.value-stack span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--theme-secondary);
    margin-bottom: 14px;
    font-weight: 800;
}

.value-stack p {
    color: rgba(248, 250, 252, 0.75);
}

.value-stack-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.counter-section {
    overflow: hidden;
}

.counter-strip {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    gap: 30px;
    align-items: center;
}

.counter-strip-copy {
    display: grid;
    gap: 14px;
}

.counter-strip-copy h2 {
    max-width: 12ch;
}

.counter-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.counter-strip-card {
    min-width: 0;
    padding: 26px 22px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    display: grid;
    gap: 10px;
}

.counter-strip-value {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: clamp(2rem, 2vw + 1.25rem, 3.4rem);
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.counter-strip-card h3 {
    font-size: 1rem;
    line-height: 1.35;
    color: rgba(248, 250, 252, 0.95);
}

.counter-strip-card p {
    margin: 0;
    color: rgba(248, 250, 252, 0.72);
    font-size: 0.94rem;
    line-height: 1.6;
}

.trust-row {
    justify-content: space-between;
    gap: 32px;
    align-items: start;
}

.trust-copy {
    flex: 0 0 32%;
    display: grid;
    gap: 14px;
}

.trust-grid {
    flex: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid article {
    padding: 24px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.marketing-card {
    padding: 24px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 14px;
}

.marketing-card-media {
    margin-bottom: 4px;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: rgba(15, 23, 42, 0.04);
}

.marketing-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-grid i {
    color: var(--theme-primary);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.marketing-card i {
    color: var(--theme-primary);
    font-size: 1.3rem;
}

.solution-card,
.insight-card {
    overflow: hidden;
    padding: 0;
}

.solution-media,
.insight-media,
.project-media {
    aspect-ratio: 4 / 3;
}

.solution-body,
.insight-body,
.project-body {
    padding: 24px;
    display: grid;
    gap: 12px;
    min-width: 0;
}

.price-line {
    display: flex;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
}

.base-price.is-strikethrough {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    color: var(--muted);
}

.price-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.price-emphasis {
    color: var(--theme-primary);
    font-weight: 800;
}

.blog-home-section {
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.05), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.96));
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-home-card {
    height: 100%;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-home-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-home-link {
    display: grid;
    height: 100%;
    color: inherit;
}

.blog-home-media-wrap {
    position: relative;
    padding: 16px 16px 0;
}

.blog-home-media,
.blog-home-fallback {
    width: 100%;
    aspect-ratio: 16 / 9.2;
    border-radius: 18px;
}

.blog-home-media {
    display: block;
    object-fit: cover;
}

.blog-home-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(15, 118, 110, 0.16));
    color: var(--theme-primary);
    font-size: 2rem;
}

.blog-home-date-badge {
    position: absolute;
    right: 24px;
    bottom: -12px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.98);
    color: #1f2937;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.blog-home-body {
    display: grid;
    gap: 14px;
    padding: 30px 24px 22px;
}

.blog-home-kicker {
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-home-body h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.3;
}

.blog-home-copy {
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.7rem;
}

.blog-home-copy p:last-child {
    margin-bottom: 0;
}

.blog-home-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: auto;
    flex-wrap: wrap;
}

.blog-home-author,
.blog-home-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #334155;
    font-weight: 700;
}

.blog-home-author-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    flex: 0 0 auto;
}

.blog-home-stats span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--theme-primary);
}

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

.project-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-body p,
.project-tag,
.testimonial-meta span,
.page-hero-copy p,
.faq-intro p,
.partner-label,
.footer-panel p {
    color: var(--muted);
}

.section-dark .project-body p,
.section-dark .project-tag,
.section-dark .section-head .eyebrow,
.section-dark h2,
.section-dark h3,
.section-dark p {
    color: #f8fafc;
}

.section-dark .project-tag {
    background: rgba(255, 255, 255, 0.1);
}

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

.team-card {
    text-align: center;
}

.team-media-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    margin-bottom: 18px;
    aspect-ratio: 4 / 4.4;
}

.team-social {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 8px;
}

.team-social a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-card {
    padding: 26px;
}

.quote-mark {
    color: var(--theme-secondary);
    margin-bottom: 16px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial-meta img {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
}

.testimonial-meta strong,
.partner-logo span {
    display: block;
}

.faq-layout {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: start;
}

.faq-intro {
    display: grid;
    gap: 14px;
}

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

.faq-item {
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    text-align: left;
    font: inherit;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
}

.faq-trigger i {
    transition: transform 0.25s ease;
}

.faq-panel {
    display: none;
    padding: 0 24px 22px;
}

.faq-item.is-open .faq-panel {
    display: block;
}

.faq-item.is-open .faq-trigger i {
    transform: rotate(45deg);
}

.partner-strip {
    padding: 44px 0 84px;
}

.partner-label {
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
}

.partner-marquee {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.partner-logo {
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.partner-logo img {
    max-height: 44px;
    width: auto;
    filter: none;
    opacity: 0.8;
}

.cta-band {
    padding-top: 0;
}

.cta-panel {
    justify-content: space-between;
    gap: 30px;
    padding: 34px 38px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.12)),
        #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
}

.cta-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-hero {
    padding: 28px 0 36px;
    position: relative;
}

.page-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 24px;
    align-items: stretch;
}

.page-hero-copy {
    display: grid;
    gap: 18px;
    padding: 42px;
    border-radius: var(--radius-sm);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.08)),
        rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.78);
}

.page-hero-copy p,
.page-hero-card strong {
    color: var(--muted);
}

.page-hero-meta,
.page-chip-list,
.context-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-hero-meta span,
.page-chip-list span,
.context-chip-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}

.page-hero-aside,
.page-hero-stack {
    display: grid;
}

.page-hero-stack {
    gap: 18px;
    height: 100%;
}

.page-hero-card {
    padding: 28px;
    display: grid;
    align-content: center;
    gap: 14px;
    min-height: 100%;
}

.page-hero-card-feature {
    min-height: 180px;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 36%),
        rgba(255, 255, 255, 0.9);
}

.page-hero-card > span,
.context-card > span {
    color: var(--theme-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.prose-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.prose-card,
.context-card {
    padding: 36px;
}

.prose-card {
    font-size: 1.02rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.94));
}

.prose-card h2,
.prose-card h3,
.prose-card h4 {
    margin-top: 0;
    margin-bottom: 16px;
}

.prose-card p + p,
.prose-card ul + p,
.prose-card p + ul {
    margin-top: 14px;
}

.context-card {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 110px;
}

.context-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.intro-panel {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 28px;
    align-items: start;
    padding: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
}

.listing-hero,
.detail-hero {
    padding: 17px 0 0px;
}

.listing-hero-shell,
.detail-hero-shell {
    gap: 28px;
    align-items: center;
}

.detail-hero-shell.row {
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 1.75rem;
}

.listing-hero-shell {
    max-width: 860px;
}

.listing-hero-shell-wide {
    max-width: none;
    row-gap: 16px;
}

.listing-hero-copy {
    display: grid;
    gap: 14px;
    max-width: 100%;
}

.listing-hero-copy h1 {
    font-size: clamp(2rem, 1.4rem + 1.7vw, 3.1rem);
    line-height: 1.08;
}

.listing-hero-note {
    display: flex;
    justify-content: flex-end;
}

.listing-hero-note-card {
    min-width: 220px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 8px;
}

.listing-hero-note-card strong {
    font-family: "Manrope", sans-serif;
    font-size: 2.1rem;
    line-height: 1;
}

.listing-hero-note-card span {
    color: var(--muted);
    font-weight: 600;
}

.listing-hero p,
.detail-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
}

.detail-hero-shell {
    grid-template-columns: 1.02fr 0.98fr;
}

.masonry-grid {
    columns: 3 280px;
    column-gap: 22px;
}

.masonry-card {
    break-inside: avoid;
    overflow: hidden;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.gallery-lightbox-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.masonry-card img {
    width: 100%;
    height: auto;
}

.masonry-card-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.gallery-filter-tab {
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    border-radius: 999px;
    min-height: 42px;
    padding: 0 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gallery-filter-tab:hover,
.gallery-filter-tab.is-active {
    background: var(--theme-primary);
    color: #fff;
    border-color: var(--theme-primary);
    transform: translateY(-1px);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 28px;
    background: rgba(9, 17, 29, 0.9);
    backdrop-filter: blur(10px);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: calc(100vh - 56px);
    display: grid;
    gap: 14px;
}

.gallery-lightbox-image {
    width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.gallery-lightbox-caption {
    display: grid;
    gap: 8px;
    color: #fff;
}

.gallery-lightbox-category {
    color: rgba(248, 250, 252, 0.72);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.detail-hero-copy,
.detail-hero-media,
.detail-hero-media-img,
.content-card,
.news-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
}

.detail-hero-copy,
.content-card {
    padding: 32px;
}

.detail-hero-col {
    min-width: 0;
}

.detail-hero-col-copy {
    display: flex;
    align-items: center;
}

.detail-hero-col-media {
    display: flex;
    align-items: stretch;
    padding: 24px;
}

.detail-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    width: 100%;
    min-height: 380px;
}

.detail-hero-copy > * {
    margin-top: 0;
    margin-bottom: 0;
}

.detail-hero-media,
.detail-hero-media-img {
    padding: 0;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.detail-hero-media img,
.detail-hero-media-img img,
.gallery-card img,
.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-meta,
.insight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-meta {
    margin-top: 22px;
}

.detail-meta span,
.insight-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--theme-primary);
    font-size: 0.92rem;
    font-weight: 700;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.assigned-conversion-block {
    padding: 0 0 48px;
}

.prose-card img,
.intro-copy img,
.article-prose-card img,
.conversion-plan-copy img,
.pricing-catalog-copy img,
.detail-copy img,
.blog-home-copy img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.prose-card table,
.intro-copy table,
.article-prose-card table,
.conversion-plan-copy table,
.pricing-catalog-copy table,
.detail-copy table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.prose-card iframe,
.intro-copy iframe,
.article-prose-card iframe,
.conversion-plan-copy iframe,
.pricing-catalog-copy iframe,
.detail-copy iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
}

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

.pricing-catalog-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-catalog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.pricing-catalog-head h3 {
    margin: 0;
}

.pricing-catalog-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    white-space: nowrap;
}

.pricing-catalog-price strong {
    font-size: 1.4rem;
    color: var(--heading);
}

.pricing-catalog-copy p:last-child {
    margin-bottom: 0;
}

.pricing-catalog-validity {
    color: var(--muted);
    font-weight: 600;
}

.assigned-conversion-grid {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.assigned-conversion-block .container-fluid {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.assigned-conversion-grid.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 28px;
    margin-left: 0;
    margin-right: 0;
}

.assigned-conversion-grid.has-plan-only,
.assigned-conversion-grid.has-form-only {
    grid-template-columns: minmax(0, 1fr);
    max-width: 980px;
}

.conversion-plan-card,
.conversion-form-card {
    display: grid;
    gap: 18px;
}

.assigned-conversion-grid.has-plan-only .conversion-plan-card,
.assigned-conversion-grid.has-form-only .conversion-form-card {
    min-height: 100%;
}

.assigned-conversion-grid.has-instructions .conversion-form-card,
.assigned-conversion-grid.has-instructions .conversion-instruction-card,
.assigned-conversion-grid.has-both .conversion-form-card,
.assigned-conversion-grid.has-both .conversion-plan-card {
    min-height: 100%;
}

.assigned-conversion-grid > [class*="col-"] {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    flex: none;
}

.assigned-conversion-grid > [class*="col-"] > .content-card {
    width: 100%;
    min-width: 0;
}

.conversion-plan-copy {
    color: var(--muted);
}

.conversion-plan-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.conversion-plan-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--theme-primary);
    font-size: 0.92rem;
    font-weight: 700;
}

.conversion-form-grid {
    display: grid;
    gap: 16px;
}

.conversion-field {
    display: grid;
    gap: 8px;
}

.conversion-field-full {
    width: 100%;
}

.conversion-field label {
    font-weight: 700;
    color: var(--text);
}

.conversion-field .form-control {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 14px;
    color: var(--text);
}

.conversion-field textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.conversion-choice-list {
    display: grid;
    gap: 10px;
}

.conversion-choice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    font-weight: 500;
}

.conversion-choice-item input {
    margin: 0;
    flex-shrink: 0;
}

.conversion-field .g-recaptcha {
    max-width: 100%;
}

.conversion-alert {
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.conversion-alert-success {
    background: rgba(15, 118, 110, 0.1);
    color: #0f766e;
    border: 1px solid rgba(15, 118, 110, 0.18);
}

.conversion-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 6px;
}

.detail-content,
.detail-sidebar,
.news-stack,
.mini-list,
.notification-stack {
    display: grid;
    gap: 24px;
}

.detail-layout-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
}

.detail-content-single {
    max-width: 100%;
}

.notification-card {
    display: grid;
    gap: 14px;
}

.notification-card-head {
    display: grid;
    gap: 10px;
}

.detail-content .content-card,
.detail-sidebar .content-card {
    display: grid;
    gap: 18px;
}

.section-head.compact h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.service-tile-rich,
.mini-list-item {
    display: grid;
    gap: 12px;
}

.service-subtitle {
    color: var(--muted);
    font-weight: 600;
}

.project-card-link {
    display: grid;
    height: 100%;
    color: inherit;
}

.service-showcase-card {
    overflow: hidden;
    display: grid;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
}

.service-showcase-media-wrap {
    position: relative;
    padding: 18px 18px 0;
}

.service-showcase-media {
    display: block;
    width: 100%;
    height: 260px;
    min-height: 260px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 20px;
}

.service-showcase-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.14)),
        rgba(244, 247, 251, 0.92);
}

.service-showcase-body,
.service-showcase-top {
    display: grid;
    gap: 12px;
}

.service-showcase-body {
    padding: 26px;
}

.service-listing-grid .service-showcase-card {
    height: 100%;
}

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.product-listing-card {
    padding: 0;
    height: 100%;
    display: grid;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
}

.product-listing-media-wrap {
    position: relative;
    padding: 18px 18px 0;
}

.product-listing-media {
    border-radius: 20px;
}

.product-listing-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.14));
}

.product-listing-badge {
    position: absolute;
    left: 32px;
    bottom: -12px;
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    color: var(--theme-primary);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-listing-card .solution-media {
    display: block;
    width: 100%;
    height: 260px;
    min-height: 260px;
    aspect-ratio: auto;
    object-fit: cover;
}

.product-listing-card .solution-body {
    display: grid;
    gap: 14px;
    padding: 34px 24px 24px;
    align-content: start;
    height: 100%;
}

.product-listing-card h3 {
    min-height: 3.1rem;
}

.product-listing-head {
    display: grid;
    gap: 10px;
}

.product-listing-card .solution-copy {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* min-height: 6.4rem; */
    color: var(--muted);
}

.product-listing-price {
    margin-top: 2px;
    padding: 14px 16px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(245, 158, 11, 0.08)),
        rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-listing-price .price-line {
    gap: 10px;
}

.product-listing-price strong,
.product-listing-price .price-emphasis {
    font-size: 1.2rem;
}

.product-listing-meta {
    min-height: 34px;
}

.product-listing-footer {
    margin-top: auto;
    padding-top: 4px;
}

.portfolio-listing-section {
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.96));
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.portfolio-showcase-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    background: #0f172a;
}

.portfolio-showcase-link {
    display: block;
    min-height: 260px;
    color: inherit;
}

.portfolio-showcase-media-wrap,
.portfolio-showcase-overlay {
    position: absolute;
    inset: 0;
}

.portfolio-showcase-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-showcase-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.88), rgba(17, 24, 39, 0.96));
}

.portfolio-showcase-overlay {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.2) 42%, rgba(15, 23, 42, 0.92));
}

.portfolio-showcase-body {
    position: relative;
    z-index: 1;
    min-height: 260px;
    display: grid;
    align-content: end;
    gap: 14px;
    padding: 28px;
    color: #fff;
}

.portfolio-showcase-body h3 {
    font-size: 1.45rem;
}

.portfolio-showcase-body .project-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.portfolio-showcase-body .tile-link {
    color: #fff;
}

.portfolio-showcase-body p {
    color: rgba(248, 250, 252, 0.8);
    margin: 0;
}

.blog-listing-section {
    /* background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.96)); */
}

.blog-feature-card {
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-lg);
    margin-bottom: 28px;
}

.blog-feature-link {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    color: inherit;
}

.blog-feature-media-wrap {
    min-height: 100%;
}

.blog-feature-media {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.blog-feature-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 26%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.88), rgba(17, 24, 39, 0.96));
}

.blog-feature-body {
    display: grid;
    gap: 16px;
    align-content: center;
    padding: 36px;
}

.blog-feature-body h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.blog-feature-copy {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--muted);
    font-size: 1.02rem;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-archive-card {
    display: grid;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
}

.blog-archive-media {
    width: 100%;
    min-height: 230px;
    aspect-ratio: 4 / 2.55;
    object-fit: cover;
}

.blog-archive-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.14));
}

.blog-archive-body {
    height: 100%;
    align-content: start;
}

.blog-archive-body h3 {
    min-height: 3.4rem;
}

.blog-archive-body .insight-copy {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6.4rem;
    color: var(--muted);
}

.detail-hero-article {
    padding: 36px 0 24px;
}

.article-hero-stack {
    display: grid;
    gap: 24px;
}

.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.article-breadcrumbs a {
    color: var(--muted);
}

.article-breadcrumbs a:hover {
    color: var(--text);
}

.article-hero-copy {
    display: grid;
    gap: 18px;
    max-width: 880px;
}

.article-hero-media {
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.92);
}

.article-hero-media img {
    width: 100%;
    min-height: 460px;
    max-height: 620px;
    object-fit: cover;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 30px;
    align-items: start;
}

.article-main,
.article-sidebar {
    display: grid;
    gap: 24px;
}

.article-prose-card {
    padding: 40px;
}

.article-prose-card :is(p, ul, ol, blockquote) {
    color: var(--muted);
}

.article-prose-card h2,
.article-prose-card h3,
.article-prose-card h4 {
    margin-top: 0;
    color: var(--text);
}

.article-sidebar .content-card {
    position: sticky;
    top: 110px;
}

.home-catalog-card {
    height: 100%;
}

.home-catalog-media {
    display: block;
    aspect-ratio: auto;
    width: 100%;
    height: 240px;
    min-height: 240px;
}

.home-catalog-body {
    height: 100%;
    align-content: start;
}

.home-catalog-body h3 {
    min-height: 1.5rem;
}

.home-catalog-copy {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6.6rem;
}

.catalog-kicker {
    display: inline-flex;
    align-items: center;
    align-self: start;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.06);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.section-solutions {
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.07), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 247, 251, 0.92));
}

.home-solution-grid,
.home-project-grid,
.home-product-grid,
.home-portfolio-grid {
    display: grid;
    gap: 24px;
}

.home-solution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-solution-card {
    height: 100%;
    overflow: hidden;
    display: grid;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
}

.home-solution-media {
    display: block;
    width: 100%;
    height: 240px;
    min-height: 240px;
    aspect-ratio: auto;
    object-fit: cover;
}

.home-solution-body {
    display: grid;
    gap: 14px;
    padding: 26px;
    align-content: start;
}

.home-solution-body h3 {
    min-height: 3.1rem;
}

.home-solution-copy {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6.4rem;
}

.home-solution-footer,
.home-project-card-footer,
.home-solution-footer {
    margin-top: auto;
}

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

.home-portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-product-card {
    position: relative;
    display: grid;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    box-shadow: var(--shadow-md);
}

.home-product-media-wrap {
    position: relative;
    padding: 18px 18px 0;
}

.home-product-media {
    width: 100%;
    height: 240px;
    min-height: 240px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 20px;
}

.home-product-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.14));
}

.home-product-badge {
    position: absolute;
    left: 32px;
    bottom: -12px;
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    color: var(--theme-primary);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-product-body {
    display: grid;
    gap: 14px;
    padding: 34px 26px 26px;
}

.home-product-body h3 {
    min-height: 3.1rem;
}

.home-product-copy {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* min-height: 6.4rem; */
    color: var(--muted);
}

.home-product-footer {
    margin-top: auto;
}

.section-projects-home {
    background:
        linear-gradient(180deg, rgba(244, 247, 251, 0.9), rgba(255, 255, 255, 0.96));
}

.home-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-project-card-creative {
    display: grid;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    position: relative;
}

.home-project-card-creative::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--theme-primary), var(--theme-secondary));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.home-project-card-creative:hover::before {
    opacity: 1;
}

.home-project-card-media {
    min-height: 0;
}

.home-project-media {
    width: 100%;
    height: 240px;
    min-height: 240px;
    aspect-ratio: auto;
    object-fit: cover;
}

.home-project-card-body {
    display: grid;
    gap: 14px;
    padding: 28px;
    align-content: start;
}

.home-project-card-creative .project-tag {
    background: rgba(15, 118, 110, 0.08);
    color: var(--theme-primary);
}

.home-project-card-creative h3 {
    min-height: 3.1rem;
    font-size: 1.3rem;
}

.home-project-copy {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6.2rem;
    color: var(--muted);
}

.home-portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    min-height: 420px;
    background: #0f172a;
    box-shadow: var(--shadow-lg);
}

.home-portfolio-media-wrap,
.home-portfolio-overlay {
    position: absolute;
    inset: 0;
}

.home-portfolio-media {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.home-portfolio-fallback {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 26%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.88), rgba(17, 24, 39, 0.96));
}

.home-portfolio-overlay {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.28) 45%, rgba(15, 23, 42, 0.92));
}

.home-portfolio-body {
    position: relative;
    z-index: 1;
    min-height: 420px;
    display: grid;
    align-content: end;
    gap: 14px;
    padding: 28px;
    color: #fff;
}

.home-portfolio-head {
    display: grid;
    gap: 12px;
}

.home-portfolio-body .project-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.home-portfolio-body h3 {
    min-height: 3.1rem;
    font-size: 1.4rem;
}

.home-portfolio-copy {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6.4rem;
    color: rgba(248, 250, 252, 0.8);
}

.home-portfolio-footer {
    margin-top: auto;
}

.home-portfolio-card .tile-link {
    color: #fff;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-tile,
.project-card,
.team-card,
.testimonial-card,
.insight-card,
.partner-logo,
.faq-item,
.page-hero-card,
.prose-card,
.context-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-tile:hover,
.project-card:hover,
.team-card:hover,
.testimonial-card:hover,
.insight-card:hover,
.faq-item:hover,
.page-hero-card:hover,
.prose-card:hover,
.context-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
}

.service-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-meta-line span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--theme-primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.solution-card-detailed .solution-body {
    gap: 14px;
}

.content-card-highlight {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(245, 158, 11, 0.08)),
        rgba(255, 255, 255, 0.92);
}

.content-card-header {
    display: grid;
    gap: 8px;
}

.content-card-header h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.faq-section-head {
    margin-bottom: 10px;
}

.faq-list-detail {
    gap: 16px;
}

.faq-list-detail .faq-item {
    border-radius: var(--radius-md);
    background: rgba(244, 247, 251, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
}

.faq-list-detail .faq-trigger,
.faq-list-detail .faq-panel,
.faq-list-detail .faq-panel p,
.faq-list-detail .faq-panel li,
.faq-list-detail .faq-panel span,
.faq-list-detail .faq-panel div {
    color: var(--text);
}

.price-line-large {
    padding-top: 6px;
}

.price-line-large strong,
.price-line-large .price-emphasis {
    font-size: 1.35rem;
}

.mini-list-item {
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.mini-list-item span {
    color: var(--muted);
    font-size: 0.95rem;
}

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

.detail-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.detail-feature-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.detail-feature-card:nth-child(even) .detail-feature-media {
    order: 2;
}

.detail-feature-card:nth-child(even) .detail-feature-body {
    order: 1;
}

.detail-feature-media {
    min-height: 100%;
    background: #f8fafc;
}

.detail-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-feature-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.6rem 1.6rem 1.7rem;
}

.detail-feature-body h3 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.detail-feature-body p:last-child {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    overflow: hidden;
    min-height: 220px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.gallery-card .gallery-lightbox-trigger {
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-card:hover img {
    transform: scale(1.03);
}

.gallery-section-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.gallery-section-body {
    gap: 10px;
}

.news-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    overflow: hidden;
}

.news-card-media {
    min-height: 100%;
}

.news-card-body {
    display: grid;
    gap: 18px;
    padding: 32px;
}

.careers-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
}

.careers-intro,
.contact-panel,
.contact-form-placeholder,
.job-card,
.detail-hero-panel {
    display: grid;
    gap: 18px;
}

.jobs-stack,
.contact-points {
    display: grid;
    gap: 20px;
}

.jobs-stack-clean {
    max-width: 100%;
    margin: 0 auto;
}

.career-detail-hero-card {
    max-width: 100%;
    margin: 0 auto;
    align-items: start;
}

.career-detail-company {
    margin: -2px 0 4px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--muted);
}

.career-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
}

.job-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.job-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.job-card-head-copy {
    display: grid;
    gap: 10px;
}

.job-card .btn {
    flex: 0 0 auto;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.conversion-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(9, 17, 29, 0.72);
    backdrop-filter: blur(10px);
}

.conversion-modal.is-open {
    display: flex;
}

.conversion-modal-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.conversion-modal .assigned-conversion-grid {
    width: 100%;
    margin: 0;
}

.conversion-modal-close {
    position: sticky;
    top: 14px;
    margin-left: auto;
    margin-bottom: 10px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.job-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--theme-primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.job-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.job-meta-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.06);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.job-summary,
.contact-panel p,
.contact-form-placeholder p {
    color: var(--muted);
}

.contact-point {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.contact-point span {
    color: var(--muted);
}

.contact-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-placeholder-grid div {
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border-radius: var(--radius-md);
    background: rgba(244, 247, 251, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--muted);
    font-weight: 600;
}

.contact-placeholder-grid .is-wide {
    min-height: 140px;
    grid-column: 1 / -1;
    align-items: start;
    padding-top: 18px;
}

.content-card :is(p, ul, ol) + :is(p, ul, ol, h2, h3, h4) {
    margin-top: 14px;
}

.site-footer {
    background: #09111d;
    color: rgba(248, 250, 252, 0.88);
    margin-top: 64px;
}

.footer-grid {
    padding: 74px 0 48px;
    row-gap: 34px;
}

.footer-column {
    display: flex;
}

.footer-panel {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 0;
    border-radius: 0;
    min-width: 0;
    width: 100%;
}

.footer-column:nth-child(4) .footer-panel,
.footer-column:nth-child(4) .footer-richtext,
.footer-column:nth-child(4) .footer-richtext :is(div, p, span, a, strong, em, small, h1, h2, h3, h4, h5, h6, ul, ol, li) {
    background: transparent !important;
}

.footer-panel h4 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand .footer-logo {
    max-height: 74px;
}

.footer-brand .footer-richtext {
    max-width: 28ch;
}

.footer-richtext {
    color: rgba(248, 250, 252, 0.84);
}

.footer-richtext :is(p, ul, ol) {
    margin: 0;
}

.footer-richtext :is(p, ul, ol) + :is(p, ul, ol, h2, h3, h4) {
    margin-top: 10px;
}

.footer-richtext :is(p, li, a, span, strong, em, h1, h2, h3, h4, h5, h6) {
    color: inherit;
}

.footer-list {
    display: grid;
    gap: 14px;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.7;
}

.footer-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    flex-shrink: 0;
}

.footer-menu-list {
    display: grid;
    gap: 0;
}

.footer-menu-item {
    display: block;
}

.footer-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
    color: rgba(248, 250, 252, 0.84);
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-menu-link:hover {
    color: #fff;
    transform: translateX(2px);
    border-color: rgba(255, 255, 255, 0.28);
}

.footer-menu-link i {
    font-size: 0.85rem;
    opacity: 0.82;
}

.footer-menu-item > .footer-menu-list {
    padding-left: 18px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    color: rgba(248, 250, 252, 0.82);
}

.footer-bottom-content :is(p, a, span, strong, em, small) {
    color: inherit;
}

.footer-bottom-content p {
    margin: 0;
}

.footer-bottom-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-bottom-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .hero-shell,
    .split-panel:not(.row),
    .faq-layout,
    .page-hero-shell:not(.row),
    .detail-hero-shell:not(.row),
    .detail-layout:not(.row),
    .careers-layout,
    .contact-layout,
    .prose-layout,
    .intro-panel:not(.row),
    .trust-row {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-card-media {
        min-height: 320px;
    }

    .context-card {
        position: static;
        top: auto;
    }

    .listing-hero-shell-wide {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .listing-hero-note {
        justify-content: flex-start;
    }

    .blog-feature-link:not(.row) {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .card-grid-3,
    .blog-home-grid,
    .testimonial-grid,
    .value-stack-wide,
    .gallery-grid,
    .product-listing-grid:not(.row),
    .portfolio-showcase-grid:not(.row),
    .blog-archive-grid:not(.row),
    .assigned-conversion-grid,
    .pricing-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-solution-grid,
    .home-project-grid,
    .home-product-grid,
    .home-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar .content-card {
        position: static;
        top: auto;
    }

    .team-grid,
    .partner-marquee {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .detail-feature-card,
    .detail-feature-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .detail-feature-card:nth-child(even) .detail-feature-media,
    .detail-feature-card:nth-child(even) .detail-feature-body {
        order: initial;
    }

    .detail-feature-media {
        min-height: 220px;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: inline-block;
    }

    .header-actions {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 12px);
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 24px;
        box-shadow: var(--shadow-md);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        display: none;
    }

    .header-actions.is-open {
        display: flex;
    }

    .main-nav,
    .nav-links,
    .header-cta {
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link-item {
        justify-content: space-between;
        width: 100%;
        border-radius: 14px;
    }

    .submenu,
    .submenu .has-dropdown > .submenu {
        position: static;
        display: block;
        box-shadow: none;
        border: 0;
        background: rgba(244, 247, 251, 0.92);
        margin-top: 10px;
        padding: 10px;
    }

    .submenu-mega,
    .submenu-mega-2,
    .submenu-mega-3 {
        min-width: 100%;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .submenu {
        min-width: 100%;
    }

    .hero-metrics,
    .trust-grid,
    .card-grid-3,
    .blog-home-grid,
    .project-grid,
    .team-grid,
    .testimonial-grid,
    .partner-marquee,
    .value-stack-wide,
    .gallery-grid,
    .news-card {
        grid-template-columns: 1fr;
    }

    .home-solution-grid,
    .home-project-grid,
    .home-product-grid,
    .home-portfolio-grid,
    .product-listing-grid,
    .portfolio-showcase-grid,
    .blog-archive-grid,
    .assigned-conversion-grid,
    .pricing-catalog-grid {
        grid-template-columns: 1fr;
    }

    .assigned-conversion-block .container-fluid {
        width: 100%;
    }
    
    .section {
        padding: 34px 0;
    }
    .section-inner-page {
        padding: 24px 0;
    }

    .hero-copy,
    .prose-card,
    .context-card,
    .page-hero-copy,
    .page-hero-card,
    .cta-panel,
    .detail-hero-copy,
    .detail-hero-media,
    .content-card,
    .news-card-body,
    .pricing-catalog-card {
        padding: 26px;
    }

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

    .counter-strip {
        grid-template-columns: 1fr;
    }

    .counter-strip-copy h2 {
        max-width: none;
    }

    .counter-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topbar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar-block,
    .topbar-block-start,
    .topbar-block-end {
        text-align: left;
    }

    .topbar-block-center,
    .topbar-social {
        justify-content: flex-start;
    }

    .intro-panel {
        padding: 26px;
    }

    .article-prose-card {
        padding: 26px;
    }

    .job-card-head {
        flex-direction: column;
    }

    .pricing-catalog-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-catalog-price {
        align-items: flex-start;
    }

    .home-project-media,
    .home-solution-media,
    .home-product-media,
    .home-portfolio-media,
    .home-portfolio-fallback,
    .blog-home-media,
    .blog-home-fallback {
        min-height: 240px;
    }

    .blog-home-body {
        padding: 24px 20px 20px;
    }

    .blog-home-date-badge {
        right: 20px;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(var(--shell), calc(100% - 24px));
    }

    .assigned-conversion-grid {
        width: 100%;
        gap: 20px;
    }

    .hero-band {
        /* padding-top: 12px; */
    }

    .page-hero {
        padding-top: 14px;
    }

    .gallery-lightbox {
        padding: 16px;
        gap: 10px;
    }

    .gallery-lightbox-dialog {
        max-height: calc(100vh - 32px);
    }

    .gallery-lightbox-image {
        max-height: calc(100vh - 180px);
    }

    .gallery-lightbox-close,
    .gallery-lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .hero-copy,
    .hero-stage,
    .service-tile,
    .service-showcase-card,
    .solution-card,
    .insight-card,
    .team-card,
    .testimonial-card {
        border-radius: 22px;
    }

    .counter-strip-grid {
        grid-template-columns: 1fr;
    }

    .counter-strip-card {
        padding: 22px 18px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero-meta,
    .detail-meta-list,
    .conversion-plan-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-home-meta {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
    }

    .blog-home-author,
    .blog-home-stats {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .blog-home-copy {
        -webkit-line-clamp: 2;
        min-height: auto;
    }

    .hero-actions,
    .cta-panel-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .cta-panel-actions .btn {
        width: 100%;
    }

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


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

    .contact-placeholder-grid {
        grid-template-columns: 1fr;
    }

    .conversion-modal {
        padding: 12px;
    }

    .conversion-modal-dialog {
        border-radius: 20px;
    }
}
.marketing-card, .marketing-card h3, .marketing-card p, .testimonial-card, .testimonial-card p {
    color: #000000;
}
.service-listing-grid img {
    height: auto;
    height: 280px;
}

.detail-hero h1 {
    font-size: clamp(2.1rem, 1.4rem + 2vw, 3rem);
    letter-spacing: 0;
    line-height: 1.12;
}

.detail-hero p {
    margin-top: 16px;
}

.detail-hero-media-img {
    width: 100%;
    min-height: 320px;
}

.detail-hero-media-img img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

/* Bootstrap-first layout compatibility */
.page-hero-shell.row,
.detail-hero-shell.row,
.detail-layout.row,
.intro-panel.row,
.split-panel.row,
.service-listing-grid.row,
.product-listing-grid.row,
.portfolio-showcase-grid.row,
.blog-archive-grid.row,
.blog-feature-link.row,
.value-stack.row {
    display: flex;
    flex-wrap: wrap;
}

.page-hero-shell.row,
.detail-hero-shell.row,
.detail-layout.row,
.intro-panel.row,
.split-panel.row {
    gap: 0;
    row-gap: 24px;
    column-gap: 0;
}

.detail-hero-shell.row {
    align-items: stretch;
}

.service-listing-grid.row,
.product-listing-grid.row,
.portfolio-showcase-grid.row,
.blog-archive-grid.row,
.value-stack.row,
.blog-feature-link.row {
    gap: 0;
}

.page-hero-shell.row > *,
.detail-hero-shell.row > *,
.detail-layout.row > *,
.intro-panel.row > *,
.split-panel.row > *,
.blog-feature-link.row > * {
    min-width: 0;
}

.page-hero-shell.row,
.detail-hero-shell.row,
.detail-layout.row,
.intro-panel.row,
.split-panel.row,
.blog-feature-link.row,
.product-listing-grid.row,
.portfolio-showcase-grid.row,
.blog-archive-grid.row {
    grid-template-columns: none;
}

.service-listing-grid .service-showcase-card,
.product-listing-grid .product-listing-card,
.portfolio-showcase-grid .portfolio-showcase-card,
.blog-archive-grid .blog-archive-card {
    height: 100%;
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
    .counter-strip-card,
    .gallery-lightbox,
    .conversion-modal {
        backdrop-filter: none;
    }
}

@media (max-width: 1200px) {
    .page-hero-shell.row,
    .detail-hero-shell.row,
    .detail-layout.row,
    .intro-panel.row,
    .split-panel.row {
        display: flex;
    }

    .blog-feature-link.row {
        display: flex;
    }
}

@media (max-width: 992px) {
    .service-showcase-media,
    .product-listing-card .solution-media,
    .portfolio-showcase-card,
    .portfolio-showcase-link,
    .portfolio-showcase-body {
        height: 220px;
        min-height: 220px;
    }

    .detail-hero-media,
    .detail-hero-media-img,
    .blog-feature-media,
    .article-hero-media img,
    .portfolio-showcase-card,
    .portfolio-showcase-link,
    .portfolio-showcase-body,
    .home-portfolio-card,
    .home-portfolio-media,
    .home-portfolio-fallback,
    .home-portfolio-body {
        min-height: 320px;
    }

    .page-hero-copy,
    .detail-hero-copy,
    .content-card,
    .prose-card,
    .context-card,
    .intro-panel,
    .cta-panel,
    .blog-feature-body,
    .article-prose-card,
    .news-card-body {
        padding: 24px;
    }

    .footer-grid {
        padding: 48px 0 32px;
    }
}

@media (max-width: 767.98px) {
    .listing-hero,
    .detail-hero,
    .page-hero {
        padding-top: 20px;
    }

    .detail-hero-media,
    .detail-hero-media-img,
    .detail-hero-media-img img,
    .blog-feature-media,
    .article-hero-media img,
    .portfolio-showcase-card,
    .portfolio-showcase-link,
    .portfolio-showcase-body,
    .home-portfolio-card,
    .home-portfolio-media,
    .home-portfolio-fallback,
    .home-portfolio-body {
        min-height: 260px;
    }

    .gallery-card,
    .service-showcase-media,
    .blog-archive-media,
    .product-listing-card .solution-media,
    .portfolio-showcase-card,
    .portfolio-showcase-link,
    .portfolio-showcase-body,
    .blog-home-media,
    .blog-home-fallback {
        height: 200px;
        min-height: 200px;
    }

    .detail-hero-copy,
    .page-hero-copy,
    .content-card,
    .prose-card,
    .context-card,
    .blog-feature-body,
    .article-prose-card,
    .news-card-body,
    .job-card,
    .contact-panel {
        padding: 20px;
    }

    .detail-meta,
    .insight-meta,
    .page-hero-meta,
    .job-meta-grid,
    .service-meta-line,
    .footer-bottom-social,
    .footer-social {
        gap: 10px;
    }
}

@media (max-width: 575.98px) {
    .topbar {
        font-size: 0.88rem;
    }

    .site-logo,
    .footer-logo {
        max-height: 60px;
    }

    .hero-copy,
    .page-hero-copy,
    .detail-hero-copy {
        padding: 18px;
    }

    .hero-metrics div,
    .counter-strip-card,
    .mini-list-item {
        padding: 16px;
    }

    .pricing-catalog-head,
    .job-card-head,
    .footer-bottom-row {
        gap: 12px;
    }
}
.portfolio-showcase-body {
    height: 400px;
}

.thankyou-page {
    padding-top: 24px;
}

.thankyou-card {
    width: min(100%, 760px);
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: clamp(30px, 5vw, 54px);
    text-align: center;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-lg);
}

.thankyou-icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.12);
    color: var(--theme-primary);
    font-size: 2rem;
}

.thankyou-card h1 {
    margin: 0;
}

.thankyou-card p {
    max-width: 42ch;
    color: var(--muted);
    font-size: 1.04rem;
}

.thankyou-context {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--theme-primary);
    font-weight: 700;
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.home-intro-section {
    display: grid;
    gap: 28px;
}

.home-intro-head {
    text-align: center;
}

.home-intro-layout {
    --bs-gutter-x: 2.2rem;
}

.home-intro-copy {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.home-intro-copy p + p {
    margin-top: 18px;
}

.home-intro-visual {
    display: flex;
    justify-content: center;
}

.home-intro-visual img {
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.home-intro-benefits {
    display: grid;
    gap: 18px;
    width: 100%;
}

.home-intro-benefits article {
    padding: 24px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
}

.home-intro-benefits article i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--theme-primary);
    font-size: 1.25rem;
}

@media (max-width: 991.98px) {
    .home-intro-head {
        text-align: left;
    }
}


/* Professional pricing cards */
.professional-pricing-card {
    overflow: hidden;
    height: 100%;
    padding: 0;
    border: 1px solid var(--line, rgba(15, 23, 42, 0.08));
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.professional-pricing-card .pricing-card-top {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, var(--theme-primary, var(--consumer-primary, #0f766e)), var(--theme-secondary, var(--consumer-accent, #0f172a)));
}

.professional-pricing-card .pricing-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
}

.professional-pricing-card .pricing-catalog-head {
    display: block;
}

.professional-pricing-card .pricing-catalog-head h3 {
    margin: 0;
    color: var(--heading, var(--text, #0f172a));
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.18;
}

.professional-pricing-card .pricing-catalog-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    white-space: normal;
    color: var(--muted, #64748b);
}

.professional-pricing-card .pricing-catalog-price .base-price {
    color: var(--muted, #64748b);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.professional-pricing-card .pricing-catalog-price strong {
    color: var(--heading, var(--text, #0f172a));
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 0.95;
}

.professional-pricing-card .pricing-duration {
    color: var(--muted, #64748b);
    font-size: 1rem;
    font-weight: 700;
}

.professional-pricing-card .pricing-catalog-copy {
    color: var(--muted, #64748b);
}

.professional-pricing-card .pricing-catalog-copy p:last-child {
    margin-bottom: 0;
}

.professional-pricing-card .pricing-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: auto;
    padding: 0 22px;
    border-radius: 10px;
    background: var(--theme-primary, var(--consumer-primary, #0f766e));
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.professional-pricing-card .pricing-contact-btn:hover {
    color: #fff;
    filter: brightness(0.95);
}

.professional-pricing-card {
    display: flex;
    flex-direction: column;
}

.service-tile-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

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

.project-media {
    aspect-ratio: 16 / 10;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1080px) {
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.partner-marquee,
.testimonial-grid {
    display: block;
    overflow: hidden;
    padding: 6px 0 18px;
}

.auto-slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.auto-slider.is-animated .auto-slider-track {
    animation: laysanx-auto-slider 32s linear infinite;
}

.testimonial-grid.is-animated .auto-slider-track {
    animation-duration: 42s;
}

.auto-slider:hover .auto-slider-track {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 190px;
}

.partner-strip .partner-logo img,
.partner-logo img {
    filter: none !important;
    opacity: 1 !important;
}

.testimonial-card {
    flex: 0 0 min(390px, 86vw);
}

@keyframes laysanx-auto-slider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }
}
