:root {
    --bg: #efe7d7;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #fffdf8;
    --text: #182026;
    --muted: #5f686f;
    --line: rgba(24, 32, 38, 0.1);
    --brand: #0f766e;
    --brand-dark: #0a4f4a;
    --brand-deep: #083633;
    --accent: #f08a24;
    --accent-soft: #f8d7b6;
    --shadow: 0 24px 60px rgba(22, 33, 41, 0.14);
    --body-bg:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 34%),
        radial-gradient(circle at 85% 20%, rgba(240, 138, 36, 0.18), transparent 22%),
        linear-gradient(180deg, #f7f1e5 0%, #efe7d7 100%);
    --header-bg: rgba(247, 241, 229, 0.82);
    --header-border: rgba(27, 29, 31, 0.06);
    --submenu-bg: rgba(255, 253, 248, 0.96);
    --input-bg: rgba(255, 255, 255, 0.94);
    --input-border: rgba(27, 29, 31, 0.1);
    --soft-panel: rgba(255, 255, 255, 0.78);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1140px;
    color-scheme: light;
}

:root[data-theme="dark"] {
    --bg: #081715;
    --surface: rgba(15, 29, 27, 0.82);
    --surface-strong: #10231f;
    --text: #eff8f4;
    --muted: #a9bbb5;
    --line: rgba(236, 248, 242, 0.14);
    --brand: #28c7b7;
    --brand-dark: #8fe7dc;
    --brand-deep: #d7fff7;
    --accent: #ffad55;
    --accent-soft: #5d391e;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    --body-bg:
        radial-gradient(circle at top left, rgba(40, 199, 183, 0.16), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(255, 173, 85, 0.13), transparent 26%),
        linear-gradient(180deg, #0b1917 0%, #071210 100%);
    --header-bg: rgba(8, 18, 16, 0.84);
    --header-border: rgba(236, 248, 242, 0.1);
    --submenu-bg: rgba(14, 28, 25, 0.98);
    --input-bg: rgba(9, 21, 19, 0.94);
    --input-border: rgba(236, 248, 242, 0.16);
    --soft-panel: rgba(15, 29, 27, 0.72);
    color-scheme: dark;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--body-bg);
    line-height: 1.6;
    font-synthesis-weight: none;
}

main#top,
section[id] {
    scroll-margin-top: 7rem;
}

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

img {
    max-width: 100%;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
}

.nav-shell,
.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    flex: 0 0 auto;
}

.brand-logo {
    display: block;
    width: clamp(10.5rem, 15vw, 13.5rem);
    height: auto;
    max-height: 3.4rem;
    object-fit: contain;
}

.brand-block {
    display: grid;
    gap: 0.1rem;
}

.brand-block small {
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--muted);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: var(--shadow);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--muted);
}

.mobile-nav-drawer,
.mobile-search-strip {
    display: none;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    min-width: 7.4rem;
    min-height: 2.75rem;
    padding: 0.38rem 0.48rem 0.38rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: var(--soft-panel);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(22, 33, 41, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(15, 118, 110, 0.32);
}

.theme-toggle-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.theme-toggle-icon::before,
.theme-toggle-icon::after {
    content: "";
    position: absolute;
    display: block;
}

.theme-toggle-icon::before {
    width: 0.82rem;
    height: 0.82rem;
    border-radius: 50%;
}

.theme-toggle-icon[data-theme-icon-mode="dark"]::before {
    background: transparent;
    border: 0.13rem solid currentColor;
    box-shadow: inset -0.28rem 0 0 currentColor;
}

.theme-toggle-icon[data-theme-icon-mode="dark"]::after {
    display: none;
}

.theme-toggle-icon[data-theme-icon-mode="light"]::before {
    background: currentColor;
    box-shadow: 0 0 0 0.14rem rgba(255, 255, 255, 0.22);
}

.theme-toggle-icon[data-theme-icon-mode="light"]::after {
    width: 1.12rem;
    height: 1.12rem;
    border-radius: 50%;
    border: 0.11rem solid currentColor;
    opacity: 0.72;
}

.mobile-menu-toggle {
    list-style: none;
    cursor: pointer;
}

.mobile-menu-toggle::-webkit-details-marker {
    display: none;
}

.mobile-menu-toggle::marker,
.mobile-submenu summary::marker {
    content: "";
}

.site-nav-item {
    position: relative;
}

.site-nav-item > a {
    display: inline-flex;
    align-items: center;
}

.site-nav-item-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.site-nav-item-submenu > a::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.site-submenu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    min-width: 13rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--submenu-bg);
    box-shadow: 0 22px 44px rgba(30, 40, 52, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
}

.site-submenu a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 0.8rem;
    white-space: nowrap;
}

.site-nav-item-submenu:hover .site-submenu,
.site-nav-item-submenu:focus-within .site-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.site-nav-item-submenu:hover > a::after,
.site-nav-item-submenu:focus-within > a::after {
    transform: rotate(225deg) translateY(-1px);
}

.site-nav a:hover,
.site-nav a.is-current,
.site-nav a[aria-current="page"],
.site-submenu a:hover,
.site-submenu a.is-current,
.site-submenu a[aria-current="page"],
.site-nav a:focus-visible,
.site-submenu a:focus-visible,
.footer-shell a:hover,
.footer-shell a:focus-visible {
    color: var(--brand-dark);
}

.site-submenu a:hover,
.site-submenu a.is-current,
.site-submenu a[aria-current="page"],
.site-submenu a:focus-visible {
    background: rgba(15, 118, 110, 0.08);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.95rem 1.4rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 18px 40px rgba(15, 118, 110, 0.22);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.65);
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.page-home .site-header {
    background: #f4f1e8;
    position: sticky;
    top: 0;
    z-index: 20;
}

.page-home .home-nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.page-home .home-nav-links {
    display: flex;
    gap: 32px;
    color: #6b747c;
    font-weight: 600;
}

.page-home .home-support-btn {
    background: #087466;
    color: white;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 800;
}

.page-home .hero {
    min-height: auto;
    padding: clamp(3.25rem, 6vw, 5rem) 0 clamp(3.5rem, 6vw, 5.25rem);
    background:
        linear-gradient(110deg, rgba(8, 26, 36, 0.72), rgba(15, 118, 110, 0.08) 52%, rgba(8, 26, 36, 0.5)),
        radial-gradient(circle at 82% 22%, rgba(143, 231, 220, 0.2), transparent 26%),
        radial-gradient(circle at 16% 22%, rgba(255, 173, 85, 0.16), transparent 24%),
        linear-gradient(135deg, #0c344f 0%, #0f766e 58%, #072b3f 100%);
    color: white;
    overflow: hidden;
}

.page-home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 80%);
    pointer-events: none;
}

.page-home .home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
    gap: clamp(2rem, 4vw, 3.75rem);
    align-items: center;
}

.page-home .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    font-weight: 900;
    color: #c9e9ef;
    margin-bottom: 18px;
}

.page-home .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(3rem, 5.4vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: 0;
    margin-bottom: 1.2rem;
}

.page-home .hero-text {
    max-width: 560px;
    color: #d9edf4;
    font-size: 1rem;
    line-height: 1.65;
}

.page-home .hero-actions {
    margin-top: 1.2rem;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.page-home .home-btn {
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 900;
}

.page-home .home-btn-primary {
    background: linear-gradient(135deg, #ffad55, #f08a24);
    color: #10232f;
    box-shadow: 0 18px 42px rgba(240, 138, 36, 0.28);
}

.page-home .home-btn-outline {
    border: 1px solid rgba(255,255,255,.55);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.page-home .home-trust-row {
    margin-top: 1.2rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.page-home .home-trust-row span {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.2);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #f4fffc;
    font-weight: 800;
}

.page-home .home-search-box {
    background: rgba(255,255,255,.82);
    color: #58646c;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.page-home .hero-panel {
    display: grid;
    align-content: start;
    gap: 1.1rem;
}

.page-home .home-dashboard-card {
    background: rgba(255,255,255,.93);
    color: #10232f;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

.page-home .home-card-top {
    height: 3rem;
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 0 22px;
    border-bottom: 1px solid #e5eaee;
}

.page-home .home-card-top span {
    width: 13px;
    height: 13px;
    background: #d8dde1;
    border-radius: 50%;
}

.page-home .home-card-body {
    padding: 1.45rem;
}

.page-home .home-label {
    color: #087466;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-home .home-focus-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.15rem;
}

.page-home .home-focus-item.active {
    background: #f4f8f8;
}

.page-home .home-focus-item strong {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ff8a00;
    color: white;
}

.page-home .home-focus-item h3 {
    margin-bottom: 6px;
    color: #10232f;
}

.page-home .home-focus-item p {
    color: #65737c;
    line-height: 1.5;
}

.page-home .home-snapshot-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: space-between;
    background: #f4f1e8;
    color: #10232f;
    padding: 0.85rem;
    border-radius: 1.1rem;
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.page-home .home-snapshot-card h3 {
    flex: 1 1 9rem;
    color: #087466;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.15;
}

.page-home .home-snapshot-card div {
    flex: 1 1 5.4rem;
    min-width: 5.4rem;
    background: white;
    border-radius: 0.85rem;
    padding: 0.65rem 0.7rem;
    margin-top: 0;
}

.page-home .home-snapshot-card strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    color: #064d45;
}

.page-home .home-snapshot-card span {
    color: #65737c;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.25;
}

.page-home .home-services {
    padding: 90px 0;
    background: #f6f8fb;
}

.page-home .home-section-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.page-home .home-section-heading .eyebrow {
    color: #087466;
}

.page-home .home-section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #10232f;
}

.page-home .home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.page-home .home-services-grid article {
    background: white;
    padding: 28px;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(16,35,47,.07);
}

.page-home .home-services-grid .home-service-icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    color: #0f766e;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(240, 138, 36, 0.16));
}

.page-home .home-services-grid .home-service-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.page-home .home-services-grid h3 {
    margin: 18px 0 10px;
}

.page-home .home-services-grid p {
    color: #65737c;
    line-height: 1.6;
}

.hero {
    position: relative;
    padding: 4.75rem 0 4rem;
    overflow: hidden;
    background:
        linear-gradient(135deg, #174d73 0%, #1a5c88 32%, #123e60 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.1), transparent 20%),
        radial-gradient(circle at 82% 18%, rgba(248, 215, 182, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.06));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 5rem 5rem;
    opacity: 0.2;
    pointer-events: none;
}

.hero-grid,
.split-layout,
.contact-shell {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
}

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

.hero-inner {
    padding-bottom: 2.5rem;
}

.hero-copy,
.hero-panel {
    position: relative;
    z-index: 1;
}

.page-home .hero-copy {
    color: #fff;
}

.hero-copy h1 {
    max-width: 12.5ch;
    margin-bottom: 1.2rem;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.65rem, 4.2vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-copy .hero-text {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.65;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--brand-dark);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.page-home .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
}

h1,
h2 {
    font-family: "Space Grotesk", sans-serif;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    max-width: 11ch;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.hero-text,
.section-heading p,
.split-copy p,
.contact-copy p,
.service-card p,
.timeline p,
.signal-grid p {
    color: var(--muted);
}

.page-home .hero-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.page-graphic-design .hero-copy {
    color: #fff;
}

.page-graphic-design .hero-inner,
.page-graphic-design.hero-inner {
    padding-top: 1.25rem;
}

.page-graphic-design .hero-grid {
    align-items: center;
    gap: 2.5rem;
}

.page-graphic-design .hero-copy h1 {
    font-size: clamp(2.65rem, 4.2vw, 4.2rem);
    line-height: 0.96;
    max-width: 12.5ch;
    margin-bottom: 1rem;
}

.page-graphic-design .hero-copy .hero-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    max-width: 560px;
}

.page-graphic-design .eyebrow {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.page-graphic-design .hero-points li {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.page-graphic-design .hero-actions {
    margin: 1.7rem 0 1.3rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

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

.hero-points li {
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.hero-proof span {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: 0.94rem;
}

.panel-card,
.service-card,
.package-card,
.contact-card,
.capability-list article {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-panel {
    display: flex;
}

.hero-visual-shell {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.hero-visual-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mini-search,
.visual-badge {
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 36px rgba(22, 33, 41, 0.1);
}

.mini-search {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    min-width: min(100%, 24rem);
    color: var(--muted);
    font-weight: 600;
}

.mini-search-icon {
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-radius: 999px;
    position: relative;
    flex: 0 0 auto;
}

.mini-search-icon::after {
    content: "";
    position: absolute;
    right: -0.32rem;
    bottom: -0.28rem;
    width: 0.45rem;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: center;
}

.visual-badge {
    padding: 0.8rem 1rem;
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    min-height: 42rem;
}

.visual-card,
.floating-insight {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 70px rgba(18, 32, 44, 0.18);
}

.visual-card {
    overflow: hidden;
}

.visual-card-back {
    right: 0;
    bottom: 1.8rem;
    width: 58%;
    min-height: 18rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 250, 0.9)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 138, 36, 0.08));
}

.visual-card-front {
    left: 0;
    top: 2rem;
    width: 78%;
    min-height: 31rem;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 249, 0.92)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(240, 138, 36, 0.08));
}

.visual-window-bar {
    display: flex;
    gap: 0.35rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(24, 32, 38, 0.08);
    background: rgba(255, 255, 255, 0.78);
}

.visual-window-bar span {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: rgba(24, 32, 38, 0.14);
}

.visual-screen {
    position: relative;
    min-height: 29rem;
    padding: 1.2rem;
    display: grid;
    align-items: end;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #f8fbfb 0%, #e7f1ef 100%);
}

.visual-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 54, 51, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 54, 51, 0.04) 1px, transparent 1px);
    background-size: 1rem 1rem;
    opacity: 0.45;
}

.radial-graphic {
    position: absolute;
    left: -6%;
    top: 10%;
    width: 74%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 20%, transparent 20% 27%, rgba(15, 118, 110, 0.16) 27% 33%, transparent 33% 40%, rgba(24, 118, 194, 0.26) 40% 48%, transparent 48% 55%, rgba(10, 79, 74, 0.82) 55% 61%, transparent 61% 69%, rgba(36, 138, 208, 0.28) 69% 76%, transparent 76%);
    filter: drop-shadow(0 18px 35px rgba(12, 61, 57, 0.18));
}

.radial-graphic::before,
.radial-graphic::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.86);
}

.radial-graphic::before {
    width: 17%;
    height: 7%;
    right: 12%;
    top: 26%;
    transform: rotate(18deg);
}

.radial-graphic::after {
    width: 10%;
    height: 10%;
    right: 18%;
    bottom: 16%;
}

.screen-content {
    position: relative;
    z-index: 1;
    width: min(100%, 24rem);
    margin-left: auto;
    padding: 1.1rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(18, 32, 44, 0.12);
}

.chart-card {
    position: relative;
    min-height: 15rem;
    margin: 1rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 249, 0.96));
}

.chart-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 32, 38, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 32, 38, 0.06) 1px, transparent 1px);
    background-size: 2rem 2rem;
}

.chart-line {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 2px;
    transform-origin: left center;
    border-radius: 999px;
}

.chart-line-one {
    bottom: 28%;
    background: #d23d4c;
    transform: rotate(-18deg);
}

.chart-line-two {
    bottom: 34%;
    background: #ef8f23;
    transform: rotate(-9deg);
}

.chart-line-three {
    bottom: 30%;
    background: #2aa9e0;
    transform: rotate(8deg);
}

.floating-insight {
    right: 4%;
    top: 0;
    z-index: 3;
    width: min(18rem, 44%);
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 250, 0.92)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(240, 138, 36, 0.08));
}

.panel-card {
    width: 100%;
    padding: 1rem;
}

.panel-card {
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.15), rgba(240, 138, 36, 0.08));
}

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

.panel-label {
    margin: 0;
    font-weight: 700;
    color: var(--brand-dark);
}

.panel-chip {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.metric-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 118, 110, 0.08);
}

.metric-card strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.65rem;
    line-height: 1;
    color: var(--brand-deep);
}

.metric-card span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.floating-insight .metric-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.floating-insight .metric-card {
    padding: 0.85rem 0.9rem;
}

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

.focus-stack article {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 118, 110, 0.08);
}

.focus-feature h2 {
    font-size: 1.2rem;
}

.focus-feature p {
    margin-bottom: 0;
    color: var(--muted);
}

.focus-stack span {
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #fff;
    background: var(--accent);
}

.section {
    padding: 4.5rem 0;
}

.proof-strip {
    padding-bottom: 1.5rem;
}

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

.proof-grid article {
    padding: 1.2rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 118, 110, 0.1);
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 18px 40px rgba(22, 33, 41, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.proof-grid strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--brand-deep);
    font-size: 1rem;
}

.proof-grid p {
    margin: 0;
    color: var(--muted);
}

.section-muted {
    background: rgba(255, 255, 255, 0.44);
    border-top: 1px solid rgba(27, 29, 31, 0.05);
    border-bottom: 1px solid rgba(27, 29, 31, 0.05);
}

.section-accent {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 138, 36, 0.06)),
        rgba(255, 255, 255, 0.25);
}

.section-reference {
    background: #d4d6d9;
}

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

.services-grid,
.package-grid,
.capability-list,
.story-grid,
.testimonial-grid,
.service-detail-grid {
    display: grid;
    gap: 1.35rem;
}

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

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

.service-card,
.package-card,
.contact-card,
.capability-list article {
    padding: 1.6rem;
}

.service-card,
.package-card {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 138, 36, 0.08));
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.package-card:hover,
.capability-list article:hover,
.proof-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(22, 33, 41, 0.16);
}

.card-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 4.6rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--brand-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.card-link {
    color: var(--brand-dark);
    font-weight: 800;
}

.card-link::after {
    content: " ->";
}

.split-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.split-copy {
    display: grid;
    gap: 1rem;
}

.feature-list,
.mini-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.feature-list li + li,
.mini-list li + li {
    margin-top: 0.55rem;
}

.about-copy p,
.leader-card p,
.story-card p,
.quote,
.testimonial-role,
.trust-list {
    color: var(--muted);
}

.vision-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: 2rem;
    align-items: start;
}

.vision-icons {
    display: grid;
    gap: 1.5rem;
    padding-top: 2rem;
}

.vision-icon-card {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    color: #24364b;
    text-align: center;
}

.vision-icon-card strong {
    font-weight: 500;
    font-size: 1.15rem;
}

.vision-icon {
    position: relative;
    display: block;
    opacity: 0.36;
}

.vision-icon-mobile {
    width: 2.8rem;
    height: 4.8rem;
    border: 6px solid #7d8490;
    border-radius: 0.9rem;
}

.vision-icon-mobile::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.35rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #7d8490;
    transform: translateX(-50%);
}

.vision-icon-cloud {
    width: 8rem;
    height: 4.6rem;
}

.vision-icon-cloud::before,
.vision-icon-cloud::after {
    content: "";
    position: absolute;
    border: 6px solid #7d8490;
}

.vision-icon-cloud::before {
    inset: 1.6rem 0 0;
    border-radius: 2.4rem;
}

.vision-icon-cloud::after {
    width: 2.5rem;
    height: 2.5rem;
    left: 1rem;
    top: 0.7rem;
    border-radius: 50%;
    box-shadow: 2.2rem 0.25rem 0 -2px #d4d6d9, 4.3rem 1rem 0 -2px #d4d6d9;
}

.vision-icon-desktop {
    width: 10rem;
    height: 6.5rem;
}

.vision-icon-desktop::before,
.vision-icon-desktop::after {
    content: "";
    position: absolute;
    border: 6px solid #7d8490;
}

.vision-icon-desktop::before {
    left: 2.9rem;
    top: 0.2rem;
    width: 5.6rem;
    height: 4rem;
}

.vision-icon-desktop::after {
    left: 0.2rem;
    bottom: 0.1rem;
    width: 2.6rem;
    height: 4rem;
    box-shadow: 3.3rem -0.1rem 0 -2px #d4d6d9;
}

.vision-copy {
    position: relative;
    padding-left: 1.2rem;
}

.vision-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    bottom: 0.65rem;
    width: 1px;
    background: rgba(36, 54, 75, 0.34);
}

.vision-copy h2 {
    margin-bottom: 1.5rem;
}

.vision-copy-grid {
    display: grid;
    gap: 1.65rem;
}

.vision-copy-grid article h3 {
    margin-bottom: 0.55rem;
    color: #24364b;
}

.vision-copy-grid article p {
    margin: 0;
    color: #24364b;
}

.capability-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
}

.capability-copy p,
.capability-list p,
.package-card p {
    color: var(--muted);
}

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

.capability-list article {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(27, 29, 31, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
    align-items: start;
}

.section-contact {
    position: relative;
}

.section-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 79, 74, 0.04), transparent 52%),
        radial-gradient(circle at 14% 35%, rgba(248, 215, 182, 0.28), transparent 20%);
    pointer-events: none;
}

.contact-copy,
.contact-card {
    position: relative;
    z-index: 1;
}

.contact-copy h2 {
    max-width: 10ch;
    margin-bottom: 1rem;
}

.contact-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-highlights article {
    padding: 1.2rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 118, 110, 0.1);
    background: rgba(255, 255, 255, 0.58);
}

.contact-highlights strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--brand-deep);
}

.contact-highlights p,
.form-intro {
    margin: 0;
    color: var(--muted);
}

.contact-card {
    padding: 1.9rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(240, 138, 36, 0.08));
}

.form-intro {
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
}

.form-status {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1.2rem;
    padding: 0.95rem 1rem;
    border: 1px solid;
    border-radius: 0.8rem;
    font-size: 0.94rem;
}

.form-status strong {
    color: inherit;
}

.form-status span,
.form-status ul {
    margin: 0;
}

.form-status ul {
    padding-left: 1.15rem;
}

.form-status-success {
    border-color: rgba(15, 118, 110, 0.26);
    background: rgba(15, 118, 110, 0.1);
    color: #0a4f4a;
}

.form-status-error {
    border-color: rgba(185, 28, 28, 0.26);
    background: rgba(254, 226, 226, 0.72);
    color: #8b1a1a;
}

.form-field-hidden {
    position: absolute;
    inset: auto;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}

.contact-card label {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
    width: 100%;
    border: 1px solid rgba(27, 29, 31, 0.1);
    border-radius: 1rem;
    padding: 1rem 1rem;
    font: inherit;
    color: var(--text);
    background: rgba(255, 255, 255, 0.94);
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
    outline: 2px solid rgba(15, 118, 110, 0.18);
    border-color: rgba(15, 118, 110, 0.4);
}

.solution-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 2rem;
    padding: 2.3rem;
    border-radius: 0;
    background: linear-gradient(180deg, #205f8d, #1e567c);
    box-shadow: 0 26px 55px rgba(25, 41, 56, 0.18);
}

.solution-art {
    position: relative;
    overflow: hidden;
    min-height: 28rem;
}

.solution-ribbons {
    position: absolute;
    left: -1rem;
    bottom: 5rem;
    display: grid;
    gap: 1rem;
    z-index: 2;
}

.solution-ribbon {
    position: relative;
    min-width: 25rem;
    padding: 0.9rem 1.25rem;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.solution-ribbon::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.9rem;
    width: 0;
    height: 0;
    border-top: 0.9rem solid rgba(0, 0, 0, 0.45);
    border-left: 0.9rem solid transparent;
}

.solution-ribbon-gold {
    background: linear-gradient(90deg, #f28a1d, #f3be2d);
}

.solution-ribbon-pink {
    background: linear-gradient(90deg, #f62149, #cc1773);
}

.solution-ribbon-green {
    background: linear-gradient(90deg, #9dd53c, #63b640);
}

.solution-orbit {
    position: absolute;
    inset: 1rem 0 0 2rem;
}

.solution-globe {
    position: absolute;
    left: 9rem;
    top: 6rem;
    width: 11rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 65% 28%, rgba(255, 255, 255, 0.9), transparent 20%),
        radial-gradient(circle at 50% 45%, rgba(93, 231, 255, 0.95), rgba(12, 95, 135, 0.96) 58%, #07283f 100%);
    box-shadow: 0 18px 40px rgba(7, 28, 43, 0.32);
}

.solution-globe::before,
.solution-globe::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(10, 50, 67, 0.78);
}

.solution-globe::before {
    width: 43%;
    height: 24%;
    left: 17%;
    top: 27%;
    transform: rotate(-12deg);
}

.solution-globe::after {
    width: 33%;
    height: 18%;
    right: 20%;
    bottom: 28%;
    transform: rotate(22deg);
}

.solution-cloud {
    position: absolute;
    left: 16rem;
    bottom: 4rem;
    width: 10rem;
    height: 6rem;
    border-radius: 3rem;
    background: radial-gradient(circle at 40% 35%, #81dbff, #3193c8 70%, #216486 100%);
    box-shadow: 0 16px 34px rgba(7, 28, 43, 0.28);
}

.solution-cloud::before,
.solution-cloud::after {
    content: "";
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.solution-cloud::before {
    width: 4.3rem;
    height: 4.3rem;
    left: 1rem;
    top: -1.2rem;
}

.solution-cloud::after {
    width: 5rem;
    height: 5rem;
    right: 1rem;
    top: -1.6rem;
}

.orbit-screen,
.orbit-dot {
    position: absolute;
    opacity: 0.68;
}

.orbit-screen {
    border: 4px solid rgba(220, 224, 230, 0.58);
    border-radius: 0.45rem;
}

.orbit-screen-one {
    left: 8.5rem;
    top: 0.6rem;
    width: 2.2rem;
    height: 2.2rem;
}

.orbit-screen-two {
    left: 18rem;
    top: 3rem;
    width: 2.7rem;
    height: 2.1rem;
}

.orbit-screen-three {
    left: 24rem;
    top: 10.5rem;
    width: 3.2rem;
    height: 2.2rem;
}

.orbit-dot {
    width: 1rem;
    height: 1rem;
    border-right: 3px solid rgba(220, 224, 230, 0.62);
    border-bottom: 3px solid rgba(220, 224, 230, 0.62);
    transform: rotate(-45deg);
}

.orbit-dot-one {
    left: 11rem;
    top: 7rem;
}

.orbit-dot-two {
    left: 21rem;
    top: 7.6rem;
}

.orbit-dot-three {
    left: 22rem;
    top: 16rem;
}

.solution-copy {
    display: grid;
    align-content: center;
    gap: 1.15rem;
    color: #fff;
    padding-right: 1.5rem;
}

.solution-copy .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.solution-copy h2 {
    color: #fff;
    max-width: 11ch;
}

.solution-copy p {
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
}

.solution-copy .button-secondary {
    width: fit-content;
    min-width: 10rem;
    border-color: transparent;
    background: rgba(191, 208, 221, 0.38);
    color: #fff;
}

.site-footer {
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(135deg, rgba(240, 138, 36, 0.14), transparent 28%),
        linear-gradient(150deg, #072f2d 0%, #0a403b 48%, #082522 100%);
}

.site-footer-main {
    position: relative;
    overflow: hidden;
    padding: clamp(3.25rem, 7vw, 5.5rem) 0 2rem;
}

.site-footer-main::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 215, 182, 0.7), transparent);
}

.footer-premium-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
    gap: clamp(1.4rem, 4vw, 3.5rem);
    align-items: start;
}

.footer-brand-panel {
    display: grid;
    gap: 1.25rem;
    max-width: 31rem;
    padding: clamp(1.4rem, 4vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.04);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.footer-brand {
    color: #fff;
}

.footer-brand .brand-logo {
    width: min(15rem, 100%);
    max-height: none;
}

.footer-brand .brand-mark {
    background: linear-gradient(135deg, var(--accent), var(--brand));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.footer-brand .brand-block small {
    color: rgba(255, 255, 255, 0.66);
}

.footer-brand-panel p {
    margin: 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 3rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    color: #082522;
    background: #f8d7b6;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
    color: #082522;
    background: #fff2e2;
    transform: translateY(-2px);
}

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

.footer-column {
    display: grid;
    align-content: start;
    gap: 0.5rem;
}

.footer-column h2 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 2.3rem;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a::before {
    content: "";
    width: 0.35rem;
    height: 0.35rem;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: rgba(248, 215, 182, 0.8);
    transform: scale(0.72);
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: #fff;
    transform: translateX(3px);
}

.footer-column a:hover::before,
.footer-column a:focus-visible::before {
    background: var(--accent);
    transform: scale(1);
}

.footer-reference-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
}

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

.footer-meta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.1rem;
}

.footer-meta-links a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.footer-meta-links a:hover,
.footer-meta-links a:focus-visible {
    color: #fff;
}

:root[data-theme="dark"] .page-home .site-header {
    background: var(--header-bg);
    border-bottom-color: var(--header-border);
}

:root[data-theme="dark"] .page-home .home-nav-links {
    color: var(--muted);
}

:root[data-theme="dark"] .page-home .home-support-btn,
:root[data-theme="dark"] .page-home .home-btn-primary {
    background: linear-gradient(135deg, var(--brand), #128a7f);
    color: #04110f;
}

:root[data-theme="dark"] .page-home .home-btn-outline {
    border-color: rgba(239, 248, 244, 0.32);
    color: #eff8f4;
}

:root[data-theme="dark"] .page-home .hero {
    background:
        radial-gradient(circle at 82% 28%, rgba(40, 199, 183, 0.16), transparent 28%),
        linear-gradient(135deg, #071210, #12352f);
}

:root[data-theme="dark"] .home-search-box,
:root[data-theme="dark"] .home-dashboard-card,
:root[data-theme="dark"] .home-snapshot-card,
:root[data-theme="dark"] .home-services-grid article,
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .package-card,
:root[data-theme="dark"] .panel-card,
:root[data-theme="dark"] .leader-card,
:root[data-theme="dark"] .story-card,
:root[data-theme="dark"] .testimonial-card,
:root[data-theme="dark"] .trust-card,
:root[data-theme="dark"] .service-detail-card,
:root[data-theme="dark"] .support-note-card,
:root[data-theme="dark"] .graphic-offer-card,
:root[data-theme="dark"] .graphic-highlight-card,
:root[data-theme="dark"] .graphic-panel-grid article,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .contact-highlights article {
    border-color: var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)),
        var(--surface);
    color: var(--text);
    box-shadow: var(--shadow);
}

:root[data-theme="dark"] .section-muted,
:root[data-theme="dark"] .proof-strip,
:root[data-theme="dark"] .process-strip {
    background:
        linear-gradient(135deg, rgba(40, 199, 183, 0.08), rgba(255, 173, 85, 0.06)),
        rgba(6, 18, 16, 0.52);
    border-color: var(--line);
}

:root[data-theme="dark"] .home-services-grid h3,
:root[data-theme="dark"] .service-card h3,
:root[data-theme="dark"] .package-card h3,
:root[data-theme="dark"] .panel-card h3,
:root[data-theme="dark"] .story-card h3,
:root[data-theme="dark"] .trust-card h3,
:root[data-theme="dark"] .graphic-panel-grid strong,
:root[data-theme="dark"] .graphic-highlight-card h3 {
    color: var(--brand-deep);
}

:root[data-theme="dark"] .home-services-grid p,
:root[data-theme="dark"] .home-snapshot-card p,
:root[data-theme="dark"] .service-card p,
:root[data-theme="dark"] .package-card p,
:root[data-theme="dark"] .panel-card p,
:root[data-theme="dark"] .story-card p,
:root[data-theme="dark"] .trust-card p,
:root[data-theme="dark"] .graphic-panel-grid span,
:root[data-theme="dark"] .graphic-offer-card p,
:root[data-theme="dark"] .graphic-highlight-card p,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .contact-highlights p {
    color: var(--muted);
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] select,
:root[data-theme="dark"] textarea {
    border-color: var(--input-border);
    background: var(--input-bg);
    color: var(--text);
}

:root[data-theme="dark"] input::placeholder,
:root[data-theme="dark"] textarea::placeholder {
    color: rgba(233, 246, 240, 0.48);
}

:root[data-theme="dark"] .form-status-success {
    border-color: rgba(40, 199, 183, 0.3);
    background: rgba(40, 199, 183, 0.1);
    color: #bdf8ed;
}

:root[data-theme="dark"] .form-status-error {
    border-color: rgba(248, 113, 113, 0.36);
    background: rgba(127, 29, 29, 0.22);
    color: #fecaca;
}

:root[data-theme="dark"] .mobile-drawer-panel {
    border-color: var(--line);
    background: var(--submenu-bg);
}

:root[data-theme="dark"] .mobile-menu-toggle span {
    background: var(--text);
}

:root[data-theme="dark"] .mobile-submenu {
    border-top-color: var(--line);
}

:root[data-theme="dark"] .theme-toggle {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.leader-card,
.story-card,
.testimonial-card,
.trust-card,
.service-detail-card,
.support-note-card {
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.leader-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(240, 138, 36, 0.12));
}

.leader-avatar {
    display: grid;
    place-items: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
    border-radius: 1.5rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.leader-photo {
    display: block;
    width: min(100%, 18rem);
    aspect-ratio: 1 / 1;
    margin-bottom: 1rem;
    border-radius: 1.25rem;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 18px 40px rgba(22, 33, 41, 0.16);
}

.leader-label,
.leader-role,
.testimonial-name,
.testimonial-role {
    margin: 0;
}

.leader-label,
.testimonial-name {
    font-weight: 800;
    color: var(--brand-dark);
}

.leader-role {
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.story-shell {
    display: grid;
    gap: 2rem;
}

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

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

.service-detail-card {
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 138, 36, 0.08));
}

.service-kicker {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    background: var(--accent);
}

.service-detail-card p,
.support-note-card p {
    color: var(--muted);
}

.service-detail-card .card-link {
    display: inline-flex;
    margin-top: 0.5rem;
}

.support-note-card .eyebrow {
    margin-bottom: 0.35rem;
}

.support-note-card .button {
    justify-self: start;
}

.page-web-design .hero-copy h1 {
    max-width: 12.5ch;
}

.page-web-design .hero {
    background:
        radial-gradient(circle at 8% 16%, rgba(143, 231, 220, 0.2), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(240, 138, 36, 0.18), transparent 22%),
        linear-gradient(135deg, #082522 0%, #114c68 48%, #0f766e 100%);
}

.page-web-design .hero::after {
    opacity: 0.16;
}

.page-web-design .hero-copy .hero-text {
    color: rgba(255, 255, 255, 0.86);
}

.page-web-design .hero-points li {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.page-web-design .button-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.web-design-panel {
    display: grid;
    gap: 1.2rem;
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(240, 138, 36, 0.12));
}

.web-browser-preview {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: var(--radius-md);
    background: #061210;
    box-shadow: 0 24px 60px rgba(8, 37, 34, 0.22);
}

.web-browser-preview img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.web-preview-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    max-width: min(17rem, calc(100% - 2rem));
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1rem;
    color: #fff;
    background: rgba(6, 18, 16, 0.74);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.web-preview-badge strong,
.web-preview-badge span {
    display: block;
}

.web-preview-badge strong {
    margin-bottom: 0.18rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
}

.web-preview-badge span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.86rem;
    line-height: 1.4;
}

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

.web-panel-grid article {
    padding: 1rem;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.6);
}

.web-panel-grid strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--brand-deep);
}

.web-panel-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.page-web-design .proof-strip {
    background:
        linear-gradient(90deg, rgba(8, 54, 51, 0.98), rgba(15, 118, 110, 0.94)),
        var(--brand-deep);
}

.page-web-design .proof-grid article {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.page-web-design .proof-grid strong {
    color: #fff;
}

.page-web-design .proof-grid p {
    color: rgba(255, 255, 255, 0.74);
}

.page-web-design .service-detail-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(240, 138, 36, 0.1));
}

.page-web-design .service-detail-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 0.28rem;
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.web-service-image {
    margin: -1.6rem -1.6rem 1.2rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 118, 110, 0.12);
    background: rgba(8, 37, 34, 0.08);
}

.web-service-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.page-web-design .service-detail-card:hover .web-service-image img {
    transform: scale(1.05);
}

.page-web-design .service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(22, 33, 41, 0.16);
}

.page-web-design .service-kicker {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.18);
}

.page-web-design .section-accent {
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.1), transparent 24%),
        linear-gradient(135deg, #123e60, #0f766e);
}

.page-web-design .section-accent .eyebrow,
.page-web-design .section-accent h2,
.page-web-design .section-accent h3 {
    color: #fff;
}

.page-web-design .section-accent .hero-text,
.page-web-design .section-accent .support-note-card p {
    color: rgba(255, 255, 255, 0.78);
}

.page-web-design .section-accent .support-note-card {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.page-bulk-sms .hero {
    background:
        radial-gradient(circle at 76% 26%, rgba(255, 185, 77, 0.22), transparent 28%),
        radial-gradient(circle at 28% 18%, rgba(66, 190, 210, 0.18), transparent 30%),
        linear-gradient(135deg, #0e5f75, #0f4f66 52%, #082d44);
}

.page-bulk-sms .hero-copy .hero-text {
    color: rgba(255, 255, 255, 0.86);
}

.bulk-sms-panel {
    display: grid;
    gap: 1.25rem;
}

.bulk-sms-visual {
    display: grid;
    place-items: center;
    min-height: 17rem;
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 118, 110, 0.16);
    background:
        linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
        #fff;
    background-size: 28px 28px;
}

.bulk-sms-visual img {
    display: block;
    width: min(100%, 28rem);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 32px rgba(22, 33, 41, 0.18));
}

.service-focus-hero {
    background:
        radial-gradient(circle at 76% 26%, rgba(255, 185, 77, 0.18), transparent 28%),
        radial-gradient(circle at 24% 18%, rgba(40, 199, 183, 0.2), transparent 30%),
        linear-gradient(135deg, #123e60, #0f766e);
}

.smo-service-hero {
    background:
        radial-gradient(circle at 76% 26%, rgba(239, 91, 154, 0.2), transparent 28%),
        radial-gradient(circle at 24% 18%, rgba(66, 190, 210, 0.2), transparent 30%),
        linear-gradient(135deg, #18365f, #0f766e);
}

.service-focus-panel {
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.2);
    background: #fff;
}

.service-focus-panel img {
    display: block;
    width: 100%;
    min-height: 24rem;
    max-height: 31rem;
    object-fit: cover;
}

.numbered-service-grid,
.step-service-grid {
    display: grid;
    gap: 1.25rem;
}

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

.step-service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.numbered-service-card,
.step-service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 138, 36, 0.08));
    box-shadow: 0 18px 42px rgba(22, 33, 41, 0.08);
}

.numbered-service-card {
    padding: 1.35rem;
}

.step-service-card {
    padding: 1.2rem;
}

.numbered-service-card::before,
.step-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 0.28rem;
    background: linear-gradient(90deg, var(--brand), #3da4c6, var(--accent));
}

.numbered-service-card span,
.step-service-card span {
    display: inline-grid;
    place-items: center;
    min-width: 2.4rem;
    min-height: 2.4rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--brand-dark);
    font-weight: 900;
}

.step-service-card span {
    min-width: auto;
    min-height: auto;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.numbered-service-card h3,
.step-service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-size: 1.2rem;
}

.numbered-service-card p,
.step-service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.service-media-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.service-media-copy h2 {
    max-width: 13ch;
}

.service-media-copy .feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    padding: 0;
    margin-top: 1.5rem;
    list-style: none;
}

.service-media-copy .feature-list li {
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-weight: 800;
}

.service-media-panel {
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 118, 110, 0.14);
    background: #fff;
    box-shadow: 0 24px 54px rgba(22, 33, 41, 0.12);
}

.service-media-panel img {
    display: block;
    width: 100%;
    min-height: 20rem;
    object-fit: cover;
}

.page-why-choose-us {
    background:
        linear-gradient(90deg, rgba(15, 118, 110, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 118, 110, 0.055) 1px, transparent 1px),
        var(--body-bg);
    background-size: 34px 34px, 34px 34px, auto;
}

.why-hero {
    padding: clamp(4rem, 6vw, 5.5rem) 0 clamp(3.5rem, 5vw, 4.8rem);
    background:
        radial-gradient(circle at 78% 18%, rgba(240, 138, 36, 0.22), transparent 26%),
        radial-gradient(circle at 18% 28%, rgba(40, 199, 183, 0.18), transparent 30%),
        linear-gradient(135deg, #0b3c5d, #0f766e 58%, #092b3f);
    color: #fff;
}

.why-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 0.48fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.why-hero-copy {
    max-width: 50rem;
    min-width: 0;
}

.why-hero .eyebrow,
.why-hero h1,
.why-hero p {
    color: #fff;
}

.why-hero h1 {
    max-width: 15ch;
    margin: 0 0 1.25rem;
    font-size: clamp(3rem, 5.2vw, 5.4rem);
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.why-hero-copy > p:not(.eyebrow) {
    max-width: 44rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.why-hero-panel {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.why-hero-panel div {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
}

.why-hero-panel span {
    color: #bff4eb;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-hero-panel strong {
    color: #fff;
    line-height: 1.35;
}

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

.why-value-card {
    position: relative;
    overflow: hidden;
    min-height: 15rem;
    padding: 1.25rem;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 1.1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 138, 36, 0.08));
    box-shadow: 0 18px 42px rgba(22, 33, 41, 0.08);
}

.why-value-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 0.28rem;
    background: linear-gradient(90deg, var(--brand), #3da4c6, var(--accent));
}

.why-value-card span {
    display: inline-grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    margin-bottom: 1rem;
    border-radius: 0.85rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    font-weight: 900;
}

.why-value-card h3 {
    margin: 0 0 0.75rem;
    color: var(--text);
    font-size: 1.2rem;
}

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

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: end;
}

.section-heading-split > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.portfolio-showcase {
    overflow: hidden;
    margin: 0 0 1.2rem;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 26px 64px rgba(22, 33, 41, 0.12);
}

.portfolio-showcase img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

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

.portfolio-card {
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 42px rgba(22, 33, 41, 0.08);
}

.portfolio-shot {
    display: grid;
    place-items: center;
    min-height: 13rem;
    padding: 1.15rem;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 138, 36, 0.08)),
        #edf2f4;
}

.portfolio-shot img {
    display: block;
    width: 100%;
    max-width: 13rem;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(22, 33, 41, 0.16));
}

.portfolio-meta {
    display: grid;
    gap: 0.55rem;
    padding: 1.1rem;
}

.portfolio-meta p {
    margin: 0;
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.portfolio-meta h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.3rem;
}

.portfolio-meta span {
    color: var(--muted);
    line-height: 1.65;
}

.why-cta-band {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.4rem, 4vw, 2.2rem);
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 1.35rem;
    background:
        radial-gradient(circle at 82% 20%, rgba(240, 138, 36, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
    box-shadow: 0 22px 54px rgba(22, 33, 41, 0.1);
}

.why-cta-band h2 {
    max-width: 18ch;
    margin-bottom: 0;
}

:root[data-theme="dark"] .why-value-card,
:root[data-theme="dark"] .portfolio-card,
:root[data-theme="dark"] .why-cta-band {
    border-color: rgba(236, 248, 242, 0.14);
    background:
        linear-gradient(180deg, rgba(16, 35, 31, 0.94), rgba(12, 27, 24, 0.84)),
        linear-gradient(135deg, rgba(40, 199, 183, 0.12), rgba(255, 173, 85, 0.1));
}

:root[data-theme="dark"] .portfolio-showcase {
    border-color: rgba(236, 248, 242, 0.14);
    background: #0e1d1b;
}

:root[data-theme="dark"] .portfolio-shot {
    background:
        linear-gradient(135deg, rgba(143, 231, 220, 0.12), rgba(255, 173, 85, 0.1)),
        #142521;
}

:root[data-theme="dark"] .why-value-card h3,
:root[data-theme="dark"] .portfolio-meta h3,
:root[data-theme="dark"] .why-cta-band h2 {
    color: #f6fffb;
}

:root[data-theme="dark"] .why-value-card p,
:root[data-theme="dark"] .portfolio-meta span,
:root[data-theme="dark"] .section-heading-split > p {
    color: #d8e8e2;
}

:root[data-theme="dark"] .portfolio-meta p {
    color: #8fe7dc;
}

.page-package .hero-copy h1 {
    max-width: 12.5ch;
}

.package-summary-panel {
    display: grid;
    gap: 1rem;
}

.package-summary-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.package-stat-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.package-stat-grid article {
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 118, 110, 0.1);
    background: rgba(255, 255, 255, 0.72);
}

.package-stat-grid strong {
    color: var(--brand-deep);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.7rem;
    line-height: 1;
}

.package-stat-grid span {
    color: var(--muted);
    font-weight: 800;
}

.package-proof-strip {
    padding-top: 1.5rem;
}

.package-pricing-section {
    background:
        linear-gradient(90deg, rgba(15, 118, 110, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 118, 110, 0.045) 1px, transparent 1px),
        linear-gradient(135deg, rgba(244, 241, 232, 0.96), rgba(236, 244, 243, 0.82));
    background-size: 42px 42px, 42px 42px, auto;
}

.package-pricing-section .section-heading {
    max-width: 58rem;
}

.package-pricing-section .section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.package-price-card {
    position: relative;
    display: grid;
    align-content: start;
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 0.85rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 252, 251, 0.9)),
        var(--surface);
    box-shadow: 0 20px 42px rgba(22, 33, 41, 0.08);
}

.package-price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #3da4c6, #b98627);
}

.package-price-head {
    display: grid;
    gap: 0.85rem;
    justify-items: start;
    padding: clamp(1.1rem, 2vw, 1.45rem);
    text-align: left;
    border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}

.package-price-head h3 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    letter-spacing: 0;
}

.package-price {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    color: var(--ink);
}

.package-price span {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    font-weight: 800;
}

.package-price strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.45rem, 4.6vw, 3.85rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: 0;
}

.package-price-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.package-price-head .button {
    width: 100%;
    justify-content: center;
    min-height: 2.8rem;
    max-width: none;
    border-color: transparent;
    border-radius: 0.55rem;
    background: linear-gradient(135deg, var(--brand), #155f7a);
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
}

.package-price-features {
    display: grid;
    gap: 0.62rem;
    margin: 0;
    padding: clamp(1rem, 2vw, 1.35rem);
    list-style: none;
    color: var(--ink);
    text-align: left;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
}

.package-price-features li {
    position: relative;
    padding-left: 1.2rem;
}

.package-price-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.package-price-features li + li {
    padding-top: 0.62rem;
    border-top: 1px solid rgba(15, 118, 110, 0.1);
}

.payment-modal[hidden] {
    display: none;
}

.payment-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(6, 18, 16, 0.62);
    backdrop-filter: blur(10px);
}

.payment-modal-panel {
    position: relative;
    width: min(100%, 32rem);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    padding: clamp(1.1rem, 2.5vw, 1.65rem);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 251, 0.94)),
        var(--surface);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.payment-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 2.3rem;
    height: 2.3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--ink);
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 800;
}

.payment-modal-panel h2 {
    max-width: 18ch;
    margin-bottom: 0.55rem;
    padding-right: 2.25rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.05;
}

.payment-modal-summary {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-weight: 800;
}

.payment-form label {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-weight: 800;
}

.payment-form input {
    width: 100%;
    border: 1px solid rgba(27, 29, 31, 0.1);
    border-radius: 0.85rem;
    padding: 0.8rem 0.95rem;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    font: inherit;
}

.payment-form input:focus {
    outline: 2px solid rgba(15, 118, 110, 0.18);
    border-color: rgba(15, 118, 110, 0.4);
}

.payment-form .button {
    width: 100%;
    justify-content: center;
}

.payment-status-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background:
        linear-gradient(90deg, rgba(15, 118, 110, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 118, 110, 0.045) 1px, transparent 1px),
        linear-gradient(135deg, rgba(244, 241, 232, 0.96), rgba(236, 244, 243, 0.82));
    background-size: 42px 42px, 42px 42px, auto;
}

.payment-status-card {
    max-width: 44rem;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 64px rgba(22, 33, 41, 0.12);
}

.payment-status-card .brand {
    width: fit-content;
    margin-bottom: 1.5rem;
}

.payment-status-card h1 {
    max-width: none;
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.payment-status-card p {
    color: var(--muted);
}

.payment-status-details {
    display: grid;
    gap: 0.75rem;
    margin: 1.4rem 0;
}

.payment-status-details div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(15, 118, 110, 0.12);
}

.payment-status-details dt {
    color: var(--muted);
    font-weight: 800;
}

.payment-status-details dd {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
    text-align: right;
}

.package-deliverable-card {
    display: grid;
    gap: 0.75rem;
}

.package-deliverable-card .service-kicker {
    margin-bottom: 0;
}

.package-deliverable-card .card-kicker {
    margin-top: 0.15rem;
}

.package-deliverable-card .mini-list {
    margin-top: 0.25rem;
}

.package-fit-shell .support-note-card,
.package-cta-shell .support-note-card {
    align-self: stretch;
}

.page-app-development .service-detail-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 1.35rem;
    align-items: stretch;
}

.page-app-development .service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    height: 100%;
    padding: 1rem 1rem 1.45rem;
    border: 1px solid rgba(143, 231, 220, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028)),
        linear-gradient(135deg, rgba(8, 23, 21, 0.92), rgba(11, 42, 38, 0.88));
    color: var(--text);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-app-development .service-detail-card:hover {
    transform: translateY(-7px);
    border-color: rgba(143, 231, 220, 0.52);
    box-shadow: 0 30px 72px rgba(40, 199, 183, 0.18), 0 18px 42px rgba(0, 0, 0, 0.28);
}

.app-service-thumbnail {
    width: 100%;
    margin: 0 0 0.35rem;
    overflow: hidden;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.app-service-thumbnail img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.page-app-development .service-detail-card .service-kicker {
    margin-bottom: 0;
    color: #071210;
    background: linear-gradient(135deg, var(--accent), var(--brand));
}

.page-app-development .service-detail-card h3 {
    margin: 0;
    color: #eff8f4;
}

.page-app-development .service-detail-card p {
    margin: 0;
    color: #a9bbb5;
}

@media (min-width: 761px) {
    .page-app-development .service-detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-support-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.support-note-card {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.graphic-panel-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(240, 138, 36, 0.1));
}

.graphic-panel-grid,
.graphic-offer-grid {
    display: grid;
    gap: 1rem;
}

.graphic-hero-collage {
    position: relative;
    min-height: 20rem;
    margin-bottom: 1.2rem;
    padding-right: 5.5rem;
    padding-bottom: 2rem;
}

.graphic-collage-image,
.service-image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.graphic-collage-image {
    border-radius: 1.4rem;
    box-shadow: 0 20px 44px rgba(22, 33, 41, 0.18);
}

.graphic-collage-main {
    height: 18rem;
}

.graphic-collage-small {
    position: absolute;
    right: 0;
    width: 10rem;
    height: 7.5rem;
    border: 5px solid rgba(255, 255, 255, 0.92);
}

.graphic-collage-top {
    top: 1rem;
}

.graphic-collage-bottom {
    bottom: 0;
}

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

.graphic-panel-grid article,
.graphic-highlight-card {
    padding: 1.15rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 118, 110, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

.graphic-panel-grid strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brand-deep);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.02rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.graphic-panel-grid span {
    display: block;
    color: #55616a;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 22ch;
}

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

.graphic-offer-card {
    display: grid;
    gap: 0.75rem;
    min-height: 100%;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(240, 138, 36, 0.08));
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-image {
    height: 13.5rem;
    margin-bottom: 0.15rem;
    border-radius: 1.15rem;
    box-shadow: 0 14px 30px rgba(22, 33, 41, 0.14);
}

.graphic-offer-card:hover,
.graphic-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(22, 33, 41, 0.16);
}

.graphic-offer-card p,
.graphic-showcase-copy p,
.graphic-highlight-card p {
    color: var(--muted);
}

.graphic-showcase-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}

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

.graphic-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.graphic-tag-list li {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--brand-dark);
    font-weight: 700;
}

.graphic-link-stack {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.graphic-link-stack a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(15, 118, 110, 0.06);
    color: var(--brand-deep);
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.graphic-link-stack a:hover,
.graphic-link-stack a:focus-visible {
    background: rgba(15, 118, 110, 0.12);
    transform: translateX(4px);
}

.testimonial-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: start;
}

.quote {
    margin-top: 0;
    font-size: 1.1rem;
}

.testimonial-name {
    margin-top: 1.5rem;
}

.trust-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}

.trust-list li + li {
    margin-top: 0.75rem;
}

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

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

:root[data-theme="dark"] .home-search-box,
:root[data-theme="dark"] .home-dashboard-card,
:root[data-theme="dark"] .home-snapshot-card,
:root[data-theme="dark"] .home-services-grid article,
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .package-card,
:root[data-theme="dark"] .panel-card,
:root[data-theme="dark"] .leader-card,
:root[data-theme="dark"] .story-card,
:root[data-theme="dark"] .testimonial-card,
:root[data-theme="dark"] .trust-card,
:root[data-theme="dark"] .service-detail-card,
:root[data-theme="dark"] .support-note-card,
:root[data-theme="dark"] .graphic-offer-card,
:root[data-theme="dark"] .graphic-highlight-card,
:root[data-theme="dark"] .graphic-panel-grid article,
:root[data-theme="dark"] .package-stat-grid article,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .contact-highlights article,
:root[data-theme="dark"] .solution-copy {
    border-color: var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)),
        var(--surface);
    color: var(--text);
    box-shadow: var(--shadow);
}

:root[data-theme="dark"] .section-muted,
:root[data-theme="dark"] .process-strip,
:root[data-theme="dark"] .proof-strip,
:root[data-theme="dark"] .service-support-shell,
:root[data-theme="dark"] .graphic-showcase-shell {
    background:
        linear-gradient(135deg, rgba(40, 199, 183, 0.08), rgba(255, 173, 85, 0.06)),
        rgba(6, 18, 16, 0.52);
    border-color: var(--line);
}

:root[data-theme="dark"] .home-services-grid h3,
:root[data-theme="dark"] .service-card h3,
:root[data-theme="dark"] .package-card h3,
:root[data-theme="dark"] .panel-card h3,
:root[data-theme="dark"] .story-card h3,
:root[data-theme="dark"] .trust-card h3,
:root[data-theme="dark"] .service-detail-card h3,
:root[data-theme="dark"] .support-note-card h3,
:root[data-theme="dark"] .graphic-panel-grid strong,
:root[data-theme="dark"] .graphic-highlight-card h3,
:root[data-theme="dark"] .graphic-link-stack a,
:root[data-theme="dark"] .package-stat-grid strong {
    color: var(--brand-deep);
}

:root[data-theme="dark"] .home-services-grid p,
:root[data-theme="dark"] .home-snapshot-card p,
:root[data-theme="dark"] .service-card p,
:root[data-theme="dark"] .package-card p,
:root[data-theme="dark"] .panel-card p,
:root[data-theme="dark"] .story-card p,
:root[data-theme="dark"] .trust-card p,
:root[data-theme="dark"] .service-detail-card p,
:root[data-theme="dark"] .support-note-card p,
:root[data-theme="dark"] .graphic-panel-grid span,
:root[data-theme="dark"] .graphic-offer-card p,
:root[data-theme="dark"] .graphic-highlight-card p,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .contact-highlights p,
:root[data-theme="dark"] .graphic-showcase-copy p,
:root[data-theme="dark"] .package-stat-grid span {
    color: var(--muted);
}

:root[data-theme="dark"] .graphic-tag-list li,
:root[data-theme="dark"] .graphic-link-stack a {
    background: rgba(40, 199, 183, 0.1);
}

:root[data-theme="dark"] .web-panel-grid article {
    border-color: rgba(143, 231, 220, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .web-panel-grid strong {
    color: var(--brand-deep);
}

:root[data-theme="dark"] .page-app-development .service-detail-card {
    border-color: rgba(143, 231, 220, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028)),
        linear-gradient(135deg, rgba(8, 23, 21, 0.94), rgba(11, 42, 38, 0.9));
}

:root[data-theme="dark"] .page-app-development .service-detail-card:hover {
    border-color: rgba(143, 231, 220, 0.56);
    box-shadow: 0 30px 72px rgba(40, 199, 183, 0.2), 0 18px 42px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1180px) and (min-width: 961px) {
    .page-home .home-nav {
        height: 76px;
    }

    .page-home .hero {
        padding: 3rem 0 4rem;
    }

    .page-home .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
        gap: 2rem;
    }

    .page-home .hero-copy h1 {
        font-size: clamp(2.45rem, 3.8vw, 3.45rem);
        max-width: 13ch;
    }

    .page-home .hero-text {
        font-size: 0.96rem;
    }

    .page-home .home-search-box {
        margin-bottom: 1rem;
    }

    .page-home .home-snapshot-card {
        justify-content: flex-start;
    }
}

@media (max-width: 960px) {
    .hero-grid,
    .split-layout,
    .about-grid,
    .vision-shell,
    .contact-shell,
    .capability-shell,
    .proof-grid,
    .services-grid,
    .graphic-offer-grid,
    .package-grid,
    .package-pricing-grid,
    .numbered-service-grid,
    .step-service-grid,
    .service-media-shell,
    .why-hero-grid,
    .why-value-grid,
    .section-heading-split,
    .portfolio-grid,
    .capability-list,
    .story-grid,
    .testimonial-grid,
    .service-detail-grid,
    .service-support-shell,
    .graphic-showcase-shell,
    .solution-showcase,
    .web-panel-grid,
    .footer-premium-grid,
    .footer-reference-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-panel {
        max-width: none;
    }

    .nav-shell,
    .footer-shell {
        flex-wrap: wrap;
        padding: 0.85rem 0;
    }

    .site-nav {
        display: flex;
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.85rem 1rem;
        padding-top: 0.5rem;
    }

    .site-nav-item {
        width: 100%;
        text-align: center;
    }

    .site-nav-item > a,
    .site-nav > a {
        justify-content: center;
        width: 100%;
    }

    .site-submenu {
        position: static;
        left: auto;
        min-width: 0;
        width: 100%;
        margin-top: 0.65rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
    }

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

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

    .mini-search,
    .visual-badge {
        width: 100%;
    }

    .hero-visual {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .visual-card,
    .floating-insight {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .visual-card-front,
    .visual-card-back {
        min-height: auto;
    }

    .visual-screen {
        min-height: 24rem;
    }

    .radial-graphic {
        width: 68%;
        left: -10%;
    }

    .screen-content {
        width: 100%;
        margin-left: 0;
    }

    .site-nav-item-submenu:hover .site-submenu,
    .site-nav-item-submenu:focus-within .site-submenu {
        display: grid;
    }

    .graphic-panel-grid {
        grid-template-columns: 1fr;
    }

    .vision-copy {
        padding-left: 0;
    }

    .vision-copy::before {
        display: none;
    }

    .vision-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 0;
    }

    .solution-art {
        min-height: 24rem;
    }

    .solution-ribbons {
        position: relative;
        left: 0;
        bottom: auto;
        margin-top: 12rem;
    }

    .solution-ribbon {
        min-width: 0;
        width: min(100%, 24rem);
    }

    .solution-orbit {
        inset: 0;
    }

    .solution-copy {
        padding-right: 0;
    }

    .footer-column a {
        min-width: 0;
        width: 100%;
    }

    .why-hero h1 {
        max-width: 16ch;
    }

    .page-why-choose-us .nav-shell {
        flex-wrap: nowrap;
        align-items: center;
        padding: 0.9rem 0;
    }

    .page-why-choose-us .site-nav,
    .page-why-choose-us .nav-cta,
    .page-why-choose-us .nav-shell > .theme-toggle {
        display: none;
    }

    .page-why-choose-us .mobile-nav-drawer {
        position: relative;
        display: block;
        order: 2;
        margin-left: auto;
    }

    .page-why-choose-us .mobile-menu-toggle {
        display: inline-grid;
        gap: 0.35rem;
        padding: 0.5rem 0.25rem;
    }

    .page-why-choose-us .mobile-menu-toggle span {
        width: 2rem;
        height: 3px;
        border-radius: 999px;
        background: var(--text);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .page-why-choose-us .mobile-nav-drawer[open] .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .page-why-choose-us .mobile-nav-drawer[open] .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .page-why-choose-us .mobile-nav-drawer[open] .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .page-why-choose-us .mobile-drawer-panel {
        position: absolute;
        right: 0;
        top: calc(100% + 0.6rem);
        z-index: 30;
        display: grid;
        gap: 0.25rem;
        width: min(18rem, calc(100vw - 3rem));
        padding: 0.75rem;
        border-radius: 1rem;
        border: 1px solid rgba(27, 29, 31, 0.08);
        background: var(--submenu-bg);
        box-shadow: 0 20px 40px rgba(25, 41, 56, 0.18);
    }

    .page-why-choose-us .mobile-drawer-panel a {
        display: block;
        width: 100%;
        padding: 0.7rem 0.75rem;
        border-radius: 0.85rem;
        color: var(--text);
        font-weight: 600;
    }

    .page-why-choose-us .mobile-submenu {
        border-top: 1px solid rgba(27, 29, 31, 0.08);
        padding-top: 0.25rem;
    }

    .page-why-choose-us .mobile-submenu:first-of-type {
        border-top: 0;
        padding-top: 0;
    }

    .page-why-choose-us .mobile-submenu summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        min-height: 2.75rem;
        padding: 0.7rem 0.75rem;
        border-radius: 0.85rem;
        color: var(--text);
        cursor: pointer;
        font-weight: 800;
        list-style: none;
    }

    .page-why-choose-us .mobile-submenu summary::after {
        content: "";
        flex: 0 0 auto;
        width: 0.55rem;
        height: 0.55rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-1px);
        transition: transform 0.2s ease;
    }

    .page-why-choose-us .mobile-submenu[open] summary::after {
        transform: rotate(225deg) translateY(-1px);
    }

    .page-why-choose-us .mobile-submenu[open] summary,
    .page-why-choose-us .mobile-drawer-panel a:hover,
    .page-why-choose-us .mobile-drawer-panel a:focus-visible,
    .page-why-choose-us .mobile-drawer-panel a.is-current,
    .page-why-choose-us .mobile-drawer-panel a[aria-current="page"] {
        color: var(--brand-dark);
        background: rgba(15, 118, 110, 0.08);
    }

    .page-why-choose-us .mobile-submenu a {
        margin-top: 0.2rem;
        padding-left: 1.1rem;
    }

    .page-why-choose-us .mobile-drawer-cta {
        margin-top: 0.35rem;
        color: #fff !important;
        text-align: center;
        background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    }

    .page-why-choose-us .theme-toggle-mobile {
        display: inline-flex;
        width: 100%;
        margin-bottom: 0.35rem;
    }

    .why-hero-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .portfolio-showcase img {
        aspect-ratio: 4 / 3;
        object-position: center top;
    }

    .why-cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-header {
        position: relative;
    }

    .hero {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    .service-focus-panel img {
        min-height: 18rem;
    }

    .service-media-copy .feature-list {
        grid-template-columns: 1fr;
    }

    .leader-photo {
        width: min(100%, 14rem);
    }

    .why-hero {
        padding-top: 3.25rem;
        padding-bottom: 3.5rem;
    }

    .why-hero-grid {
        gap: 1.5rem;
    }

    .why-hero h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 10vw, 3.25rem);
        line-height: 1.02;
    }

    .why-hero-copy > p:not(.eyebrow) {
        font-size: 1rem;
    }

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

    .why-hero .hero-actions .button,
    .why-cta-band .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .why-hero-panel {
        grid-template-columns: 1fr;
        border-radius: 1.1rem;
    }

    .why-hero-panel,
    .why-value-card,
    .portfolio-meta,
    .why-cta-band {
        padding: 1rem;
    }

    .why-value-card {
        min-height: auto;
    }

    .portfolio-showcase {
        border-radius: 1rem;
    }

    .portfolio-showcase img {
        min-height: 0;
        aspect-ratio: 16 / 10;
        object-fit: contain;
        object-position: center;
        background: #eef3f6;
    }

    .portfolio-shot {
        min-height: 11rem;
        padding: 1rem;
    }

    .portfolio-shot img {
        max-width: min(11rem, 78vw);
    }

    .portfolio-meta h3 {
        font-size: 1.15rem;
    }

    .section-heading-split > p {
        font-size: 0.98rem;
    }

    .why-cta-band h2 {
        max-width: 100%;
    }

    .nav-shell {
        gap: 0.85rem;
        align-items: stretch;
        padding: 0.9rem 0 1rem;
    }

    .brand {
        gap: 0.8rem;
    }

    .brand-logo {
        width: clamp(8.8rem, 42vw, 11rem);
        max-height: 2.9rem;
    }

    .brand-mark {
        width: 2.8rem;
        height: 2.8rem;
        border-radius: 0.9rem;
        font-size: 0.95rem;
    }

    .brand-block strong {
        font-size: 0.95rem;
        line-height: 1.15;
    }

    .brand-block small {
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .mobile-nav-drawer {
        position: relative;
        display: block;
        order: 2;
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: inline-grid;
        gap: 0.35rem;
        padding: 0.5rem 0.25rem;
    }

    .mobile-menu-toggle span {
        width: 2rem;
        height: 3px;
        border-radius: 999px;
        background: #25313b;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-nav-drawer[open] .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-nav-drawer[open] .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-drawer[open] .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-drawer-panel {
        position: absolute;
        right: 0;
        top: calc(100% + 0.6rem);
        z-index: 30;
        display: grid;
        gap: 0.25rem;
        width: min(18rem, calc(100vw - 3rem));
        padding: 0.75rem;
        border-radius: 1rem;
        border: 1px solid rgba(27, 29, 31, 0.08);
        background: rgba(255, 253, 248, 0.98);
        box-shadow: 0 20px 40px rgba(25, 41, 56, 0.18);
    }

    .mobile-drawer-panel a {
        display: block;
        width: 100%;
        padding: 0.7rem 0.75rem;
        border-radius: 0.85rem;
        color: var(--text);
        font-weight: 600;
    }

    .mobile-submenu {
        border-top: 1px solid rgba(27, 29, 31, 0.08);
        padding-top: 0.25rem;
    }

    .mobile-submenu:first-of-type {
        border-top: 0;
        padding-top: 0;
    }

    .mobile-submenu summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        min-height: 2.75rem;
        padding: 0.7rem 0.75rem;
        border-radius: 0.85rem;
        color: var(--text);
        cursor: pointer;
        font-weight: 800;
        list-style: none;
    }

    .mobile-submenu summary::after {
        content: "";
        flex: 0 0 auto;
        width: 0.55rem;
        height: 0.55rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-1px);
        transition: transform 0.2s ease;
    }

    .mobile-submenu[open] summary::after {
        transform: rotate(225deg) translateY(-1px);
    }

    .mobile-submenu[open] summary {
        color: var(--brand-dark);
        background: rgba(15, 118, 110, 0.08);
    }

    .mobile-submenu a {
        margin-top: 0.2rem;
        padding-left: 1.1rem;
    }

    .mobile-drawer-panel a:hover,
    .mobile-drawer-panel a:focus-visible,
    .mobile-submenu summary:hover,
    .mobile-submenu summary:focus-visible,
    .mobile-drawer-panel a.is-current,
    .mobile-drawer-panel a[aria-current="page"] {
        background: rgba(15, 118, 110, 0.08);
    }

    .mobile-drawer-cta {
        margin-top: 0.35rem;
        color: #fff !important;
        text-align: center;
        background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    }

    .site-nav,
    .nav-cta,
    .nav-shell > .theme-toggle,
    .home-nav > .theme-toggle {
        display: none;
    }

    .theme-toggle-mobile {
        display: inline-flex;
        width: 100%;
        margin-bottom: 0.35rem;
    }

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

    .mobile-search-strip {
        display: inline-flex;
        align-items: center;
        gap: 0.85rem;
        order: -2;
        width: 100%;
        padding: 0.95rem 1rem;
        border: 1px solid rgba(27, 29, 31, 0.16);
        background: rgba(255, 255, 255, 0.96);
        color: #49545d;
        font-size: 1rem;
        box-shadow: 0 10px 26px rgba(25, 41, 56, 0.12);
    }

    .page-home .hero-panel {
        display: block;
        order: -1;
    }

    .page-home .hero-visual-topbar,
    .page-home .floating-insight,
    .page-home .visual-card-back {
        display: none;
    }

    .page-home .hero-visual {
        min-height: auto;
    }

    .page-home .visual-card-front {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-height: auto;
    }

    .page-home .visual-screen {
        min-height: 12.5rem;
        padding: 0.8rem;
    }

    .page-home .radial-graphic,
    .page-home .screen-content {
        display: none;
    }

    .page-home .hero-copy h1 {
        font-size: clamp(2.1rem, 11vw, 3.2rem);
        line-height: 0.98;
        margin-bottom: 0.8rem;
    }

    .page-home .hero-copy .hero-text {
        font-size: 0.94rem;
    }

    .page-home .hero-actions {
        margin: 1.1rem 0 0.9rem;
    }

    .page-home .hero-points li,
    .page-home .hero-proof span {
        padding: 0.72rem 0.8rem;
        font-size: 0.88rem;
    }

    h1 {
        max-width: none;
    }

    .hero-actions,
    .hero-points,
    .hero-proof {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .visual-screen {
        min-height: 21rem;
    }

    .radial-graphic {
        width: 88%;
        left: -22%;
        top: 14%;
    }

    .screen-content {
        padding: 0.9rem;
    }

    .page-why-choose-us .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .page-why-choose-us .why-hero-copy,
    .page-why-choose-us .why-hero-panel,
    .page-why-choose-us .section-heading,
    .page-why-choose-us .section-heading-split,
    .page-why-choose-us .why-value-card,
    .page-why-choose-us .portfolio-card,
    .page-why-choose-us .why-cta-band {
        min-width: 0;
        max-width: 100%;
    }

    .page-why-choose-us .why-hero h1 {
        max-width: 8.8ch;
        font-size: clamp(2.2rem, 9.2vw, 3rem);
        overflow-wrap: normal;
    }

    .page-why-choose-us h2 {
        max-width: 11ch;
        font-size: clamp(1.9rem, 8.8vw, 2.55rem);
        line-height: 1.08;
        overflow-wrap: normal;
    }

    .page-why-choose-us .why-hero-copy > p:not(.eyebrow),
    .page-why-choose-us .section-heading p,
    .page-why-choose-us .section-heading-split > p,
    .page-why-choose-us .portfolio-meta span {
        max-width: 31ch;
        overflow-wrap: anywhere;
    }

    .page-why-choose-us .why-hero .hero-actions {
        max-width: 31ch;
    }

    .page-why-choose-us .why-hero .hero-actions .button,
    .page-why-choose-us .why-cta-band .button {
        max-width: 100%;
    }

    .panel-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .vision-icons {
        grid-template-columns: 1fr;
    }

    .vision-icon-card {
        justify-items: start;
        text-align: left;
    }

    .solution-showcase {
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .solution-art {
        min-height: 18rem;
    }

    .solution-ribbons {
        margin-top: 10rem;
        gap: 0.75rem;
    }

    .solution-ribbon {
        width: 100%;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .solution-globe {
        left: 4.8rem;
        top: 4rem;
        width: 8.5rem;
    }

    .solution-cloud {
        left: 10rem;
        bottom: 5rem;
        width: 7.6rem;
        height: 4.6rem;
    }

    .solution-copy {
        gap: 0.85rem;
    }

    .solution-copy h2 {
        max-width: 10ch;
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.08;
    }

    .solution-copy p {
        max-width: 30ch;
        font-size: 1rem;
    }

    .solution-copy .button-secondary {
        width: 100%;
        min-width: 0;
    }

    .orbit-screen-three {
        left: 15.8rem;
        top: 8.7rem;
    }

    .orbit-dot-two,
    .orbit-dot-three {
        display: none;
    }

    .graphic-hero-collage {
        min-height: auto;
        padding-right: 0;
        padding-bottom: 0;
        display: grid;
        gap: 0.9rem;
    }

    .graphic-collage-small {
        position: relative;
        width: 100%;
        height: 11rem;
        top: auto;
        right: auto;
        bottom: auto;
        border-width: 0;
    }

    .graphic-collage-main {
        height: 14rem;
    }

    .contact-copy h2 {
        max-width: none;
    }

    .page-home .home-nav-links,
    .page-home .home-support-btn {
        display: none;
    }

    .page-home .home-nav {
        height: auto;
        min-height: 86px;
    }

    .page-home .hero {
        min-height: auto;
        padding: 50px 0 80px;
    }

    .footer-reference-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-column a,
    .footer-cta {
        width: 100%;
    }

    .page-home .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .page-home .hero-copy h1 {
        letter-spacing: 0;
        font-size: clamp(2.3rem, 10vw, 3.5rem);
    }

    .page-home .home-snapshot-card {
        position: static;
        width: 100%;
        margin-top: 22px;
    }

    .page-home .home-services-grid {
        grid-template-columns: 1fr;
    }
}

.panel-card,
.leader-card,
.story-card,
.testimonial-card,
.trust-card,
.service-card,
.package-card,
.service-detail-card,
.support-note-card,
.contact-card,
.contact-highlights article,
.capability-list article,
.focus-stack article,
.metric-card,
.graphic-offer-card,
.graphic-highlight-card,
.graphic-panel-grid article,
.package-stat-grid article,
.home-dashboard-card,
.home-snapshot-card,
.page-home .home-services-grid article {
    color: var(--text);
}

.panel-card h1,
.panel-card h2,
.panel-card h3,
.leader-card h1,
.leader-card h2,
.leader-card h3,
.story-card h1,
.story-card h2,
.story-card h3,
.testimonial-card h1,
.testimonial-card h2,
.testimonial-card h3,
.trust-card h1,
.trust-card h2,
.trust-card h3,
.service-card h1,
.service-card h2,
.service-card h3,
.package-card h1,
.package-card h2,
.package-card h3,
.service-detail-card h1,
.service-detail-card h2,
.service-detail-card h3,
.support-note-card h1,
.support-note-card h2,
.support-note-card h3,
.contact-highlights h1,
.contact-highlights h2,
.contact-highlights h3,
.capability-list h1,
.capability-list h2,
.capability-list h3,
.focus-stack h1,
.focus-stack h2,
.focus-stack h3,
.metric-card strong,
.package-stat-grid strong,
.graphic-offer-card h1,
.graphic-offer-card h2,
.graphic-offer-card h3,
.graphic-highlight-card h1,
.graphic-highlight-card h2,
.graphic-highlight-card h3,
.graphic-panel-grid strong,
.home-dashboard-card h1,
.home-dashboard-card h2,
.home-dashboard-card h3,
.home-snapshot-card h1,
.home-snapshot-card h2,
.home-snapshot-card h3,
.page-home .home-services-grid h3 {
    color: var(--brand-deep);
}

.panel-card p,
.leader-card p,
.story-card p,
.testimonial-card p,
.trust-card p,
.service-card p,
.package-card p,
.service-detail-card p,
.support-note-card p,
.contact-card p,
.contact-highlights p,
.capability-list p,
.focus-stack p,
.metric-card span,
.package-stat-grid span,
.graphic-offer-card p,
.graphic-highlight-card p,
.graphic-panel-grid span,
.home-dashboard-card p,
.home-snapshot-card p,
.page-home .home-services-grid p {
    color: var(--muted);
}

:root[data-theme="dark"] .panel-card,
:root[data-theme="dark"] .leader-card,
:root[data-theme="dark"] .story-card,
:root[data-theme="dark"] .testimonial-card,
:root[data-theme="dark"] .trust-card,
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .package-card,
:root[data-theme="dark"] .service-detail-card,
:root[data-theme="dark"] .support-note-card,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .contact-highlights article,
:root[data-theme="dark"] .capability-list article,
:root[data-theme="dark"] .focus-stack article,
:root[data-theme="dark"] .metric-card,
:root[data-theme="dark"] .graphic-offer-card,
:root[data-theme="dark"] .graphic-highlight-card,
:root[data-theme="dark"] .graphic-panel-grid article,
:root[data-theme="dark"] .package-stat-grid article,
:root[data-theme="dark"] .home-dashboard-card,
:root[data-theme="dark"] .home-snapshot-card,
:root[data-theme="dark"] .page-home .home-services-grid article {
    border-color: rgba(239, 248, 244, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
        rgba(12, 27, 24, 0.92);
    color: #eff8f4;
}

:root[data-theme="dark"] .panel-card h1,
:root[data-theme="dark"] .panel-card h2,
:root[data-theme="dark"] .panel-card h3,
:root[data-theme="dark"] .leader-card h1,
:root[data-theme="dark"] .leader-card h2,
:root[data-theme="dark"] .leader-card h3,
:root[data-theme="dark"] .story-card h1,
:root[data-theme="dark"] .story-card h2,
:root[data-theme="dark"] .story-card h3,
:root[data-theme="dark"] .testimonial-card h1,
:root[data-theme="dark"] .testimonial-card h2,
:root[data-theme="dark"] .testimonial-card h3,
:root[data-theme="dark"] .trust-card h1,
:root[data-theme="dark"] .trust-card h2,
:root[data-theme="dark"] .trust-card h3,
:root[data-theme="dark"] .service-card h1,
:root[data-theme="dark"] .service-card h2,
:root[data-theme="dark"] .service-card h3,
:root[data-theme="dark"] .package-card h1,
:root[data-theme="dark"] .package-card h2,
:root[data-theme="dark"] .package-card h3,
:root[data-theme="dark"] .service-detail-card h1,
:root[data-theme="dark"] .service-detail-card h2,
:root[data-theme="dark"] .service-detail-card h3,
:root[data-theme="dark"] .support-note-card h1,
:root[data-theme="dark"] .support-note-card h2,
:root[data-theme="dark"] .support-note-card h3,
:root[data-theme="dark"] .contact-highlights h1,
:root[data-theme="dark"] .contact-highlights h2,
:root[data-theme="dark"] .contact-highlights h3,
:root[data-theme="dark"] .capability-list h1,
:root[data-theme="dark"] .capability-list h2,
:root[data-theme="dark"] .capability-list h3,
:root[data-theme="dark"] .focus-stack h1,
:root[data-theme="dark"] .focus-stack h2,
:root[data-theme="dark"] .focus-stack h3,
:root[data-theme="dark"] .metric-card strong,
:root[data-theme="dark"] .package-stat-grid strong,
:root[data-theme="dark"] .graphic-offer-card h1,
:root[data-theme="dark"] .graphic-offer-card h2,
:root[data-theme="dark"] .graphic-offer-card h3,
:root[data-theme="dark"] .graphic-highlight-card h1,
:root[data-theme="dark"] .graphic-highlight-card h2,
:root[data-theme="dark"] .graphic-highlight-card h3,
:root[data-theme="dark"] .graphic-panel-grid strong,
:root[data-theme="dark"] .home-dashboard-card h1,
:root[data-theme="dark"] .home-dashboard-card h2,
:root[data-theme="dark"] .home-dashboard-card h3,
:root[data-theme="dark"] .home-snapshot-card h1,
:root[data-theme="dark"] .home-snapshot-card h2,
:root[data-theme="dark"] .home-snapshot-card h3,
:root[data-theme="dark"] .page-home .home-services-grid h3 {
    color: #f6fffb;
}

:root[data-theme="dark"] .panel-card p,
:root[data-theme="dark"] .leader-card p,
:root[data-theme="dark"] .story-card p,
:root[data-theme="dark"] .testimonial-card p,
:root[data-theme="dark"] .trust-card p,
:root[data-theme="dark"] .service-card p,
:root[data-theme="dark"] .package-card p,
:root[data-theme="dark"] .service-detail-card p,
:root[data-theme="dark"] .support-note-card p,
:root[data-theme="dark"] .contact-card p,
:root[data-theme="dark"] .contact-highlights p,
:root[data-theme="dark"] .capability-list p,
:root[data-theme="dark"] .focus-stack p,
:root[data-theme="dark"] .metric-card span,
:root[data-theme="dark"] .package-stat-grid span,
:root[data-theme="dark"] .graphic-offer-card p,
:root[data-theme="dark"] .graphic-highlight-card p,
:root[data-theme="dark"] .graphic-panel-grid span,
:root[data-theme="dark"] .home-dashboard-card p,
:root[data-theme="dark"] .home-snapshot-card p,
:root[data-theme="dark"] .page-home .home-services-grid p {
    color: #c9d8d3;
}

:root[data-theme="dark"] .page-app-development .service-detail-card {
    border-color: rgba(143, 231, 220, 0.3);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(8, 23, 21, 0.98), rgba(11, 42, 38, 0.96));
}

:root[data-theme="dark"] .page-app-development .service-detail-card h3 {
    color: #f6fffb;
}

:root[data-theme="dark"] .page-app-development .service-detail-card p {
    color: #c9d8d3;
}

:root[data-theme="dark"] .focus-stack article {
    border-color: rgba(143, 231, 220, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(10, 24, 22, 0.96);
}

:root[data-theme="dark"] .focus-stack h3 {
    color: #f6fffb;
}

:root[data-theme="dark"] .focus-stack p {
    color: #c9d8d3;
}

:root[data-theme="dark"] .panel-label {
    color: #f6fffb;
}

.page-app-development .hero-visual {
    position: relative;
    display: block;
}

.page-app-development .hero-visual img {
    display: block;
    width: 100%;
    min-height: 28rem;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}

.page-app-development .glass-card {
    position: absolute;
    width: 220px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.page-app-development .glass-card span {
    display: inline-block;
    background: #ffb347;
    color: black;
    padding: 6px 10px;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-app-development .glass-card h4 {
    margin: 0 0 0.45rem;
    color: #fff;
    font-size: 1rem;
}

.page-app-development .glass-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.45;
}

.page-app-development .glass-card.one {
    top: 20px;
    left: -30px;
}

.page-app-development .glass-card.two {
    bottom: 20px;
    right: -30px;
}

@media (max-width: 760px) {
    .page-app-development .hero-visual {
        display: grid;
        gap: 1rem;
    }

    .page-app-development .hero-visual img {
        min-height: 18rem;
    }

    .page-app-development .glass-card,
    .page-app-development .glass-card.one,
    .page-app-development .glass-card.two {
        position: static;
        width: 100%;
    }
}

.app-hero {
  min-height: calc(100vh - 86px);
  padding: 60px 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(91,231,215,.18), transparent 28%),
    linear-gradient(135deg, #155d86, #0d4265 55%, #082f47);
  color: white;
  overflow: hidden;
}

.app-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.65rem, 4.2vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}

.app-hero-copy .hero-text {
  max-width: 560px;
  font-size: 1rem;
  color: #c6dce4;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
}

.hero-points li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}

/* VISUAL */
.app-hero-visual {
  position: relative;
  min-height: 520px;
}

.dashboard-window {
  width: 92%;
  margin-left: auto;
  background: #f8fbff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
}

.window-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: #edf3f7;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c9d5dd;
}

.dashboard-content {
  height: 360px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 20px;
}

.dash-sidebar {
  border-radius: 16px;
  background: linear-gradient(#0b7669, #0b4d6e);
}

.dash-main {
  background: #edf6f7;
  border-radius: 16px;
  padding: 18px;
}

.dash-line {
  height: 14px;
  width: 55%;
  background: #b9cbd4;
  border-radius: 999px;
  margin-bottom: 12px;
}

.dash-line.wide {
  width: 75%;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.dash-cards div {
  height: 70px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6be7d7, #1c83b6);
}

.dash-chart {
  height: 90px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffad4d, #6be7d7);
}

/* PHONE */
.phone-mockup {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 150px;
  height: 300px;
  border-radius: 28px;
  background: #071d1a;
  border: 6px solid #e9f4f6;
  padding: 24px 14px;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 60px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #e9f4f6;
}

.phone-circle {
  width: 60px;
  height: 60px;
  margin: 20px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6be7d7, #ffad4d);
}

.phone-line {
  height: 10px;
  background: rgba(255,255,255,.5);
  border-radius: 999px;
  margin-bottom: 10px;
}

.phone-line.short {
  width: 60%;
}

.phone-btn {
  height: 40px;
  margin-top: 20px;
  border-radius: 999px;
  background: #6be7d7;
}

/* GLASS CARDS */
.glass-card {
  position: absolute;
  width: 210px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(3, 18, 22, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(107, 231, 215, .35);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  color: #ffffff;
  z-index: 20;
}

.glass-card strong,
.glass-card h4 {
  color: #ffffff;
}

.glass-card small,
.glass-card p {
  color: #d8f4f1;
  opacity: 1;
}

.glass-card span {
  display: inline-block;
  background: #ffad4d;
  padding: 6px 10px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

.glass-one {
  top: 40px;
  left: 0;
}

.glass-two {
  bottom: 40px;
  right: 0;
}

/* MOBILE */
@media (max-width: 950px) {
  .app-hero-grid {
    grid-template-columns: 1fr;
  }

  .app-hero-visual {
    min-height: auto;
  }

  .phone-mockup {
    display: none;
  }

  .glass-card {
    position: static;
    margin-top: 16px;
    width: 100%;
  }
}

/* =========================
   App Hero Animations
========================= */

.app-hero-copy {
  animation: fadeSlideUp .8s ease both;
}

.app-hero-visual {
  animation: fadeSlideUp .9s ease .15s both;
}

.dashboard-window {
  animation: floatDashboard 6s ease-in-out infinite;
}

.phone-mockup {
  animation: floatPhone 5s ease-in-out infinite;
}

.glass-one {
  animation: floatGlassOne 5.5s ease-in-out infinite;
}

.glass-two {
  animation: floatGlassTwo 6s ease-in-out infinite;
}

.dash-cards div {
  animation: pulseCard 3s ease-in-out infinite;
}

.dash-cards div:nth-child(2) {
  animation-delay: .3s;
}

.dash-cards div:nth-child(3) {
  animation-delay: .6s;
}

.button,
.hero-points li,
.glass-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.hero-points li:hover,
.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 231, 215, .45);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

@keyframes floatDashboard {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

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

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatGlassOne {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatGlassTwo {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

@keyframes pulseCard {
  0%, 100% {
    opacity: .95;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* Respect accessibility preferences */
@media (prefers-reduced-motion: reduce) {
  .app-hero-copy,
  .app-hero-visual,
  .dashboard-window,
  .phone-mockup,
  .glass-card,
  .dash-cards div {
    animation: none !important;
  }

  .button,
  .hero-points li,
  .glass-card {
    transition: none !important;
  }
}

.glass-card {
  position: absolute;
  width: 200px;
  padding: 16px;
  border-radius: 20px;

  background: rgba(10, 30, 35, 0.55); /* darker */
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);

  color: #ffffff;
}

.glass-card small {
  color: #d9edf4;
}

.dashboard-window {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.app-hero-visual {
  min-height: auto;
}

.dashboard-window:hover {
  transform: translateY(-6px) scale(1.01);
}

.phone-mockup:hover {
  transform: translateY(-10px) scale(1.02);
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Final dark-theme contrast pass. Keep this at the end so older muted rules cannot dim readable text. */
:root[data-theme="dark"] {
    --text: #f6fffb;
    --muted: #d8e8e2;
    --brand-deep: #f6fffb;
}

:root[data-theme="dark"] body,
:root[data-theme="dark"] p,
:root[data-theme="dark"] li,
:root[data-theme="dark"] label,
:root[data-theme="dark"] dt,
:root[data-theme="dark"] dd,
:root[data-theme="dark"] .hero-text,
:root[data-theme="dark"] .section-heading p,
:root[data-theme="dark"] .split-copy p,
:root[data-theme="dark"] .contact-copy p,
:root[data-theme="dark"] .service-card p,
:root[data-theme="dark"] .package-card p,
:root[data-theme="dark"] .panel-card p,
:root[data-theme="dark"] .leader-card p,
:root[data-theme="dark"] .story-card p,
:root[data-theme="dark"] .testimonial-card p,
:root[data-theme="dark"] .trust-card p,
:root[data-theme="dark"] .service-detail-card p,
:root[data-theme="dark"] .support-note-card p,
:root[data-theme="dark"] .contact-card p,
:root[data-theme="dark"] .contact-highlights p,
:root[data-theme="dark"] .capability-list p,
:root[data-theme="dark"] .focus-stack p,
:root[data-theme="dark"] .graphic-offer-card p,
:root[data-theme="dark"] .graphic-highlight-card p,
:root[data-theme="dark"] .graphic-showcase-copy p,
:root[data-theme="dark"] .web-panel-grid span,
:root[data-theme="dark"] .graphic-panel-grid span,
:root[data-theme="dark"] .package-stat-grid span,
:root[data-theme="dark"] .metric-card span,
:root[data-theme="dark"] .mini-list,
:root[data-theme="dark"] .feature-list,
:root[data-theme="dark"] .footer-brand-panel p,
:root[data-theme="dark"] .footer-reference-bottom,
:root[data-theme="dark"] .footer-reference-bottom p {
    color: #d8e8e2;
    opacity: 1;
}

:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3,
:root[data-theme="dark"] strong,
:root[data-theme="dark"] .panel-card h1,
:root[data-theme="dark"] .panel-card h2,
:root[data-theme="dark"] .panel-card h3,
:root[data-theme="dark"] .leader-card h1,
:root[data-theme="dark"] .leader-card h2,
:root[data-theme="dark"] .leader-card h3,
:root[data-theme="dark"] .story-card h1,
:root[data-theme="dark"] .story-card h2,
:root[data-theme="dark"] .story-card h3,
:root[data-theme="dark"] .service-card h1,
:root[data-theme="dark"] .service-card h2,
:root[data-theme="dark"] .service-card h3,
:root[data-theme="dark"] .package-card h1,
:root[data-theme="dark"] .package-card h2,
:root[data-theme="dark"] .package-card h3,
:root[data-theme="dark"] .service-detail-card h1,
:root[data-theme="dark"] .service-detail-card h2,
:root[data-theme="dark"] .service-detail-card h3,
:root[data-theme="dark"] .support-note-card h1,
:root[data-theme="dark"] .support-note-card h2,
:root[data-theme="dark"] .support-note-card h3,
:root[data-theme="dark"] .numbered-service-card h3,
:root[data-theme="dark"] .step-service-card h3,
:root[data-theme="dark"] .graphic-panel-grid strong,
:root[data-theme="dark"] .web-panel-grid strong,
:root[data-theme="dark"] .package-stat-grid strong,
:root[data-theme="dark"] .testimonial-name,
:root[data-theme="dark"] .leader-label,
:root[data-theme="dark"] .panel-label {
    color: #f6fffb;
    opacity: 1;
}

:root[data-theme="dark"] .eyebrow,
:root[data-theme="dark"] .leader-role,
:root[data-theme="dark"] .testimonial-role,
:root[data-theme="dark"] .card-kicker,
:root[data-theme="dark"] .service-kicker,
:root[data-theme="dark"] .panel-chip,
:root[data-theme="dark"] .site-nav a,
:root[data-theme="dark"] .site-submenu a,
:root[data-theme="dark"] .mobile-drawer-panel a,
:root[data-theme="dark"] .mobile-submenu summary,
:root[data-theme="dark"] .footer-column a,
:root[data-theme="dark"] .footer-meta-links a {
    color: #e8f7f2;
    opacity: 1;
}

:root[data-theme="dark"] input::placeholder,
:root[data-theme="dark"] textarea::placeholder {
    color: #b8cbc4;
    opacity: 1;
}

:root[data-theme="dark"] .section-accent .hero-text,
:root[data-theme="dark"] .section-accent .support-note-card p,
:root[data-theme="dark"] .solution-copy p,
:root[data-theme="dark"] .app-hero-copy .hero-text,
:root[data-theme="dark"] .glass-card p,
:root[data-theme="dark"] .glass-card small,
:root[data-theme="dark"] .page-home .hero-text,
:root[data-theme="dark"] .page-graphic-design .hero-copy .hero-text,
:root[data-theme="dark"] .page-web-design .hero-copy .hero-text,
:root[data-theme="dark"] .page-bulk-sms .hero-copy .hero-text {
    color: #e2f2ec;
    opacity: 1;
}

:root[data-theme="dark"] .page-home .home-focus-item.active {
    background: #f4f8f8;
    color: #10232f;
}

:root[data-theme="dark"] .page-home .home-focus-item.active h3 {
    color: #10232f;
    opacity: 1;
}

:root[data-theme="dark"] .page-home .home-focus-item.active p {
    color: #4d5f68;
    opacity: 1;
}

:root[data-theme="dark"] .page-home .home-focus-item strong {
    color: #ffffff;
    opacity: 1;
}

/* Final light-theme contrast pass. Keep text crisp when older translucent styles cascade through. */
:root:not([data-theme="dark"]) {
    --text: #111b22;
    --muted: #35424c;
    --brand-deep: #062f2c;
}

:root:not([data-theme="dark"]) body,
:root:not([data-theme="dark"]) p,
:root:not([data-theme="dark"]) li,
:root:not([data-theme="dark"]) label,
:root:not([data-theme="dark"]) dt,
:root:not([data-theme="dark"]) dd,
:root:not([data-theme="dark"]) .hero-text,
:root:not([data-theme="dark"]) .section-heading p,
:root:not([data-theme="dark"]) .split-copy p,
:root:not([data-theme="dark"]) .contact-copy p,
:root:not([data-theme="dark"]) .service-card p,
:root:not([data-theme="dark"]) .package-card p,
:root:not([data-theme="dark"]) .panel-card p,
:root:not([data-theme="dark"]) .leader-card p,
:root:not([data-theme="dark"]) .story-card p,
:root:not([data-theme="dark"]) .testimonial-card p,
:root:not([data-theme="dark"]) .trust-card p,
:root:not([data-theme="dark"]) .service-detail-card p,
:root:not([data-theme="dark"]) .support-note-card p,
:root:not([data-theme="dark"]) .contact-card p,
:root:not([data-theme="dark"]) .contact-highlights p,
:root:not([data-theme="dark"]) .capability-list p,
:root:not([data-theme="dark"]) .focus-stack p,
:root:not([data-theme="dark"]) .graphic-offer-card p,
:root:not([data-theme="dark"]) .graphic-highlight-card p,
:root:not([data-theme="dark"]) .graphic-showcase-copy p,
:root:not([data-theme="dark"]) .web-panel-grid span,
:root:not([data-theme="dark"]) .graphic-panel-grid span,
:root:not([data-theme="dark"]) .package-stat-grid span,
:root:not([data-theme="dark"]) .metric-card span,
:root:not([data-theme="dark"]) .mini-list,
:root:not([data-theme="dark"]) .feature-list,
:root:not([data-theme="dark"]) .footer-brand-panel p,
:root:not([data-theme="dark"]) .footer-reference-bottom,
:root:not([data-theme="dark"]) .footer-reference-bottom p {
    color: #35424c;
    opacity: 1;
}

:root:not([data-theme="dark"]) h1,
:root:not([data-theme="dark"]) h2,
:root:not([data-theme="dark"]) h3,
:root:not([data-theme="dark"]) strong,
:root:not([data-theme="dark"]) .panel-card h1,
:root:not([data-theme="dark"]) .panel-card h2,
:root:not([data-theme="dark"]) .panel-card h3,
:root:not([data-theme="dark"]) .leader-card h1,
:root:not([data-theme="dark"]) .leader-card h2,
:root:not([data-theme="dark"]) .leader-card h3,
:root:not([data-theme="dark"]) .story-card h1,
:root:not([data-theme="dark"]) .story-card h2,
:root:not([data-theme="dark"]) .story-card h3,
:root:not([data-theme="dark"]) .service-card h1,
:root:not([data-theme="dark"]) .service-card h2,
:root:not([data-theme="dark"]) .service-card h3,
:root:not([data-theme="dark"]) .package-card h1,
:root:not([data-theme="dark"]) .package-card h2,
:root:not([data-theme="dark"]) .package-card h3,
:root:not([data-theme="dark"]) .service-detail-card h1,
:root:not([data-theme="dark"]) .service-detail-card h2,
:root:not([data-theme="dark"]) .service-detail-card h3,
:root:not([data-theme="dark"]) .support-note-card h1,
:root:not([data-theme="dark"]) .support-note-card h2,
:root:not([data-theme="dark"]) .support-note-card h3,
:root:not([data-theme="dark"]) .numbered-service-card h3,
:root:not([data-theme="dark"]) .step-service-card h3,
:root:not([data-theme="dark"]) .graphic-panel-grid strong,
:root:not([data-theme="dark"]) .web-panel-grid strong,
:root:not([data-theme="dark"]) .package-stat-grid strong,
:root:not([data-theme="dark"]) .testimonial-name,
:root:not([data-theme="dark"]) .leader-label,
:root:not([data-theme="dark"]) .panel-label {
    color: #111b22;
    opacity: 1;
}

:root:not([data-theme="dark"]) .eyebrow,
:root:not([data-theme="dark"]) .leader-role,
:root:not([data-theme="dark"]) .testimonial-role,
:root:not([data-theme="dark"]) .card-kicker,
:root:not([data-theme="dark"]) .service-kicker,
:root:not([data-theme="dark"]) .panel-chip,
:root:not([data-theme="dark"]) .site-nav a,
:root:not([data-theme="dark"]) .site-submenu a,
:root:not([data-theme="dark"]) .mobile-drawer-panel a,
:root:not([data-theme="dark"]) .mobile-submenu summary,
:root:not([data-theme="dark"]) .footer-column a,
:root:not([data-theme="dark"]) .footer-meta-links a {
    opacity: 1;
}

:root:not([data-theme="dark"]) input::placeholder,
:root:not([data-theme="dark"]) textarea::placeholder {
    color: #65717a;
    opacity: 1;
}

:root:not([data-theme="dark"]) .hero .hero-copy h1,
:root:not([data-theme="dark"]) .hero .hero-copy h2,
:root:not([data-theme="dark"]) .hero .hero-copy h3 {
    color: #ffffff;
}

:root:not([data-theme="dark"]) .hero .hero-copy .eyebrow,
:root:not([data-theme="dark"]) .hero .hero-copy .hero-text,
:root:not([data-theme="dark"]) .hero .hero-points li {
    color: #eaf6f8;
    opacity: 1;
}

:root:not([data-theme="dark"]) .hero .button-secondary {
    color: #111b22;
}

:root:not([data-theme="dark"]) .solution-copy,
:root:not([data-theme="dark"]) .solution-copy h1,
:root:not([data-theme="dark"]) .solution-copy h2,
:root:not([data-theme="dark"]) .solution-copy h3,
:root:not([data-theme="dark"]) .solution-copy strong {
    color: #ffffff;
    opacity: 1;
}

:root:not([data-theme="dark"]) .solution-copy .eyebrow,
:root:not([data-theme="dark"]) .solution-copy p {
    color: #eaf6f8;
    opacity: 1;
}

:root:not([data-theme="dark"]) .solution-copy .button-secondary {
    color: #ffffff;
}

:root:not([data-theme="dark"]) .why-hero h1,
:root:not([data-theme="dark"]) .why-hero h2,
:root:not([data-theme="dark"]) .why-hero h3,
:root:not([data-theme="dark"]) .why-hero strong {
    color: #ffffff;
}

:root:not([data-theme="dark"]) .why-hero .eyebrow,
:root:not([data-theme="dark"]) .why-hero p,
:root:not([data-theme="dark"]) .why-hero-panel span {
    color: #eaf6f8;
    opacity: 1;
}

:root:not([data-theme="dark"]) .why-hero .button-secondary {
    color: #111b22;
}

:root:not([data-theme="dark"]) .site-footer,
:root:not([data-theme="dark"]) .site-footer p,
:root:not([data-theme="dark"]) .footer-brand-panel p,
:root:not([data-theme="dark"]) .footer-reference-bottom,
:root:not([data-theme="dark"]) .footer-reference-bottom p {
    color: #d8e8e2;
    opacity: 1;
}

:root:not([data-theme="dark"]) .footer-column h2 {
    color: #f6fffb;
    opacity: 1;
}

:root:not([data-theme="dark"]) .footer-column a,
:root:not([data-theme="dark"]) .footer-meta-links a {
    color: #e8f7f2;
    opacity: 1;
}

:root:not([data-theme="dark"]) .footer-column a:hover,
:root:not([data-theme="dark"]) .footer-column a:focus-visible,
:root:not([data-theme="dark"]) .footer-meta-links a:hover,
:root:not([data-theme="dark"]) .footer-meta-links a:focus-visible {
    color: #ffffff;
}

:root:not([data-theme="dark"]) .app-hero,
:root:not([data-theme="dark"]) .app-hero h1,
:root:not([data-theme="dark"]) .app-hero h2,
:root:not([data-theme="dark"]) .app-hero h3,
:root:not([data-theme="dark"]) .app-hero h4,
:root:not([data-theme="dark"]) .app-hero strong {
    color: #ffffff;
    opacity: 1;
}

:root:not([data-theme="dark"]) .app-hero .eyebrow,
:root:not([data-theme="dark"]) .app-hero-copy .hero-text,
:root:not([data-theme="dark"]) .app-hero .hero-points li,
:root:not([data-theme="dark"]) .app-hero .glass-card p,
:root:not([data-theme="dark"]) .app-hero .glass-card small {
    color: #e2f2ec;
    opacity: 1;
}

:root:not([data-theme="dark"]) .app-hero .hero-points li {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.13);
}

:root:not([data-theme="dark"]) .app-hero .button-secondary {
    color: #111b22;
}

:root:not([data-theme="dark"]) .page-app-development .service-detail-card h3 {
    color: #f6fffb;
    opacity: 1;
}

:root:not([data-theme="dark"]) .page-app-development .service-detail-card p {
    color: #d8e8e2;
    opacity: 1;
}

:root:not([data-theme="dark"]) .page-app-development .service-detail-card .service-kicker {
    color: #071210;
    opacity: 1;
}

:root[data-theme="dark"] .page-home .home-services,
:root[data-theme="dark"] .page-home .section-reference {
    background:
        linear-gradient(90deg, rgba(143, 231, 220, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(143, 231, 220, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #081715 0%, #0b1d1a 100%);
    background-size: 48px 48px, 48px 48px, auto;
}

:root[data-theme="dark"] .page-home .home-section-heading .eyebrow,
:root[data-theme="dark"] .page-home .vision-copy .eyebrow {
    color: #8fe7dc;
    opacity: 1;
}

:root[data-theme="dark"] .page-home .home-section-heading h2,
:root[data-theme="dark"] .page-home .vision-copy h2,
:root[data-theme="dark"] .page-home .vision-copy-grid article h3,
:root[data-theme="dark"] .page-home .vision-icon-card strong {
    color: #f6fffb;
    opacity: 1;
}

:root[data-theme="dark"] .page-home .vision-copy-grid article p {
    color: #d8e8e2;
    opacity: 1;
}

:root[data-theme="dark"] .page-home .vision-copy::before {
    background: rgba(143, 231, 220, 0.28);
}

:root[data-theme="dark"] .page-home .vision-icon-card {
    color: #f6fffb;
}

:root[data-theme="dark"] .page-home .vision-icon,
:root[data-theme="dark"] .page-home .vision-icon::before,
:root[data-theme="dark"] .page-home .vision-icon::after {
    border-color: rgba(216, 232, 226, 0.72);
}

/* Launch polish: subtle glass and technology feel without changing layouts. */
.panel-card,
.service-card,
.leader-card,
.story-card,
.testimonial-card,
.trust-card,
.service-detail-card,
.numbered-service-card,
.step-service-card,
.why-value-card,
.portfolio-card,
.package-price-card,
.home-dashboard-card,
.home-snapshot-card,
.footer-brand-panel {
    position: relative;
    isolation: isolate;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.panel-card::after,
.service-card::after,
.leader-card::after,
.story-card::after,
.testimonial-card::after,
.trust-card::after,
.service-detail-card::after,
.numbered-service-card::after,
.step-service-card::after,
.why-value-card::after,
.portfolio-card::after,
.package-price-card::after,
.home-dashboard-card::after,
.home-snapshot-card::after,
.footer-brand-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(315deg, rgba(143, 231, 220, 0.1), transparent 42%);
    opacity: 0.42;
    pointer-events: none;
    z-index: -1;
}

.service-card,
.package-price-card,
.why-value-card,
.portfolio-card,
.service-detail-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.package-price-card:hover,
.why-value-card:hover,
.portfolio-card:hover,
.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 118, 110, 0.32);
    box-shadow: 0 24px 64px rgba(22, 33, 41, 0.14);
}

:root[data-theme="dark"] .service-card:hover,
:root[data-theme="dark"] .package-price-card:hover,
:root[data-theme="dark"] .why-value-card:hover,
:root[data-theme="dark"] .portfolio-card:hover,
:root[data-theme="dark"] .service-detail-card:hover {
    border-color: rgba(143, 231, 220, 0.42);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

:root[data-theme="dark"] .package-pricing-section {
    background:
        linear-gradient(90deg, rgba(143, 231, 220, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(143, 231, 220, 0.045) 1px, transparent 1px),
        linear-gradient(135deg, #071714 0%, #10231f 52%, #172520 100%);
    background-size: 42px 42px, 42px 42px, auto;
}

:root[data-theme="dark"] .package-price-card {
    border-color: rgba(143, 231, 220, 0.24);
    background:
        linear-gradient(180deg, rgba(15, 38, 35, 0.96), rgba(8, 24, 22, 0.94)),
        #0b1d1a;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

:root[data-theme="dark"] .package-price-card::after {
    background:
        linear-gradient(135deg, rgba(143, 231, 220, 0.14), transparent 34%),
        linear-gradient(315deg, rgba(255, 173, 85, 0.08), transparent 42%);
    opacity: 0.55;
}

:root[data-theme="dark"] .package-price-head {
    border-bottom-color: rgba(143, 231, 220, 0.18);
}

:root[data-theme="dark"] .package-price-head h3,
:root[data-theme="dark"] .package-price strong {
    color: #f6fffb;
}

:root[data-theme="dark"] .package-price,
:root[data-theme="dark"] .package-price span,
:root[data-theme="dark"] .package-price-head p,
:root[data-theme="dark"] .package-price-features {
    color: #d8e8e2;
    opacity: 1;
}

:root[data-theme="dark"] .package-price-features li + li {
    border-top-color: rgba(143, 231, 220, 0.16);
}

:root[data-theme="dark"] .proof-grid article,
:root[data-theme="dark"] .numbered-service-card,
:root[data-theme="dark"] .step-service-card,
:root[data-theme="dark"] .service-detail-card,
:root[data-theme="dark"] .package-deliverable-card,
:root[data-theme="dark"] .capability-list article,
:root[data-theme="dark"] .contact-highlights article {
    border-color: rgba(143, 231, 220, 0.2);
    background:
        linear-gradient(180deg, rgba(15, 38, 35, 0.96), rgba(8, 24, 22, 0.94)),
        #0b1d1a;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .proof-grid article::after,
:root[data-theme="dark"] .numbered-service-card::after,
:root[data-theme="dark"] .step-service-card::after,
:root[data-theme="dark"] .service-detail-card::after,
:root[data-theme="dark"] .package-deliverable-card::after {
    background:
        linear-gradient(135deg, rgba(143, 231, 220, 0.14), transparent 34%),
        linear-gradient(315deg, rgba(255, 173, 85, 0.08), transparent 42%);
    opacity: 0.48;
}

:root[data-theme="dark"] .proof-grid strong,
:root[data-theme="dark"] .numbered-service-card h3,
:root[data-theme="dark"] .step-service-card h3,
:root[data-theme="dark"] .service-detail-card h3,
:root[data-theme="dark"] .package-deliverable-card h3,
:root[data-theme="dark"] .capability-list article h3,
:root[data-theme="dark"] .contact-highlights strong {
    color: #f6fffb;
    opacity: 1;
}

:root[data-theme="dark"] .proof-grid p,
:root[data-theme="dark"] .numbered-service-card p,
:root[data-theme="dark"] .step-service-card p,
:root[data-theme="dark"] .service-detail-card p,
:root[data-theme="dark"] .package-deliverable-card p,
:root[data-theme="dark"] .capability-list article p,
:root[data-theme="dark"] .contact-highlights p {
    color: #d8e8e2;
    opacity: 1;
}

:root[data-theme="dark"] .numbered-service-card span,
:root[data-theme="dark"] .step-service-card span,
:root[data-theme="dark"] .service-kicker,
:root[data-theme="dark"] .card-kicker {
    background: rgba(143, 231, 220, 0.14);
    color: #8fe7dc;
    opacity: 1;
}

:root[data-theme="dark"] .service-media-copy .feature-list li {
    border-color: rgba(143, 231, 220, 0.2);
    background:
        linear-gradient(180deg, rgba(15, 38, 35, 0.96), rgba(8, 24, 22, 0.94)),
        #0b1d1a;
    color: #f6fffb;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    opacity: 1;
}
