/* WebDesign landing — custom layout + utilities */

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

:root {
    /* Brand palette */
    --deep-navy: #0F172A;
    --royal-blue: #2563EB;
    --cyan: #06B6D4;
    --dark-gray: #1E293B;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;

    /* Semantic tokens */
    --bg: var(--white);
    --header-bg: var(--dark-gray);
    --surface: var(--dark-gray);
    --surface-elevated: #243447;
    --text: #000000;
    --muted: #64748B;
    --nav-muted: #64748B;
    --border: rgba(15, 23, 42, 0.12);
    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.2);
    --accent: var(--royal-blue);
    --accent-hover: #1D4ED8;
    --accent-secondary: var(--cyan);
    --button-radius: 12px;

    --h1-size: clamp(2.5rem, 5.5vw, 4rem);
    --h2-size: 36px;
    --h3-size: 1.125rem;
    --h4-size: 1rem;
    --cta-title-size: 60px;

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --section-y: 60px;
    --container-max: 1320px;
    --gutter: 12px;
    --nav-toggler-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231E293B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: calc(var(--gutter) * -1);
}

.row > [class*="col-"] {
    width: 100%;
    padding-inline: var(--gutter);
}

.row--gap { row-gap: 1.5rem; }
.row--gap-sm { row-gap: 1rem; }
.row--gap-lg { row-gap: 1.5rem; }
.row--gap-y { row-gap: 1.5rem; }
.row--flush { margin-inline: 0; }
.row--flush > [class*="col-"] { padding-inline: 0; }
.row--stretch { align-items: stretch; }
.align-start { align-items: flex-start; }
.align-center { align-items: center; }

.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 768px) {
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    .order-lg-1 { order: 1; }
    .order-lg-2 { order: 2; }
    .row--gap-lg { row-gap: 3rem; }
    .row--gap-y { row-gap: 0; }
    .hero-copy-push { margin-top: auto; }
}

@media (min-width: 1200px) {
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .row--gap { row-gap: 3rem; }
}

.order-1 { order: 1; }
.order-2 { order: 2; }

/* Utilities */
.block { display: block; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.text-uppercase { text-transform: uppercase; }
.text-end { text-align: right; }
.text-center-bar { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1.5rem; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 0.75rem; }
.icon-gap { margin-left: 0.25rem; }
.img-fluid { max-width: 100%; height: auto; display: block; }
.section-pad { padding-block: 1.5rem; }
.bg-light { background-color: var(--light-gray); }

@media (min-width: 768px) {
    .gap-md { gap: 1rem; }
}

/* Scroll-reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.44s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.51s; }

/* Hero entrance (plays immediately on load, no scroll trigger) */
@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fade-in > * {
    opacity: 0;
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-fade-in > *:nth-child(1) { animation-delay: 0.05s; }
.hero-fade-in > *:nth-child(2) { animation-delay: 0.15s; }
.hero-fade-in > *:nth-child(3) { animation-delay: 0.25s; }
.hero-fade-in > *:nth-child(4) { animation-delay: 0.35s; }

/* Stats block (5th child) holds the LCP text ("500+") — keep it painted
   immediately instead of hiding it behind the entrance animation. */
.hero-fade-in > *:nth-child(5) {
    opacity: 1;
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > *,
    .hero-fade-in > * {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (min-width: 992px) {
    .section-pad { padding-block: 3rem; }
}

/* Site header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 4.5rem;
}

.site-header__brand {
    justify-self: start;
}

.site-header__brand a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;

    color: var(--deep-navy);
    text-decoration: none;
}

.site-header__brand a span {
    color: var(--royal-blue);
}

.site-header__brand img {
    display: block;
    height: 2.25rem;
    width: auto;
}

@media (max-width: 575.98px) {
    .site-header__brand img {
        height: 1.75rem;
    }
}

.site-header__logo-icon {
    display: inline-flex;
    flex-shrink: 0;
}

.site-header__logo-icon svg {
    display: block;
}

.site-header__nav {
    justify-self: center;
}

.site-header__nav ul {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__nav li {
    margin: 0;
}

.site-header__nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] {
    color: var(--royal-blue);
}

.site-header__cta {
    justify-self: end;
}

.site-header__cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.35rem;
    border-radius: var(--button-radius);
    background: var(--deep-navy);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header__cta a:hover {
    background: #0b1220;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.site-header__toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    grid-column: 3;
    border: 1px solid rgba(30, 41, 59, 0.15);
    border-radius: 0.5rem;
    background: var(--white);
    padding: 0.4rem 0.55rem;
    cursor: pointer;
}

.site-header__toggler-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: var(--nav-toggler-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.site-header__nav,
.site-header__cta {
    display: none;
}

@media (min-width: 992px) {
    .site-header__inner {
        grid-template-columns: 1fr auto 1fr;
    }

    .site-header__nav,
    .site-header__cta {
        display: block;
    }

    .site-header__toggler {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .site-header__brand {
        grid-column: 1;
    }

    .site-header__toggler {
        grid-column: 2;
    }
}

/* Mobile menu */
.site-header__mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__mobile-nav a {
    display: block;
    padding: 0.95rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 41, 59, 0.08);
    transition: color 0.2s ease;
}

.site-header__mobile-nav li:last-child a {
    border-bottom: 0;
}

.site-header__mobile-nav a:hover,
.site-header__mobile-nav a[aria-current="page"] {
    color: var(--royal-blue);
}

.site-header__mobile-cta {
    margin-top: 1.25rem;
}

.site-header__mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: var(--button-radius);
    background: var(--deep-navy);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
}

.site-header__mobile-cta a:hover {
    background: #0b1220;
}

.offcanvas-panel.webdesign-offcanvas {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    width: min(20rem, 88vw);
}

.webdesign-offcanvas .offcanvas-panel__header {
    border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.webdesign-offcanvas .offcanvas-panel__close::before,
.webdesign-offcanvas .offcanvas-panel__close::after {
    background: var(--deep-navy);
}

/* Offcanvas panel */
.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.offcanvas-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.offcanvas-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    width: min(20rem, 88vw);
    height: 100%;
    background-color: var(--header-bg);
    color: var(--text);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.offcanvas-panel.is-open {
    transform: translateX(0);
    visibility: visible;
}

.offcanvas-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.offcanvas-panel__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.45rem;
    overflow-y: auto;
}

.offcanvas-panel__close {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 0.25rem;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.offcanvas-panel__close::before,
.offcanvas-panel__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    background: var(--light-gray);
    transform-origin: center;
}

.offcanvas-panel__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.offcanvas-panel__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

body.offcanvas-open {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

body.webdesign-page {
    font-family: var(--font);
    background-color: var(--white) !important;
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.webdesign-page button,
body.webdesign-page input,
body.webdesign-page textarea,
body.webdesign-page select {
    font-family: var(--font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

h1 {
    font-size: var(--h1-size);
    font-weight: 600;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 600;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 600;
}

h4 {
    font-size: var(--h4-size);
    font-weight: 600;
}

@media (max-width: 767.98px) {
    :root {
        --h1-size: 2rem;
        --h2-size: 28px;
        --h3-size: 1rem;
        --h4-size: 0.9375rem;
        --cta-title-size: 40px;
    }

    .hero-banner__card h2 {
        font-size: 16px;
    }

    .services-card h3,
    .why-us__card h3,
    .process-step h3,
    .portfolio-card__body h3 {
        font-size: 1rem;
    }

    .stats-banner__value {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .footer-cta-band-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        --h1-size: 1.75rem;
        --h2-size: 24px;
        --h3-size: 0.9375rem;
        --h4-size: 0.875rem;
        --cta-title-size: 32px;
    }

    .hero-banner__card h2 {
        font-size: 14px;
    }

    .services-card h3,
    .portfolio-card__body h3 {
        font-size: 0.9375rem;
    }

    .hero-banner__stat-value {
        font-size: 1.5rem;
    }
}

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

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

ul {
    list-style: none;
}
p{
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}
.webdesign-navbar {
    background-color: var(--header-bg) !important;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.webdesign-navbar-border {
    border-color: var(--border-subtle) !important;
    padding: 0;
}

.webdesign-brand {
    font-size: 1rem !important;
    font-weight: 500;
    color: var(--text) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.webdesign-brand-logo {
    width: 100px;
    display: block;
    flex-shrink: 0;
    filter: invert(1);
}
.webdesign-nav-toggler {
    position: relative;
    z-index: 2;
    min-width: 2.75rem;
    min-height: 2.75rem;
    flex-shrink: 0;
}

.webdesign-desktop-nav .webdesign-nav-list , .webdesign-desktop-nav {
    gap: 2.15rem;
}

.webdesign-desktop-nav .webdesign-nav-link {
    color: var(--nav-muted);
    padding: 26px 14px;
    font-size: 14px;
    line-height: 100%;
    text-decoration: none;
    transition: color .3s, border-color .3s;
    display: flex;
}

.webdesign-desktop-nav .webdesign-nav-link:hover,
.webdesign-desktop-nav .webdesign-nav-link.active {
    color: var(--text) !important;
}

.webdesign-desktop-nav .webdesign-nav-link.active {
    border-bottom: 1px solid var(--cyan);
}

.webdesign-nav-label {
    display: inline-block;
    padding-bottom: 2px;
}

.btn-webdesign-talk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 14px;
    line-height: 100%;
    text-decoration: none;
    transition: background-color .3s, color .3s, border-color .3s, box-shadow .3s;
    background: var(--royal-blue);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.btn-webdesign-talk:hover {
    background: var(--accent-hover);
    color: var(--white);
    border-color: transparent;
}

.webdesign-offcanvas .offcanvas-panel__body {
    gap: 0.45rem;
}

.webdesign-offcanvas-nav ul {
    padding-left: 0;
}

.webdesign-offcanvas-border {
    border-color: var(--border-subtle) !important;
}

.webdesign-offcanvas-nav a {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nav-muted) !important;
    text-decoration: none;
    padding: 0.95rem 0.1rem;
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid var(--border-subtle) !important;
    border-radius: 0;
    background: transparent;
    transition: color .2s ease, border-color .2s ease;
}
.webdesign-offcanvas-nav li:last-child a {
    border-bottom: 0;
}
.webdesign-offcanvas-nav a:hover,
.webdesign-offcanvas-nav a.active {
    color: var(--text) !important;
    border-color: var(--border-strong);
    background: transparent;
}

.webdesign-offcanvas .btn-webdesign-talk {
    margin-top: 0 !important;
    border: 1px solid transparent;
    background: var(--royal-blue);
    color: var(--white) !important;
    font-weight: 600;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.webdesign-offcanvas .btn-webdesign-talk:hover {
    border-color: transparent;
    background: var(--accent-hover);
    color: var(--white) !important;
}

/* Hero banner */
.hero-banner {
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
    overflow: hidden;
}

.hero-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: var(--button-radius);
    background: var(--white);
    font-size: 0.72rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--dark-gray);
}

.hero-banner__stars {
    color: #FBBF24;
    font-size: 0.8rem;

    line-height: 1;
}

.hero-banner__title {
    margin: 0 0 1.25rem;
    font-size: var(--h1-size);
    font-weight: 600;
    line-height: 1.08;

    color: var(--deep-navy);
    max-width: 12ch;
}

.hero-banner__title-accent {
    display: block;
    color: var(--royal-blue);
}

.hero-banner__lead {
    margin: 0 0 2rem;
    max-width: 34rem;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.7;
    color: rgba(30, 41, 59, 0.82);
}

.hero-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: var(--button-radius);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-banner__btn--primary {
    background: var(--royal-blue);
    color: var(--white);
    border: 1px solid transparent;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.hero-banner__btn--primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.34);
    color: var(--white);
}

.hero-banner__btn--secondary {
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid rgba(30, 41, 59, 0.12);
}

.hero-banner__btn--secondary:hover {
    border-color: rgba(30, 41, 59, 0.22);
    color: var(--deep-navy);
}

.hero-banner__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 26rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 41, 59, 0.08);
}

.hero-banner__stat-value {
    margin: 0 0 0.4rem;
    font-family: var(--heading-font);
    font-size: clamp(1.85rem, 3.2vw, 2.35rem);
    font-weight: 600;
    line-height: 1;
    color: var(--deep-navy);
    font-variant-numeric: tabular-nums;
}

.hero-banner__stat-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(30, 41, 59, 0.72);
}

.hero-banner__visual {
    position: relative;
    min-height: clamp(22rem, 42vw, 28rem);
}

.hero-banner__cards {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.hero-banner__glow {
    position: absolute;
    inset: 8% 0 8% 10%;
    background:
        radial-gradient(circle at 58% 48%, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0) 42%),
        radial-gradient(circle at 72% 62%, rgba(6, 182, 212, 0.16) 0%, rgba(6, 182, 212, 0) 38%);
    filter: blur(12px);
    pointer-events: none;
}

.hero-banner__card {
    position: absolute;
    width: min(100%, 17.5rem);
    padding: 1.15rem 1.2rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(248, 250, 252, 0.9);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    opacity: 0;
    transform: translateY(4.5rem);
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
}

.hero-banner__card.is-placed {
    opacity: 1;
    transform: translateY(0);
}

.hero-banner__card--development {
    top: 20%;
    left: 0;
    width: min(100%, 19rem);
}

.hero-banner__card--design {
    top: 0;
    left: 46%;
}

.hero-banner__card--strategy {
    top: 56%;
    left: 40%;
}

.hero-banner__card h2 {
    margin: 0 0 0.45rem;
font-size:20px;
    text-transform: uppercase;
    color: var(--deep-navy);
}

.hero-banner__card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(30, 41, 59, 0.72);
}

.hero-banner__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.85rem;
    border-radius: 0.7rem;
}

.hero-banner__card-icon--blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
}

.hero-banner__card-icon--cyan {
    background: rgba(6, 182, 212, 0.12);
    color: var(--cyan);
}

@media (max-width: 991.98px) {
    .hero-banner__inner {
        grid-template-columns: 1fr;
    }

    .hero-banner__title {
        max-width: none;
    }

    .hero-banner__visual {
        min-height: auto;
        margin-top: 0.5rem;
    }

    .hero-banner__cards {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: static;
        min-height: auto;
        height: auto;
    }

    .hero-banner__card,
    .hero-banner__card--development,
    .hero-banner__card--design,
    .hero-banner__card--strategy {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .hero-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-banner__btn {
        width: 100%;
    }

    .hero-banner__stats {
        max-width: none;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-banner__stat-value {
        font-size: 1.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner__card,
    .hero-banner__card.is-placed {
        transition: none;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trusted by logos */
.trusted-by {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid rgba(30, 41, 59, 0.06);
}

.trusted-by__label {
    margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;

    text-transform: uppercase;
    color: rgba(30, 41, 59, 0.5);
}

.trusted-by-swiper {
    overflow: hidden;
}

.trusted-by-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.trusted-by__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.5rem;
    padding: 0 0.5rem;
}

.trusted-by__logo img {
    display: block;
    max-height: 2rem;
    width: auto;
    max-width: 7.5rem;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.trusted-by__logo:hover img {
    opacity: 0.85;
    filter: grayscale(0);
}

@media (max-width: 767.98px) {
    .trusted-by__logo img {
        max-height: 1.65rem;
        max-width: 6rem;
    }
}

/* Services / expertise */
.services-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.services-section__header {
    max-width: 40rem;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}

.services-section__label {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--royal-blue);
}

.services-section__title,
.services-section__header h2 {
    margin: 0 0 1rem;
    line-height: 1.12;

    color: var(--deep-navy);
}

.services-section__intro {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(30, 41, 59, 0.72);
}

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

.services-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.5rem;
    border-radius: 1.1rem;
    background: var(--white);
    border: 1px solid rgba(248, 250, 252, 0.9);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.services-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1.15rem;
    border-radius: 0.75rem;
}

.services-card__icon--blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
}

.services-card__icon--purple {
    background: rgba(139, 92, 246, 0.12);
    color: #7C3AED;
}

.services-card__icon--cyan {
    background: rgba(6, 182, 212, 0.12);
    color: var(--cyan);
}

.services-card__icon--orange {
    background: rgba(249, 115, 22, 0.12);
    color: #EA580C;
}

.services-card__icon--green {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.services-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.services-card p {
    margin: 0 0 1.35rem;
    flex-grow: 1;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(30, 41, 59, 0.72);
}

.services-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--deep-navy);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.services-card a:hover {
    color: var(--royal-blue);
    gap: 0.55rem;
}

.services-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.25rem;
    align-items: stretch;
    padding: 1.25rem;
}

.services-card__content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0.25rem 0.25rem 0.25rem 0.5rem;
}

.services-card--wide .services-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 12rem;
    padding: 1.5rem;
    border-radius: 0.9rem;
    background: rgba(248, 250, 252, 0.9);
}

.services-card__chart {
    width: min(100%, 12rem);
    height: auto;
    color: rgba(30, 41, 59, 0.22);
}

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

    .services-card--wide {
        grid-column: 1 / -1;
    }
}

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

    .services-card--wide {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .services-card--wide .services-card__visual {
        min-height: 10rem;
    }
}

/* Why choose us */
.why-us {
    background: var(--white);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.why-us__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.why-us__visual {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.1));
    min-height: clamp(18rem, 38vw, 28rem);
}

.why-us__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(219, 234, 254, 0.35) 0%, rgba(248, 250, 252, 0.15) 100%);
    pointer-events: none;
}

.why-us__visual img {
    width: 100%;
    height: 100%;
    min-height: clamp(18rem, 38vw, 28rem);
    object-fit: cover;
    display: block;
    filter: saturate(0.85) contrast(1.02);
}

.why-us__label {
    margin: 0 0 0.85rem !important;
    font-size: 0.78rem !important;
    font-weight: 600;

    text-transform: uppercase !important;
    color: var(--royal-blue) !important;
}

.why-us__title {
    margin: 0 0 1rem;
    line-height: 1.15;

    color: var(--deep-navy);
    max-width: 16ch;
}

.why-us__intro {
    margin: 0 0 2rem;
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(30, 41, 59, 0.78);
}

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

.why-us__card {
    padding: 1.15rem 1.2rem;
    border-radius: 0.9rem;
    background: var(--white);
    border: 1px solid rgba(248, 250, 252, 1);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.why-us__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
}

.why-us__card h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.why-us__card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(30, 41, 59, 0.68);
}

@media (max-width: 991.98px) {
    .why-us__inner {
        grid-template-columns: 1fr;
    }

    .why-us__title {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .why-us__grid {
        grid-template-columns: 1fr;
    }
}

/* Process section */
.process-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.process-section__header {
    max-width: 36rem;
    margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
    text-align: center;
}

.process-section__label {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--royal-blue);
}

.process-section__title {
    margin: 0;
    line-height: 1.15;

    color: var(--deep-navy);
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 2.35rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(30, 41, 59, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.75rem;
    height: 4.75rem;
    margin: 0 auto 1.15rem;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--royal-blue);
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover .process-step__circle {
    background: var(--royal-blue);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.process-step h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.process-step p {
    margin: 0 auto;
    max-width: 11rem;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(30, 41, 59, 0.62);
}

@media (max-width: 991.98px) {
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.25rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step p {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 18rem;
        margin-inline: auto;
    }
}

/* Portfolio section */
.portfolio-section {
    background: var(--white);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.portfolio-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2.25rem, 4vw, 3rem);
}

.portfolio-section__label {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--royal-blue);
}

.portfolio-section__title {
    margin: 0;
    line-height: 1.15;

    color: var(--deep-navy);
}

.portfolio-section__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: var(--button-radius);
    background: var(--white);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--deep-navy);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-section__cta:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    color: var(--deep-navy);
}

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

.portfolio-card {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--light-gray);
    border: 1px solid rgba(30, 41, 59, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.portfolio-card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.portfolio-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.portfolio-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-card__media img {
    transform: scale(1.04);
}

.portfolio-card__media--fintech {
    background: #E8F0FE;
}

.portfolio-card__media--ecommerce {
    background: #E0F7FA;
}

.portfolio-card__media--healthtech {
    background: #F3E8FF;
}

.portfolio-card__media--web3 {
    background: #DBEAFE;
}

.portfolio-card__media--lifestyle {
    background: #FFF7ED;
}

.portfolio-card__media--industrial {
    background: #F1F5F9;
}

.portfolio-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.portfolio-badge {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.28rem 0.65rem;
    border-radius: var(--button-radius);
    font-size: 0.68rem;
    font-weight: 600;

    text-transform: uppercase;
}

.portfolio-badge--fintech {
    background: rgba(37, 99, 235, 0.12);
    color: #1D4ED8;
}

.portfolio-badge--ecommerce {
    background: rgba(6, 182, 212, 0.14);
    color: #0891B2;
}

.portfolio-badge--healthtech {
    background: rgba(168, 85, 247, 0.14);
    color: #7C3AED;
}

.portfolio-badge--web3 {
    background: rgba(59, 130, 246, 0.14);
    color: #2563EB;
}

.portfolio-badge--lifestyle {
    background: rgba(249, 115, 22, 0.14);
    color: #EA580C;
}

.portfolio-badge--industrial {
    background: rgba(100, 116, 139, 0.14);
    color: #475569;
}

.portfolio-card__body h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.portfolio-card__body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(30, 41, 59, 0.62);
}

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

@media (max-width: 767.98px) {
    .portfolio-section__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

/* Testimonials section */
.testimonials-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.testimonials-section__header {
    max-width: 36rem;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}

.testimonials-section__label {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--royal-blue);
}

.testimonials-section__title {
    margin: 0;
    line-height: 1.15;

    color: var(--deep-navy);
}

.testimonials-slider {
    position: relative;
}

.testimonials-swiper {
    overflow: hidden;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .testimonial-card {
    height: 100%;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 1.25rem;
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.06);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.25rem;
    color: #F59E0B;
}

.testimonial-card__quote {
    margin: 0 0 1.75rem;
    flex: 1;
}

.testimonial-card__quote p {
    margin: 0;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-gray);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
}

.testimonial-card__author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card__author cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    color: var(--deep-navy);
}

.testimonial-card__author span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.82rem;
    color: rgba(30, 41, 59, 0.72);
}

/* Stats banner */
.stats-banner {
    background: var(--deep-navy);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.stats-banner__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    text-align: center;
}

.stats-banner__value {
    margin: 0 0 0.5rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1;

    font-variant-numeric: tabular-nums;
}

.stats-banner__value--blue {
    color: var(--royal-blue);
}

.stats-banner__value--cyan {
    color: var(--cyan);
}

.stats-banner__value--white {
    color: var(--white);
}

.stats-banner__label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--light-gray);
}

@media (max-width: 767.98px) {
    .stats-banner__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem 1.5rem;
    }
}
/* 
@media (max-width: 479.98px) {
    .stats-banner__grid {
        grid-template-columns: 1fr;
    }
} */

/* Blog section */
.blog-section {
    background: var(--white);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.blog-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2.25rem, 4vw, 3rem);
}

.blog-section__label {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--royal-blue);
}

.blog-section__title {
    margin: 0;
    line-height: 1.15;

    color: var(--deep-navy);
}

.blog-section__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: var(--button-radius);
    background: var(--white);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--deep-navy);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-section__cta:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    color: var(--deep-navy);
}

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

.blog-card__media {
    display: block;
    overflow: hidden;
    border-radius: 1.1rem;
    margin-bottom: 1.15rem;
}

.blog-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.04);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.blog-badge a{
    font-size: 0.68rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-badge--design a{
    color: #1D4ED8;
}

.blog-badge--tech a{
    color: #0891B2;
}

.blog-badge--strategy a{
    color: #7C3AED;
}

.blog-card__meta time {
    font-size: 0.68rem;
    font-weight: 600;

    text-transform: uppercase;
    color: rgba(30, 41, 59, 0.45);
}

.blog-card__body h3 {
    margin: 0 0 0.65rem;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 767.98px) {
    .blog-card__body h3 {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .blog-card__body h3 {
        font-size: 18px;
    }
}

.blog-card__body h3 a {
    color: var(--deep-navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card__body h3 a:hover {
    color: var(--royal-blue);
}

.blog-card__body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #475569;
}

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

@media (max-width: 767.98px) {
    .blog-section__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

/* FAQ section */
.faq-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.faq-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.faq-section__label {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--royal-blue);
}

.faq-section__title,
.faq-section__intro h2 {
    margin: 0 0 1rem;
    line-height: 1.15;

    color: var(--deep-navy);
}

.faq-section__text {
    margin: 0 0 1.75rem;
    max-width: 22rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(30, 41, 59, 0.68);
}

.faq-section__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: var(--button-radius);
    background: var(--deep-navy);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.faq-section__cta:hover {
    background: #1a2740;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    color: var(--white);
}

.faq-accordion {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    overflow: hidden;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.faq-item__heading,
.faq-item h3 {
    margin: 0;
}

.faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.35rem;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    color: var(--deep-navy);
    cursor: pointer;
}

.faq-item__trigger span {
    flex: 1;
}

.faq-item__icon {
    flex-shrink: 0;
    color: rgba(30, 41, 59, 0.35);
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
    color: var(--royal-blue);
}

.faq-item__panel {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 1.35rem;
    transition: grid-template-rows 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item.is-open .faq-item__panel {
    grid-template-rows: 1fr;
    padding-bottom: 1.25rem;
}

.faq-item__panel > * {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.is-open .faq-item__panel > * {
    opacity: 1;
}

.faq-item__panel p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(30, 41, 59, 0.62);
}

@media (prefers-reduced-motion: reduce) {
    .faq-item__panel,
    .faq-item__panel > * {
        transition: none;
    }
}

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

    .faq-section__text {
        max-width: none;
    }
}

/* Home CTA section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(37, 99, 235, 0.22) 0%, transparent 65%),
        linear-gradient(180deg, #111b33 0%, var(--deep-navy) 55%, #0b1220 100%);
    text-align: center;
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    margin-inline: auto;
}

.cta-section__title,
.cta-section__inner h2 {
    margin: 0 0 1rem;
    font-size: var(--cta-title-size);
    line-height: 1.12;
    color: var(--white);
}

.cta-section__text {
    margin: 0 auto 2rem;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.78);
}

.cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.cta-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: var(--button-radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.cta-section__btn--primary {
    background: var(--white);
    color: var(--deep-navy);
    border: 1px solid transparent;
}

.cta-section__btn--primary:hover {
    background: var(--light-gray);
    color: var(--deep-navy);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}

.cta-section__btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(248, 250, 252, 0.28);
}

.cta-section__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(248, 250, 252, 0.45);
    color: var(--white);
}

/* Home footer */
.site-footer--home {
    background: #070d18;
    color: rgba(248, 250, 252, 0.72);
    padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}

.site-footer--home .site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.site-footer--home .site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;

    color: var(--white);
    text-decoration: none;
}

.site-footer--home .site-footer__logo span {
    color: #60A5FA;
}

.site-footer--home .site-footer__logo-icon {
    display: inline-flex;
    flex-shrink: 0;
}

.site-footer--home .site-footer__tagline {
    margin: 0 0 1.5rem;
    max-width: 18rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.58);
}

.site-footer--home .site-footer__socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-footer--home .site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(248, 250, 252, 0.08);
    color: rgba(248, 250, 252, 0.82);
    transition: background 0.2s ease, color 0.2s ease;
}

.site-footer--home .site-footer__socials a:hover {
    background: rgba(37, 99, 235, 0.2);
    color: var(--white);
}

.site-footer--home .site-footer__col-title {
    margin: 0 0 1.15rem;
    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--white);
}

.site-footer--home .site-footer__col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.site-footer--home .site-footer__col li + li {
    margin-top: 0.7rem;
}

.site-footer--home .site-footer__col a {
    font-size: 14px;
    color: rgba(248, 250, 252, 0.62);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer--home .site-footer__col a:hover {
    color: var(--white);
}

.site-footer--home .site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer--home .site-footer__contact-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--royal-blue);
}

.site-footer--home .site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248, 250, 252, 0.08);
}

.site-footer--home .site-footer__bottom p {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(248, 250, 252, 0.48);
}

.site-footer--home .site-footer__legal {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-footer--home .site-footer__legal a {
    font-size: 0.86rem;
    color: rgba(248, 250, 252, 0.48);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer--home .site-footer__legal a:hover {
    color: var(--white);
}

@media (max-width: 991.98px) {
    .site-footer--home .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer--home .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .site-footer--home .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer--home .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.webdesign-side-label {
        color: var(--text);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 150%;
}

.webdesign-side-label-slash {
    color: var(--cyan);
    margin-right: 0.15em;
}

.section {
    padding-block: var(--section-y);
    background: var(--bg);
}

/* Selected works */
.section-selected-works {
    background-color: var(--bg) !important;
}

.works-list {
    padding-top: clamp(2rem, 5vw, 3.5rem);
}

.work-item {
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    background: var(--surface);
    padding: 40px;
    color: var(--text);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}
.work-item-copy {
    padding-top: 0;
    color: var(--text);
}

@media (min-width: 992px) {
    .work-item-copy {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 0.25rem;
        height: 100%;
        color: var(--text);
    }
}
.work-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.35);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.work-title h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--text);
}

.work-desc {
        font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 28rem;
    margin-top: 14px;
    margin-bottom: 0;
}

.work-img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    background: var(--bg);
}

/* Latest Articles — label/heading row + two horizontal cards + right action button */
.section-latest-articles {
    background-color: var(--bg) !important;
}

.articles-label-slash {
    color: var(--cyan);
    margin-right: 0.2em;
}

.articles-rule {
    border: 0;
    border-top: 1px solid var(--border);
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: clamp(1rem, 2.8vw, 1.7rem);
    opacity: 1;
}

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

.article-card {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    min-height: clamp(13.5rem, 26vw, 16rem);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    color: var(--text);
    border-radius: 12px;
    overflow: hidden;
}

.article-image-wrap {
    min-height: 100%;
    background: var(--deep-navy);
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--bg);
}

.article-content {
    padding: clamp(1.1rem, 2.2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    color: var(--text);
    background: var(--surface);
}
.article-content h3{
    font-size: 18px;
}
.article-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cyan);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.35);
    padding: 0.3rem 0.55rem;
    line-height: 1;
}

.article-title {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text);
    margin: 0;
}

.article-date {
    margin-top: auto;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9375rem;
}

/* Footer CTA band + rebuilt footer */
.footer-cta-band {
    position: relative;
    padding: clamp(4.25rem, 10vw, 6rem) 0 clamp(3.5rem, 8vw, 5rem);
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    background: var(--deep-navy);
    border-radius: 30px;
    top: -100px;
}

.footer-cta-band-inner {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin-inline: auto;
    color: var(--text);
}

.footer-cta-band-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.18;

    color: var(--text);
    margin-bottom: 1rem;
}

.footer-cta-band-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text);
    max-width: 44rem;
    margin: 0 auto 1.5rem;
}

.footer-cta-band-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--royal-blue);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.65rem 1.25rem;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.footer-cta-band-btn:hover {
    color: var(--white);
    background: var(--accent-hover);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.plan-summary-cta {
    width: 100%;
    justify-content: center;
    padding: 0.78rem 1rem;
    border-radius: 0.55rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--accent-hover) 100%);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.plan-summary-cta:hover {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--royal-blue) 100%);
    border-color: transparent;
    box-shadow: 0 12px 26px rgba(6, 182, 212, 0.28);
    color: var(--white);
}

.site-footer.footer-rebuild {
   
    padding: 0 0 1rem;
    color: var(--text);
}

.footer-brand-social {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0 0.95rem;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg);
    color: var(--text);
}
.footer-brand {
    color: var(--text);
    font-size: 2rem;
    font-weight: 500;

    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-logo {
    width: 180px;
    display: block;
    flex-shrink: 0;
    filter: invert(1);
}
.footer-socials ul{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--text);
}

.footer-socials ul li a {
    color: var(--muted);
    font-size: 0.8125rem;
    position: relative;
        display: flex;
    align-content: center;
    flex-direction: row;
    align-items: center;
}
.footer-socials ul li a img{
    width: 30px;
    margin-right: 10px;
}

.footer-socials a:hover {
    color: var(--cyan);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg);
    color: var(--text);
}

.footer-left-pane {
    padding: clamp(2.2rem, 5vw, 3rem) clamp(0.25rem, 1.2vw, 0.75rem) clamp(2.4rem, 5vw, 3.25rem) 0;
    border-right: 1px solid var(--border-subtle);
    color: var(--text);
}

.footer-main-title {
    margin: 0 0 1.25rem;
    font-family: var(--heading-font);
    font-size: var(--h2-size);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text);
}

.footer-main-form {
    max-width: 21rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 0.3rem;
    min-height: 2.8rem;
    background: var(--surface);
}

.footer-main-input {
    background: transparent;
    border: 0;
    color: var(--text);
    padding: 0 0.9rem;
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
}

.footer-main-input::placeholder {
    color: var(--muted);
}

.footer-main-submit {
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    padding: 0 0.85rem;
    min-height: 2.8rem;
}

.footer-right-pane {
    padding: clamp(2.2rem, 5vw, 3rem) 0 clamp(2.4rem, 5vw, 3.25rem) clamp(1rem, 2.5vw, 2rem);
    color: var(--text);
}

.footer-link-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem clamp(1rem, 2vw, 2rem);
    background: var(--bg);
    color: var(--text);
}

.footer-link-col-title {
    margin: 0 0 0.85rem;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.footer-link-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-col li {
    margin-bottom: 0.55rem;
}

.footer-link-col a {
    color: var(--muted);
    font-size: 14px;
}

.footer-link-col a:hover {
    color: var(--cyan);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 0.9rem;
    color: var(--muted);
    font-size: 0.75rem;
    background: var(--bg);
}

.footer-bottom-bar p {
    margin: 0;
    color: var(--muted);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media(max-width: 1199px){
    .webdesign-desktop-nav .webdesign-nav-link{
        padding: 26px 10px;
    }
}
@media(max-width: 991px){
    .webdesign-navbar-border{
        padding: 20px 0px;
    }
}
@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-social {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

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

    .footer-left-pane {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
    }

    .footer-right-pane {
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .article-card {
        grid-template-columns: 1fr;
    }

    .article-image {
        width: 100%;
        height: 220px;
    }

    .footer-socials {
        flex-wrap: wrap;
        gap: 0.6rem 1rem;
    }

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

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-socials ul {
    display: grid;
    grid-column: revert-layer;
    align-items: center;
    gap: 1.25rem;
    color: var(--text);
    flex-direction: row;
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 100%;
    display: grid;
}
.webdesign-brand-logo , .footer-brand-logo{
    width: 120px;
}
}

.plan-page {
    background: var(--deep-navy);
    color: var(--text);
    --plan-accent: #2563EB;
    --plan-accent-hover: #1D4ED8;
    --plan-mint: #5eead4;
    --plan-mint-text: #0a0f0d;
}
.plan-main { padding: clamp(2rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 5rem); }

.planner-grid { display:grid; grid-template-columns: minmax(0,1fr) minmax(280px,.46fr); gap: .9rem; align-items:start; }
.plan-left { display:grid; gap:.8rem; }
.plan-card { background: var(--surface); border:1px solid var(--border-subtle); border-radius:.75rem; padding:24px; color: var(--text); }
.plan-card h3 { font-size: 1.55rem; color: var(--text); margin: 0 0 .75rem; }
.option-grid { display:grid; gap:.55rem; }
.option-grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.option-grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.option-grid-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.option-chip { border:1px solid rgba(255,255,255,.08); background:#0e0e0e; border-radius:.5rem; padding:25px; min-height:4.6rem; display:flex; flex-direction:column; gap:.2rem; color: var(--text);}
.plan-package-tab { cursor: pointer; }
.plan-pages-tab,
.plan-cms-tab { cursor: pointer; }
.option-chip strong { font-size:18px ;color:#fff; line-height:1.25; font-weight:600; margin-bottom: 10px;}
.option-chip span { color:#9aa0ad; font-size:.78rem; line-height:1.35; }
.option-chip.selected { border-color: var(--text); box-shadow: 0 0 0 1px rgba(32,32,32,.28);}
.option-chip .chip-price { margin-top:.3rem; font-style:normal; font-weight:500; color: var(--text); font-size:1.5rem;  padding: 2px 6px; border-bottom: 1px solid #2b2b2b;
    margin-bottom: 20px;
    padding-bottom: 10px;}
.option-chip ul { margin:.35rem 0 0; padding-left:.95rem; color:#9aa0ad; font-size:.73rem; line-height:1.35; }
.option-chip ul li{
    font-size: 14px;
    color: #a0a0a0;
    list-style: none;
    margin-bottom: 10px;
    padding: 0;
    line-height: 1.35;
    font-weight: 400;
}
.plan-package-features p{
    color: var(--text);
}
.option-chip.compact { min-height:auto; justify-content:center; align-items:center; text-align:center; padding:.6rem .45rem; }
.option-chip.compact strong { font-size:16px; color:#a0a0a0; margin-bottom:5px }
.option-chip.compact em {   color: var(--text); font-style:normal; font-weight:500; font-size:20px; line-height:1.1; padding: 4px 8px; border-radius: 4px;}
.plan-card#planCmsCard .option-chip.selected {
    border-color: var(--text);
    background: #171717;
    box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.18);
    color: var(--text);
}
.plan-card#planCmsCard .option-chip.selected strong {
    color: #ffffff;
}
.plan-card#planCmsCard .option-chip.selected span {
    color: #b3b3b3;
}
.feature-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:.5rem; }
.feature-item { display:flex; align-items:center; gap:.45rem; padding:16px; border:1px solid rgba(255,255,255,.08); border-radius:8px; color:#fff; font-size:16px; background: var(--bg);}
.feature-item input { accent-color:#232323;     width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 6px;}
.feature-item b { margin-left:auto;  color: var(--text); font-size:16px; padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.summary-box { position: sticky; top: 5.7rem; background: var(--surface); color: var(--text); border-radius:.78rem; padding: 24px; box-shadow: 0 12px 24px rgba(15, 23, 42, 0.35);}
.summary-box h3 { margin:0 0 24px; font-size:1.5rem; color:#fff; }
.summary-line { display:flex; justify-content:space-between; align-items:center; color:#fff; font-size:16px; margin-bottom:24px; }
.summary-line strong { color: var(--text); font-weight:600; }
.summary-total { border-top:1px solid rgb(255 255 255 / 4%); margin-top:.5rem; padding-top:16px; display:flex; justify-content:space-between; align-items:flex-end; color:#fff; margin-bottom:20px;}
.summary-total strong { font-size:2rem; line-height:1; color: var(--text);}
.summary-note { margin:20px 0 .75rem; color:#dbdbdb; font-size:13px; text-align:center; }
.summary-box-muted { border-top:1px solid rgb(255 255 255 / 4%); padding:16px 0; margin-bottom:.6rem; }
.summary-box-muted h4, .summary-list h4 { margin:0 0 20px; font-size:17px; color:#fff; }
.summary-box-muted p { margin:0; font-size:14px; color:#fff; line-height:1.35; }
.plan-summary-addons { margin:0; padding-left: 1rem; display:grid; gap:.22rem; }
.plan-summary-addons li { color:#fff; font-size:14px; }
.summary-list ul { margin:0; padding-left:1rem; display:grid; gap:.3rem; }
.summary-list li { color:#fff; font-size:14px; }

.plan-get-started {
    margin-top: clamp(2.5rem, 6vw, 4rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    scroll-margin-top: 5.5rem;
}
.plan-gst-title {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.plan-gst-profile {
    max-width: 26rem;
}
.plan-gst-link:hover {
    text-decoration: underline;
    color: #8fa4ff;
}

.plan-form-shell {
    border-radius: 0.65rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}
.plan-form-shell--summary-dismissed .plan-form-body {
    border-radius: 0.65rem;
}
.plan-form-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.9rem 1.1rem;
    background: var(--plan-accent);
    color: var(--text);
}
.plan-form-summary-text {
    font-size: 0.92rem;
    font-weight: 500;
    flex: 1;
    min-width: 12rem;
}
.plan-form-summary-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.plan-form-summary-edit {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.plan-form-summary-edit:hover {
    color: #e8ecff;
}
.plan-form-summary-close {
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: var(--text);
    width: 2rem;
    height: 2rem;
    border-radius: 0.35rem;
    font-size: 1.35rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.plan-form-summary-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.plan-form-body {
    padding: 1.35rem 1.25rem 1.5rem;
}
.plan-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #e8eaef;
    margin-bottom: 0.35rem;
}
.plan-page .plan-form-input.form-control,
.inner-page .plan-form-input.form-control,
.inner-page .plan-form-input.form-select {
    background: var(--deep-navy);
    border: 1px solid var(--border);
    border-radius: 0.45rem;
    color: var(--text);
    font-size: 0.92rem;
    padding: 0.55rem 0.75rem;
}
.plan-page .plan-form-input.form-control::placeholder,
.inner-page .plan-form-input.form-control::placeholder {
    color: rgba(154, 160, 173, 0.75);
}
.plan-page .plan-form-input.form-control:focus,
.inner-page .plan-form-input.form-control:focus,
.inner-page .plan-form-input.form-select:focus {
    border-color: rgba(79, 111, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(79, 111, 255, 0.15);
    background: #0d0d0d;
    color: var(--text);
}
.plan-form-textarea {
    min-height: 130px;
    resize: vertical;
}
.plan-form-services {
    border: 0;
    padding: 0;
    margin: 0;
}
.plan-form-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.plan-form-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0e0e0e;
    font-size: 0.82rem;
    color: #c8cdd8;
    cursor: pointer;
    margin: 0;
}
.plan-form-chip input {
    accent-color: var(--plan-accent);
}
.plan-form-chip:has(input:checked) {
    border-color: rgba(79, 111, 255, 0.55);
    background: rgba(79, 111, 255, 0.12);
    color: var(--text);
}

.plan-form-send {
    width: 100%;
    margin-top: 1.35rem;
    border: 0;
    border-radius: var(--button-radius);
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--plan-accent);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.plan-form-send:hover {
    background: var(--plan-accent-hover);
    color: var(--text);
}
.plan-form-send:active {
    transform: scale(0.99);
}
.plan-form-send svg {
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .option-grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .option-grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 991.98px) {
    .planner-grid { grid-template-columns: 1fr; }
    .summary-box { position: static; }
}
@media (max-width: 640px) {
    .option-grid-2, .option-grid-3, .feature-grid, .option-grid-4 { grid-template-columns: 1fr; }
    .plan-card h3 { font-size:1.2rem; }
}

.service-detail-page .sd-main {
    background: var(--sd-bg);
    color: var(--sd-text);
    overflow-x: clip;
}

.service-detail-page .sd-hero {
    position: relative;
    padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--deep-navy) 100%);
}
.service-detail-page .sd-hero h1{
    font-size: 60px;
}
.service-detail-page .sd-hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background:radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.12) 0%, var(--deep-navy) 100%);
}

.gradient-line {
    height: 100%;
  border-right: 1px solid; /* Define width and style */
  border-image: linear-gradient(to bottom, var(--deep-navy) 0%, var(--cyan) 50%, var(--deep-navy) 100%) 1;;
}
.sd-benefits:last-child .gradient-line{
    border-right: none;
}

.service-detail-page .sd-hero-lead p {
    font-size: 22px;
    line-height: 1.65;
    color: #d3d3d3;
    margin-bottom: 1.6rem;
}

.service-detail-page .sd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.service-detail-page .sd-link-play {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
    color: var(--sd-text);
    text-decoration: none;
}

.service-detail-page .sd-link-play:hover {
    color: var(--text);
}

.service-detail-page .sd-link-play:hover .sd-play-icon {
    border-color: rgba(255, 255, 255, 0.2);
    background: #151515;
}

.service-detail-page .sd-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    color: var(--sd-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.service-detail-page .sd-section {
    padding: clamp(2.5rem, 5vw, 6rem) 0;
}

.service-detail-page .sd-section-alt {
    background: var(--sd-elevated);
}

.service-detail-page .sd-section-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: #d3d3d3;
}

.sd-benefits h3 , .sd-solutions h3 ,.sd-process h3 , .sd-tech h3{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--sd-text);
}

.service-detail-page .sd-benefits p, .sd-solutions p , .sd-process p , .sd-tech p{
    font-size: 16px;
    line-height: 1.75rem;
    color: #d3d3d3;
    margin: 0;
    margin-bottom: 20px;
}
.border-none{
    border: none;
}
.service-detail-page .sd-icon-ring {
    width: 3rem;
    height: 3rem;
    padding: 9px 10px;
    border-radius: 50%;
    border: 2px solid rgb(167 167 170 / 35%);
    background: linear-gradient(145deg, rgb(146 146 146 / 10%), rgb(95 95 95 / 6%));
    margin-bottom: 25px;
}

.service-detail-page .sd-panel {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 0.65rem;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.service-detail-page .sd-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sd-primary);
    border: 2px solid rgb(225 225 225 / 35%);
    margin-bottom: 0.85rem;
    background: var(--sd-elevated);
    margin-bottom: 40px;
}

.service-detail-page .sd-process,
.service-detail-page .sd-faq,
.service-detail-page .sd-contact {
    scroll-margin-top: 5.5rem;
}
.sd-faq h2, .sd-faq p{
    margin-bottom: 25px;
}

.service-detail-page .sd-faq-title {
    margin-bottom: 0.75rem;
}

.service-detail-page .sd-faq-intro {
    margin-bottom: 1.25rem;
}

.service-detail-page .sd-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-active-color: var(--sd-primary);
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}
.sd-accordion h3{
    color: #ffffff;
    font-size: 22px;
}
.sd-accordion .accordion-body , .sd-accordion .accordion-body p{
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0px;
}
.service-detail-page .sd-accordion .sd-accordion-item {
       border: 1px solid #181818;
    background: transparent;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.service-detail-page .sd-accordion .sd-accordion-item:hover{
    background: #181818;
}
.service-detail-page .sd-accordion .accordion-button {
    font-weight: 500;
    font-size: 20px;
    background: transparent;
    box-shadow: none;
    padding: 1rem 0;
}

.service-detail-page .sd-accordion .accordion-button:not(.collapsed) {
    
    background: transparent;
}

.service-detail-page .sd-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: 0.55;
}

.service-detail-page .sd-accordion .accordion-button:not(.collapsed)::after {
    opacity: 0.85;
}

.service-detail-page .sd-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

@media (max-width: 767.98px) {
    .service-detail-page .sd-split-head {
        text-align: left;
    }

}

/* —— Inner pages (Company, Careers, Insights, Contact) —— */
.inner-page .inner-main {
    padding-bottom: 0;
}

.inner-hero {
    padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.inner-kicker {
    font-size: 0.75rem;
    font-weight: 500;

    text-transform: uppercase;
    color: #9aa0ad;
    margin-bottom: 0.65rem;
}
.inner-title {
    font-size: var(--h1-size);
    font-weight: 500;

    line-height: 1.1;
    color: var(--text);
    max-width: 18ch;
    margin-bottom: 1rem;
}
.inner-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #9aa0ad;
    margin: 0;
}
.inner-section {
    padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}
.inner-section--muted {
    background: var(--surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.inner-section--tight-bottom {
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.inner-heading {
    font-size: var(--h3-size);
    font-weight: 500;

    color: var(--text);
    margin-bottom: 1rem;
}
.inner-subheading {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.inner-text {
    color: #c4c9d4;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.inner-footnote p{
    font-size: 0.88rem;
    color: #9aa0ad;
    line-height: 1.55;
}
.inner-footnote p a {
    color: #a3a3a3;
}
.inner-highlight-box {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 1.35rem 1.25rem;
}
.inner-card {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 1.35rem 1.25rem;
}
.inner-card-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.inner-card-text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #9aa0ad;
    margin: 0;
}

.inner-jobs {
    display: grid;
    gap: 1rem;
}
.inner-job-card {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 1.35rem 1.35rem 1.25rem;
}
.inner-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.inner-job-tag {
    font-size: 016px;
    font-weight: 500;
    text-transform: uppercase;

    color: #a3a3a3;
}
.inner-job-tag--muted {
    color: #9aa0ad;
    text-transform: none;

    font-weight: 500;
}
.inner-job-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.inner-job-desc {
    font-size: 0.92rem;
    color: #9aa0ad;
    line-height: 1.55;
    margin-bottom: 1rem;
}
.inner-job-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    text-decoration: none;
}
.inner-job-link:hover {
    color: #a3a3a3;
}

.inner-checklist {
    margin: 0;
    padding-left: 1.15rem;
    color: #c4c9d4;
    font-size: 0.95rem;
    line-height: 1.7;
}
.inner-checklist li {
    margin-bottom: 0.35rem;
}

/* Insights listing — full-card link */
.inner-insights-list .article-card {
    position: relative;
}
.inner-insights-list .article-card-hit {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}
.inner-insights-list .article-card-hit:focus-visible {
    outline: 2px solid rgba(198, 204, 255, 0.85);
    outline-offset: 3px;
}
.inner-insights-list .article-image-wrap,
.inner-insights-list .article-content {
    position: relative;
    z-index: 1;
}

/* Insights detail */
.inner-back-link:hover {
    color: var(--text);
}
.inner-article-meta {
    font-size: 0.88rem;
    color: #9aa0ad;
    margin: 0;
}
.inner-article-cover {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}
.inner-article-img {
    width: 100%;
    height: auto;
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.inner-prose {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
   
}
.inner-prose .inner-lead--article {
    font-size: 1.15rem;
    color: #e8eaef;
}
.inner-prose p,
.inner-prose li {
    color: #c4c9d4;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.15rem;
}
.inner-prose h2 {
    color: var(--text);
    margin: 2rem 0 0.75rem;
}
.inner-prose ul {
    padding-left: 1.2rem;
    margin-bottom: 1.15rem;
}
.inner-prose ul li {
    margin-bottom: 0.35rem;
}

/* Contact page form */
.inner-contact-block strong {
    color: #e8eaef;
}
.inner-inline-link {
    color: #a3a3a3;
    text-decoration: none;
}
.inner-inline-link:hover {
    text-decoration: underline;
    color: var(--text);
}
.inner-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #e8eaef;
    margin-bottom: 0.35rem;
}
.inner-page .inner-form-control.form-control,
.inner-page .inner-form-control.form-select {
    background: var(--deep-navy);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 0.45rem;
    font-size: 0.95rem;
    padding: 0.55rem 0.75rem;
}
.inner-page .inner-form-control:focus {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    background: var(--surface);
    color: var(--text);
}
.inner-page .inner-form-control::placeholder {
    color: rgba(154, 160, 173, 0.75);
}
.inner-form-textarea {
    min-height: 140px;
    resize: vertical;
}
.inner-contact-submit {
    border: 0;
    border-radius: var(--button-radius);
    padding: 0.65rem 1.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    background: var(--royal-blue);
    color: var(--white);
    transition: background 0.2s;
}
.inner-contact-submit:hover {
    background: var(--accent-hover);
}

/* Company / About — “Why we do things differently” + team */
.about-different {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.about-split-title {
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    font-weight: 500;

    line-height: 1.15;
    margin: 0;
}
.about-split-title-line {
    display: block;
    color: #ffffff;
}
.about-split-title-gradient {
    display: block;
    background: linear-gradient(105deg, var(--cyan) 0%, var(--royal-blue) 50%, var(--light-gray) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-pillars {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about-pillar {
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.about-pillar:first-child {
    border-left: none;
}
.about-pillar-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    background: rgba(79, 111, 255, 0.08);
    margin-bottom: 1.1rem;
}
.about-pillar-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);

    margin-bottom: 0.65rem;
}
.about-pillar-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #9aa0ad;
    margin: 0;
}

.about-team-sub {
    font-size: 0.98rem;
    line-height: 1.55;
    color: #9aa0ad;
    max-width: 36rem;
}
.about-team-card {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 0.85rem;
    padding: clamp(1.35rem, 3vw, 1.75rem);
    text-align: center;
}
.about-team-avatar img{
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--text);
    object-fit: cover;
    background: linear-gradient(135deg, var(--royal-blue), var(--cyan));
    box-shadow: 0 10px 28px rgba(79, 111, 255, 0.25);
}
.about-team-avatar--david {
    background: linear-gradient(135deg, #0d9488, #2563eb);
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.22);
}
.about-team-name {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);

    margin-bottom: 0.25rem;
}
.about-team-role {
    font-size: 0.82rem;
    font-weight: 500;
    color: #a3a3a3;
    text-transform: uppercase;

    margin-bottom: 1rem;
}
.about-team-bio {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #9aa0ad;
    margin: 0;
    text-align: left;
}
.gradiant-background-orange{
    background: radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.14) 0%, rgba(37, 99, 235, 0.1) 38%, var(--deep-navy) 100%);
}
@media (max-width: 991.98px) {
    .about-pillar {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .about-pillar:first-child {
        border-top: none;
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .inner-title {
        max-width: none;
    }
    .work-item-copy{
        margin-top: 30px;
    }
    .work-tags{
        margin-bottom: 15px;
    }
    .service-detail-page .sd-hero h1{
        font-size: 40px;
    }
    .service-detail-page .sd-hero-lead p {
        font-size: 17px;
    }
}

.plan-section-title{
    text-align: center;
    margin-bottom: 40px;
}
.plan-section-title h1{
    font-size: 60px;
}
.plan-section-title p{
    font-size: 20px ;
}
.planner-grid .plan-left h2{
    margin-bottom: 30px;
}
.plan-package-features ul , .summary-list ul , .summary-box-muted ul , .inner-prose ul{
    padding: 0px;
}
.plan-package-features ul li , .summary-list ul li , .summary-box-muted ul li , .inner-prose ul li{
    position: relative;
    padding-left: 24px;
}
.plan-package-features ul li:before,
.summary-list ul li:before,
.summary-box-muted ul li:before,
.inner-prose ul li:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-check text-black mr-2 w-4 h-4 mt-0.5 flex-shrink-0' aria-hidden='true'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 0.22em;
    display: inline-block;
    vertical-align: middle;
    filter: invert(1);
}
@media(max-width: 767px){
    .plan-section-title h1{
    font-size: 40px;
}
.planner-grid .plan-left h2 {
    margin-bottom: 30px;
}
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--button-radius);
    border: 1px solid var(--border-strong);
    background: #000;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    backdrop-filter: blur(6px);
}
.scroll-top-btn svg {
    width: 1rem;
    height: 1rem;
    color:#fff;
}
.scroll-top-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    background: linear-gradient(145deg, var(--surface-elevated), var(--royal-blue));
}
.scroll-top-btn:active {
    transform: translateY(1px);
}

/* —— Inner pages: align with home light theme —— */
.inner-page,
.inner-page.service-detail-page {
    --surface: var(--white);
    --surface-elevated: var(--light-gray);
    --sd-bg: var(--white);
    --sd-text: var(--deep-navy);
    --sd-elevated: var(--light-gray);
    --sd-primary: var(--royal-blue);
    background-color: var(--white) !important;
    color: var(--deep-navy);
}

.inner-page .inner-hero {
    border-bottom-color: var(--border-subtle);
    background: var(--light-gray);
}

.inner-page .inner-kicker,
.inner-page .webdesign-side-label {
    color: var(--royal-blue);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.inner-page .inner-title,
.inner-page .inner-heading {
    color: var(--deep-navy);
}

.inner-page .inner-lead,
.inner-page .inner-text,
.inner-page .inner-footnote,
.inner-page .inner-card-text,
.inner-page .inner-job-desc,
.inner-page .about-team-bio,
.inner-page .about-pillar-text,
.inner-page .about-team-sub {
    color: var(--muted);
}

.inner-page .inner-section--muted {
    background: var(--light-gray);
}

.inner-page .inner-card,
.inner-page .inner-highlight-box,
.inner-page .inner-job-card,
.inner-page .about-team-card,
.inner-page .work-item,
.inner-page .article-card {
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.inner-page .article-content {
    background: var(--white);
}

.inner-page .inner-job-link,
.inner-page .inner-inline-link {
    color: var(--royal-blue);
}

.inner-page .inner-job-link:hover,
.inner-page .inner-inline-link:hover {
    color: var(--accent-hover);
}

.inner-page .about-different,
.inner-page .about-pillars {
    border-color: var(--border-subtle);
}

.inner-page .about-split-title-line {
    color: var(--deep-navy);
}

.inner-page .about-pillar {
    border-color: var(--border-subtle);
}

.inner-page .about-pillar-icon {
    border-color: rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.08);
    color: var(--royal-blue);
}

.inner-page .inner-prose p,
.inner-page .inner-prose li {
    color: var(--muted);
}

.inner-page .inner-prose .inner-lead--article {
    color: var(--deep-navy);
}

.inner-page .inner-contact-block strong,
.inner-page .inner-form-label {
    color: var(--deep-navy);
}

.inner-page .inner-form-control.form-control,
.inner-page .inner-form-control.form-select,
.inner-page .plan-form-input.form-control,
.inner-page .plan-form-input.form-select {
    background: var(--white);
    border-color: var(--border);
    color: var(--deep-navy);
}

.inner-page .inner-form-control:focus,
.inner-page .plan-form-input.form-control:focus,
.inner-page .plan-form-input.form-select:focus {
    background: var(--white);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.inner-page .plan-form-shell {
    background: var(--white);
    border-color: rgba(30, 41, 59, 0.08);
}

.inner-page .plan-form-label {
    color: var(--deep-navy);
}

/* Plan page — light calculator UI */
.plan-page.inner-page {
    background: var(--light-gray) !important;
}

.plan-page .plan-card {
    background: var(--white);
    border-color: rgba(30, 41, 59, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    color: var(--deep-navy);
}

.plan-page .plan-card h3,
.plan-page .summary-box h3,
.plan-page .summary-box-muted h4,
.plan-page .summary-list h4 {
    color: var(--deep-navy);
}

.plan-page .option-chip {
    background: var(--white);
    border-color: rgba(30, 41, 59, 0.1);
    color: var(--deep-navy);
}

.plan-page .option-chip strong {
    color: var(--deep-navy);
}

.plan-page .option-chip span,
.plan-page .option-chip ul li {
    color: var(--muted);
}

.plan-page .option-chip .chip-price {
    color: var(--deep-navy);
    border-bottom-color: var(--border-subtle);
}

.plan-page .option-chip.selected {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.plan-page .plan-form-chip {
    background: var(--white);
    border-color: rgba(30, 41, 59, 0.12);
    color: var(--deep-navy);
}

.plan-page .plan-form-chip:has(input:checked) {
    border-color: rgba(37, 99, 235, 0.55);
    background: rgba(37, 99, 235, 0.08);
    color: var(--deep-navy);
}

.plan-page .plan-card#planCmsCard .option-chip.selected {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
    color: var(--deep-navy);
}

.plan-page .plan-card#planCmsCard .option-chip.selected strong {
    color: var(--deep-navy);
}

.plan-page .plan-card#planCmsCard .option-chip.selected span {
    color: var(--muted);
}

.plan-page .feature-item {
    background: var(--light-gray);
    border-color: rgba(30, 41, 59, 0.08);
    color: var(--deep-navy);
}

.plan-page .summary-box {
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.plan-page .summary-line,
.plan-page .summary-total,
.plan-page .summary-box-muted p,
.plan-page .plan-summary-addons li,
.plan-page .summary-list li,
.plan-page .summary-note {
    color: var(--muted);
}

.plan-page .summary-line strong,
.plan-page .summary-total strong {
    color: var(--deep-navy);
}

.plan-page .plan-get-started {
    border-top-color: var(--border-subtle);
}

.plan-page .plan-form-input.form-control,
.plan-page .plan-form-input.form-select {
    background: var(--white);
    color: var(--deep-navy);
}

.plan-page .plan-form-input.form-control:focus,
.plan-page .plan-form-input.form-select:focus {
    background: var(--white);
}

/* Service detail — light sections */
.service-detail-page.inner-page .sd-main {
    background: var(--white);
    color: var(--deep-navy);
}

.service-detail-page.inner-page .sd-hero {
    background: var(--light-gray);
}

.service-detail-page.inner-page .sd-hero-deco {
    background: radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.service-detail-page.inner-page .sd-hero h1 {
    color: var(--deep-navy);
}

.service-detail-page.inner-page .sd-hero-lead p,
.service-detail-page.inner-page .sd-section-intro,
.service-detail-page.inner-page .sd-benefits p,
.service-detail-page.inner-page .sd-solutions p,
.service-detail-page.inner-page .sd-process p,
.service-detail-page.inner-page .sd-tech p {
    color: var(--muted);
}

.service-detail-page.inner-page .sd-section-alt {
    background: var(--light-gray);
}

.service-detail-page.inner-page .sd-panel {
    background: var(--white);
    border-color: rgba(30, 41, 59, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.service-detail-page.inner-page .sd-link-play {
    color: var(--deep-navy);
}

.service-detail-page.inner-page .sd-play-icon {
    background: var(--white);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--royal-blue);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.service-detail-page.inner-page .sd-accordion .sd-accordion-item {
    border-color: rgba(30, 41, 59, 0.1);
    background: var(--white);
}

.service-detail-page.inner-page .sd-accordion .sd-accordion-item:hover {
    background: var(--light-gray);
}

.service-detail-page.inner-page .sd-accordion h3,
.service-detail-page.inner-page .sd-accordion .accordion-body,
.service-detail-page.inner-page .sd-accordion .accordion-body p {
    color: var(--deep-navy);
}

.service-detail-page.inner-page .sd-accordion .accordion-button {
    color: var(--deep-navy);
}

.service-detail-page.inner-page .sd-benefits h3,
.service-detail-page.inner-page .sd-solutions h3,
.service-detail-page.inner-page .sd-process h3,
.service-detail-page.inner-page .sd-tech h3 {
    color: var(--deep-navy);
}

.inner-page .plan-package-features ul li:before,
.inner-page .summary-list ul li:before,
.inner-page .summary-box-muted ul li:before,
.inner-page .inner-prose ul li:before {
    filter: none;
}

/* —— Inner page hero (matches home banner) —— */
.page-hero {
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: var(--light-gray);
    overflow: hidden;
}

.page-hero--center {
    text-align: center;
}

.page-hero--deco {
    position: relative;
}

.page-hero--deco::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(37, 99, 235, 0.16) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 15%, #000 40%, transparent 80%);
    mask-image: radial-gradient(ellipse 60% 70% at 50% 15%, #000 40%, transparent 80%);
    pointer-events: none;
}

.page-hero--deco .page-hero__inner {
    position: relative;
    z-index: 1;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: var(--deep-navy);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.07), 0 0 60px rgba(37, 99, 235, 0.32);
}


.page-hero--center .page-hero__inner {
    margin-inline: auto;
}

.page-hero--wide .page-hero__inner {
    max-width: none;
}

.page-hero__label {
    display: inline-block;
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--royal-blue);
}

.page-hero__title {
    margin: 0 0 1.15rem;
    font-size: var(--h1-size);
    font-weight: 600;
    line-height: 1.08;
    color: var(--deep-navy);
    max-width: 16ch;
}

.page-hero--center .page-hero__title {
    max-width: none;
    margin-inline: auto;
}

.page-hero__accent {
    color: var(--royal-blue);
}

.page-hero__lead {
    margin: 0;
    max-width: 38rem;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.7;
    color: rgba(30, 41, 59, 0.72);
}

.page-hero--center .page-hero__lead {
    margin-inline: auto;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
}

.page-hero--center .page-hero__actions {
    justify-content: center;
}

/* Values / feature cards grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.value-card {
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1.15rem;
    border-radius: 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
}

.value-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.value-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--muted);
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 56rem;
    margin-inline: auto;
}

.team-card {
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.team-card__avatar {
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.team-card__role {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--royal-blue);
}

.team-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--muted);
    text-align: left;
}

/* Jobs listing */
.jobs-grid {
    display: grid;
    gap: 1rem;
}

.job-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.job-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.job-card__tag {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
}

.job-card__tag--muted {
    background: var(--light-gray);
    color: var(--muted);
}

.job-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.job-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
}

.job-card__link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.15rem;
    border-radius: var(--button-radius);
    background: var(--royal-blue);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.job-card__link:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* Contact layout */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

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

.contact-info-card {
    padding: 1.35rem 1.25rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.contact-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.85rem;
    border-radius: 0.65rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
}

.contact-info-card h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.contact-info-card p,
.contact-info-card a {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--royal-blue);
}

.contact-form-wrap {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.contact-form-wrap h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.contact-form-wrap > p {
    margin: 0 0 1.5rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: var(--button-radius);
    background: var(--royal-blue);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-submit:hover {
    background: var(--accent-hover);
}

/* 404 */
.error-page {
    padding: clamp(4rem, 10vw, 7rem) 0;
    text-align: center;
}

.error-page__code {
    margin: 0 0 0.5rem;
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 600;
    line-height: 1;
    color: var(--royal-blue);
    opacity: 0.15;
}

.error-page__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--deep-navy);
}

/* Plan page hero */
.plan-page .page-hero {
    padding-bottom: 1.5rem;
}

.plan-page .plan-section-title {
    display: none;
}

.plan-page .plan-section-title + .planner-grid,
.plan-page .page-hero + .container > .planner-grid {
    margin-top: 0;
}

/* Inner page section headers */
.section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.section-head__label {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--royal-blue);
}

.section-head h2 {
    margin: 0 0 0.75rem;
    color: var(--deep-navy);
}

.section-head p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
}

.inner-page .inner-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.inner-page .inner-title {
    max-width: none;
    font-weight: 600;
    color: var(--deep-navy);
}

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

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

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

    .job-card {
        grid-template-columns: 1fr;
    }

    .job-card__link {
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .page-hero__title {
        max-width: none;
    }
}

/* Service detail — section polish */
.service-detail-page.inner-page .sd-hero {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.service-detail-page.inner-page .sd-hero-deco {
    display: none;
}

.service-detail-page.inner-page .sd-section h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--deep-navy);
    line-height: 1.2;
}

.service-detail-page.inner-page .sd-benefits .text-center h2 {
    margin-bottom: 1rem;
}

/* Article detail prose */
.inner-page .inner-prose {
    max-width: 42rem;
    margin-inline: auto;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.inner-page .inner-article-cover {
    max-width: 56rem;
    margin-inline: auto;
    padding: 0 0 1rem;
}

.inner-page .inner-article-cover img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

/* Blog cards as articles */
.blog-card {
    display: block;
}

/* servcdetail.html page styles */
:root {
    --sd2-primary-blue: #0066ff;
    --sd2-dark-bg: #030a1c;
}

.btn-primary-custom {
    background-color: var(--sd2-primary-blue);
    color: white;
    border-radius: 50px;
    padding: 10px 24px;
    border: none;
}

.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #e6f0ff, #ffffff);
}

.sd2-hero-banner {
    background: #000;
    border-radius: 16px;
    min-height: 350px;
} /* Replace with your neon 3D graphic */

.feature-card,
.sd2-portfolio-card,
.tech-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    transition: transform 0.3s;
    height: 100%;
}

.feature-card:hover,
.sd2-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tech-section {
    background-color: var(--sd2-dark-bg);
    color: white;
    padding: 80px 0;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #e6f0ff;
    color: var(--sd2-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

      #sd-process,
      #sd-faq {
        scroll-margin-top: 5.5rem;
      }

      /* Hero 2.0 (light gradient + dark neon visual) */
      .sd-hero2 {
        background: linear-gradient(180deg, #eaf1ff 0%, #f6f9ff 45%, #ffffff 100%);
        padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
      }
      .sd-hero2__badge {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.45rem 1.1rem;
        border-radius: 999px;
        background: var(--white);
        border: 1px solid rgba(37, 99, 235, 0.16);
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
        color: var(--royal-blue);
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
      }
      .sd-hero2__dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--royal-blue);
        flex-shrink: 0;
      }
      .sd-hero2 h1 {
        margin: 0 0 1.25rem;
        font-size: clamp(2.25rem, 5vw, 3.5rem);
        font-weight: 800;
        line-height: 1.15;
        color: var(--deep-navy);
      }
      .sd-hero2__accent {
        
        font-style: italic;
        font-weight: 700;
        color: var(--royal-blue);
      }
      .sd-hero2__lead {
        margin: 0 0 2rem;
        max-width: 30rem;
        font-size: 1rem;
        line-height: 1.7;
        color: var(--muted);
      }
      .sd-hero2__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem;
        margin-bottom: 2.5rem;
      }
      .sd-hero2__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.8rem 1.5rem;
        border-radius: var(--button-radius);
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      }
      .sd-hero2__btn--primary {
        background: var(--royal-blue);
        color: var(--white);
      }
      .sd-hero2__btn--primary:hover {
        background: var(--accent-hover);
      }
      .sd-hero2__btn--ghost {
        background: var(--white);
        border: 1px solid rgba(15, 23, 42, 0.12);
        color: var(--deep-navy);
      }
      .sd-hero2__btn--ghost:hover {
        border-color: rgba(37, 99, 235, 0.35);
      }
      .sd-hero2__stats {
        display: flex;
        gap: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 2.5rem;
      }
      .sd-hero2__stat-value {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--deep-navy);
      }
      .sd-hero2__stat-label {
        margin: 0.2rem 0 0;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--muted);
      }
      .sd-hero2__visual {
        position: relative;
        border-radius: 1.5rem;
        overflow: hidden;
        height: 100px;
        min-height: 22rem;
        background: linear-gradient(135deg, #05070d 0%, #0c1330 55%, #262b38 100%);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
      }
      .sd-hero2__visual svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }
      @media (max-width: 767.98px) {
        .sd-hero2__stats {
          gap: 1.5rem;
          flex-wrap: wrap;
        }
        .sd-hero2__visual {
          min-height: 16rem;
        }
      }
      .section-head--left,
      .services-section__header--left {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
      }
      .sd-service-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.65rem;
      }
      .sd-service-meta__label {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--royal-blue);
      }
      .sd-service-meta__arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.5rem;
        height: 1.5rem;
        color: var(--muted);
      }

      /* Stats belt (matches About page) */
      .sd-stats {
        background: var(--light-gray);
        padding: clamp(3rem, 6vw, 5rem) 0;
      }
      .sd-stats__grid {
        display: grid;
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.44fr) minmax(0, 0.78fr);
        gap: 1.25rem;
        align-items: stretch;
      }
      .sd-stats__stack {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }
      .sd-stats__card {
        position: relative;
        overflow: hidden;
        background: var(--white);
        border-radius: 1.25rem;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        padding: 2rem 1.75rem;
        flex: 1;
        min-height: 12.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .sd-stats__card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(15, 23, 42, 0.22) 1.4px, transparent 1.4px);
        background-size: 14px 14px;
        pointer-events: none;
      }
      .sd-stats__card--orbit {
        overflow: visible;
      }
      .sd-stats__card--orbit::before {
        display: none;
      }
      .sd-stats__orbit {
        position: absolute;
        top: -2.25rem;
        right: -2.25rem;
        width: 10rem;
        height: 10rem;
        pointer-events: none;
        z-index: 0;
      }
      .sd-stats__orbit-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px dashed rgba(15, 23, 42, 0.18);
      }
      .sd-stats__orbit-ring--2 {
        inset: 1.85rem;
        border-style: solid;
        border-color: rgba(15, 23, 42, 0.08);
      }
      .sd-stats__orbit-dot {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(15, 23, 42, 0.3);
      }
      .sd-stats__orbit-dot--1 { top: 0.6rem; left: 2.9rem; }
      .sd-stats__orbit-dot--2 { top: 3.4rem; left: 0.4rem; }
      .sd-stats__orbit-dot--3 { top: 5.9rem; left: 3.1rem; background: var(--royal-blue); }
      .sd-stats__value {
        position: relative;
        z-index: 1;
        font-size: clamp(2.75rem, 5.5vw, 3.75rem);
        font-weight: 800;
        line-height: 1;
        margin: 0 0 0.75rem;
        color: var(--deep-navy);
      }
      .sd-stats__suffix {
        color: var(--royal-blue);
      }
      .sd-stats__label {
        position: relative;
        z-index: 1;
        margin: 0;
        font-size: 0.86rem;
        line-height: 1.55;
        color: var(--muted);
      }
      .sd-stats__content {
        background: var(--white);
        border-radius: 1.25rem;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        padding: clamp(1.5rem, 3vw, 2.25rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .sd-stats__kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin: 0 0 1rem;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--royal-blue);
      }
      .sd-stats__content h2 {
        margin: 0 0 0.85rem;
        font-size: clamp(1.2rem, 2vw, 1.5rem);
        font-weight: 800;
        line-height: 1.28;
        color: var(--deep-navy);
      }
      .sd-stats__content p {
        margin: 0 0 0.75rem;
        font-size: 0.94rem;
        line-height: 1.7;
        color: var(--muted);
      }
      .sd-stats__content p:last-child {
        margin-bottom: 0;
      }
      @media (max-width: 991.98px) {
        .sd-stats__grid {
          grid-template-columns: 1fr;
        }
      }

      .split-work {
        padding: clamp(3.5rem, 7vw, 5.5rem) 0;
      }
      .split-work h2 {
        margin: 0 0 1rem;
        line-height: 1.15;
        color: var(--deep-navy);
        max-width: 16ch;
      }
      .split-work__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(2rem, 5vw, 4rem);
        align-items: center;
      }
      .split-work__steps {
        list-style: none;
        margin: 1.75rem 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 2rem;
      }
      .split-work__step {
        display: flex;
        gap: 1.1rem;
        align-items: flex-start;
      }
      .split-work__step-num {
        flex-shrink: 0;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.85rem;
        background: var(--deep-navy);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 700;
      }
      .split-work__step h3 {
        margin: 0 0 0.35rem;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--deep-navy);
      }
      .split-work__step p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--muted);
      }
      .split-work__panel {
        position: relative;
       
      }
      .split-work__panel-img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 20rem;
        object-fit: cover;
        border-radius: 0.9rem;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
      }
      .split-work__caption {
        position: absolute;
        left: 2.25rem;
        right: 2.25rem;
        bottom: -1.5rem;
        background: var(--white);
        border-radius: 0.9rem;
        padding: 1rem 1.15rem;
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
      }
      .split-work__caption-label {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        margin: 0 0 0.35rem;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: var(--royal-blue);
      }
      .split-work__caption p {
        margin: 0;
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--deep-navy);
      }
      @media (max-width: 991.98px) {
        .split-work__inner {
          grid-template-columns: 1fr;
        }
        .split-work__panel-img {
          min-height: 16rem;
        }
      }

      /* Tool cards (compact icon + copy) */
      .tool-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
      }
      .tool-card {
        background: var(--white);
        border-radius: 1rem;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        padding: 1.35rem 1.35rem 1.5rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display:grid;
        gap:60px;
      }
      .tool-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
      }
      .tool-card__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 999px;
        background: rgba(37, 99, 235, 0.1);
        color: var(--royal-blue);
        margin-bottom: 1rem;
      }
      .tool-card__icon img , .tech-showcase__icon img{
          width:22px;
      }
      .tool-card h3 {
        margin: 0 0 0.4rem;
        font-size: 1rem;
        font-weight: 700;
        color: var(--deep-navy);
      }
      .tool-card p {
        margin: 0;
        font-size: 0.86rem;
        line-height: 1.55;
        color: var(--muted);
      }
      @media (max-width: 991.98px) {
        .tool-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 575.98px) {
        .tool-grid {
          grid-template-columns: 1fr;
        }
      }

      /* Bento-style solutions grid */
      .bento-card {
        height: 100%;
        background: var(--white);
        border-radius: 1.1rem;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        overflow: hidden;
      }
      .bento-card__mock {
        height: 20rem;
        overflow: hidden;
      }
      .bento-card__mock img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .bento-card__body {
        padding: 1.25rem 1.4rem 1.5rem;
      }
      .bento-card__body h3 {
        margin: 0 0 0.4rem;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--deep-navy);
      }
      .bento-card__body p {
        margin: 0;
        font-size: 0.88rem;
        line-height: 1.6;
        color: var(--muted);
      }
      @media (max-width: 767.98px) {
        .bento-card__mock {
          height: 14rem;
        }
      }

      /* Tech showcase (unified color-coded grid) */
      .tech-showcase {
        position: relative;
        overflow: hidden;
        background:#fff;
        padding: clamp(3.5rem, 7vw, 5.5rem) 0;
      }
      .tech-showcase::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(15, 23, 42, 0.14) 1px, transparent 1px);
        background-size: 24px 24px;
        -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 0%, #000 30%, transparent 80%);
        mask-image: radial-gradient(ellipse 65% 55% at 50% 0%, #000 30%, transparent 80%);
        pointer-events: none;
      }
      .tech-showcase__header {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 36rem;
        margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
      }
      .tech-showcase__badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        margin: 0 auto 1.25rem;
        border-radius: 0.9rem;
        background: var(--deep-navy);
        color: var(--white);
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.07), 0 10px 24px rgba(15, 23, 42, 0.12);
      }
      .tech-showcase__header .why-us__label {
        color: var(--royal-blue);
      }
      .tech-showcase__header h2 {
        margin: 0 0 1rem;
        line-height: 1.15;
        color: var(--deep-navy);
      }
      .tech-showcase__header .why-us__intro {
        color: var(--muted);
        margin-left: auto;
        margin-right: auto;
      }
      .tech-showcase__grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
      }
      .tech-showcase__card {
        background: var(--white);
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        border-radius: 1.1rem;
        padding: 1.5rem 1.4rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .tech-showcase__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
      }
      .tech-showcase__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.7rem;
        margin-bottom: 1rem;
      }
      .tech-showcase__icon--blue {
        background: rgba(96, 165, 250, 0.14);
        color: #60a5fa;
      }
      .tech-showcase__icon--green {
        background: rgba(52, 211, 153, 0.14);
        color: #34d399;
      }
      .tech-showcase__icon--orange {
        background: rgba(251, 146, 60, 0.14);
        color: #fb923c;
      }
      .tech-showcase__icon--purple {
        background: rgba(167, 139, 250, 0.14);
        color: #a78bfa;
      }
      .tech-showcase__icon--cyan {
        background: rgba(34, 211, 238, 0.14);
        color: #22d3ee;
      }
      .tech-showcase__icon--pink {
        background: rgba(244, 114, 182, 0.14);
        color: #f472b6;
      }
      .tech-showcase__card h3 {
        margin: 0 0 0.35rem;
        font-size: 1rem;
        font-weight: 700;
        color: var(--deep-navy);
      }
      .tech-showcase__card p {
        margin: 0;
        font-size: 0.86rem;
        line-height: 1.55;
        color: var(--muted);
      }
      .tech-showcase__footnote {
        position: relative;
        z-index: 1;
        margin: clamp(2rem, 4vw, 2.75rem) 0 0;
        text-align: center;
        font-size: 0.86rem;
        color: rgba(15, 23, 42, 0.4);
      }
      @media (max-width: 991.98px) {
        .tech-showcase__grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 575.98px) {
        .tech-showcase__grid {
          grid-template-columns: 1fr;
        }
      }

      .about-hero {
        position: relative;
        overflow: hidden;
      }
      .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(37, 99, 235, 0.16) 1px, transparent 1px);
        background-size: 22px 22px;
        -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 15%, #000 40%, transparent 80%);
        mask-image: radial-gradient(ellipse 60% 70% at 50% 15%, #000 40%, transparent 80%);
        pointer-events: none;
      }
      .about-hero .page-hero__inner {
        position: relative;
        z-index: 1;
      }
      .about-hero-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 auto 1.5rem;
        border-radius: 1rem;
        background: var(--deep-navy);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.07), 0 0 60px rgba(37, 99, 235, 0.32);
      }

      .values-grid--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
      .value-card__icon--dark {
        background: var(--deep-navy);
        color: var(--white);
      }
      @media (max-width: 991.98px) {
        .values-grid--4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 575.98px) {
        .values-grid--4 {
          grid-template-columns: 1fr;
        }
      }

      .about-stats {
        background: var(--light-gray);
        padding: clamp(3rem, 6vw, 5rem) 0;
        overflow-x: clip;
      }
      .about-stats__grid {
        display: grid;
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.44fr) minmax(0, 0.78fr);
        gap: 1.25rem;
        align-items: stretch;
      }
      .about-stats__stack {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }
      .about-stats__card {
        position: relative;
        overflow: hidden;
        background: var(--white);
        border-radius: 1.25rem;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        padding: 2rem 1.75rem;
        flex: 1;
        min-height: 12.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .about-stats__card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(15, 23, 42, 0.22) 1.4px, transparent 1.4px);
        background-size: 14px 14px;
        pointer-events: none;
      }
      .about-stats__card--orbit {
        overflow: visible;
      }
      .about-stats__card--orbit::before {
        display: none;
      }
      .about-stats__orbit {
        position: absolute;
        top: -2.25rem;
        right: -2.25rem;
        width: 10rem;
        height: 10rem;
        pointer-events: none;
        z-index: 0;
      }
      .about-stats__orbit-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px dashed rgba(15, 23, 42, 0.18);
      }
      .about-stats__orbit-ring--2 {
        inset: 1.85rem;
        border-style: solid;
        border-color: rgba(15, 23, 42, 0.08);
      }
      .about-stats__orbit-dot {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(15, 23, 42, 0.3);
      }
      .about-stats__orbit-dot--1 { top: 0.6rem; left: 2.9rem; }
      .about-stats__orbit-dot--2 { top: 3.4rem; left: 0.4rem; }
      .about-stats__orbit-dot--3 { top: 5.9rem; left: 3.1rem; background: var(--royal-blue); }
      .about-stats__value {
        position: relative;
        z-index: 1;
        font-size: clamp(2.75rem, 5.5vw, 3.75rem);
        font-weight: 800;
        line-height: 1;
        margin: 0 0 0.75rem;
        color: var(--deep-navy);
      }
      .about-stats__suffix {
        color: var(--royal-blue);
      }
      .about-stats__label {
        position: relative;
        z-index: 1;
        margin: 0;
        font-size: 0.86rem;
        line-height: 1.55;
        color: var(--muted);
      }
      .about-stats__content {
        background: var(--white);
        border-radius: 1.25rem;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        padding: clamp(1.5rem, 3vw, 2.25rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .about-stats__kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin: 0 0 1rem;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--royal-blue);
      }
      .about-stats__kicker-icon {
        flex-shrink: 0;
      }
      .about-stats__content h2 {
        margin: 0 0 0.85rem;
        font-size: clamp(1.2rem, 2vw, 1.5rem);
        font-weight: 800;
        line-height: 1.28;
        color: var(--deep-navy);
      }
      .about-stats__content p {
        margin: 0 0 0.75rem;
        font-size: 0.94rem;
        line-height: 1.7;
        color: var(--muted);
      }
      .about-stats__content p:last-child {
        margin-bottom: 0;
      }
      @media (max-width: 991.98px) {
        .about-stats__grid {
          grid-template-columns: 1fr;
        }
      }

      .about-work {
        padding: clamp(3.5rem, 7vw, 5.5rem) 0;
      }
      .about-work__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(2rem, 5vw, 4rem);
        align-items: center;
      }
      .about-work__steps {
        list-style: none;
        margin: 1.75rem 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
      }
      .about-work__step {
        display: flex;
        gap: 0.9rem;
      }
      .about-work__step-icon {
        flex-shrink: 0;
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.65rem;
        background: rgba(37, 99, 235, 0.1);
        color: var(--royal-blue);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .about-work__step h3 {
        margin: 0 0 0.3rem;
        font-size: 1rem;
        font-weight: 700;
        color: var(--deep-navy);
      }
      .about-work__step p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--muted);
      }
      .about-work__panel {
        background: linear-gradient(160deg, rgba(37, 99, 235, 0.07), rgba(6, 182, 212, 0.09));
        border-radius: 1.25rem;
        padding: 1.75rem;
        border: 1px solid rgba(15, 23, 42, 0.06);
      }
      .about-work__panel-img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 20rem;
        object-fit: cover;
        border-radius: 0.9rem;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
      }
      @media (max-width: 991.98px) {
        .about-work__inner {
          grid-template-columns: 1fr;
        }
        .about-work__panel-img {
          min-height: 16rem;
        }
      }


        .inner-article{
            margin-top: 3rem;
        }
      .inner-article-back {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        margin: 0 0 1.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s ease, gap 0.2s ease;
      }
      .inner-article-back:hover {
        color: var(--royal-blue);
        gap: 0.6rem;
      }
      .inner-article-meta-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.65rem;
        flex-wrap: wrap;
        font-size: 0.85rem;
        color: var(--muted);
        margin: 0;
      }
      .inner-article-meta-row .inner-article-author {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        color: var(--deep-navy);
      }
      .inner-article-author-avatar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 999px;
        background: var(--deep-navy);
        color: var(--white);
        font-size: 0.68rem;
        font-weight: 700;
        flex-shrink: 0;
      }
      .inner-article-meta-row .inner-article-dot {
        color: rgba(30, 41, 59, 0.28);
      }

      .inner-persona-list {
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
        margin: 0 0 1.5rem;
      }
      .inner-persona-list dt {
        font-weight: 700;
        color: var(--deep-navy);
        margin-bottom: 0.25rem;
        font-size: 1rem;
      }
      .inner-persona-list dd {
        margin: 0;
        color: var(--muted);
        font-size: 0.95rem;
        line-height: 1.7;
      }

      .contact-hero-wrap {
        padding: clamp(3rem, 6vw, 5rem) 0;
      }
      .contact-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(1.5rem, 3vw, 2.25rem);
        align-items: stretch;
      }
      .contact-card {
        background: var(--white);
        border-radius: 1.5rem;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
        padding: clamp(1.75rem, 3vw, 2.5rem);
      }
      .contact-card__title {
        margin: 0 0 0.5rem;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--deep-navy);
      }
      .contact-card > p {
        margin: 0 0 1.75rem;
        font-size: 0.95rem;
        color: var(--muted);
      }
      .contact-field-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
      }
      .contact-field {
        margin-bottom: 1.25rem;
      }
      .contact-field label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--deep-navy);
      }
      .contact-field input,
      .contact-field textarea {
        width: 100%;
        padding: 0.85rem 1rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(15, 23, 42, 0.12);
        background: var(--white);
        font: inherit;
        font-size: 0.95rem;
        color: var(--deep-navy);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }
      .contact-field input::placeholder,
      .contact-field textarea::placeholder {
        color: rgba(30, 41, 59, 0.4);
      }
      .contact-field input:focus,
      .contact-field textarea:focus {
        outline: none;
        border-color: var(--royal-blue);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
      }
      .contact-field textarea {
        resize: vertical;
        min-height: 9rem;
      }
      .contact-submit-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0.95rem 1.5rem;
        border: 0;
        border-radius: var(--button-radius);
        background: var(--royal-blue);
        color: var(--white);
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s ease;
      }
      .contact-submit-btn:hover {
        background: var(--accent-hover);
      }

      .contact-detail-list {
        display: flex;
        flex-direction: column;
      }
      .contact-detail-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.15rem 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.07);
      }
      .contact-detail-item:first-child {
        padding-top: 0;
      }
      .contact-detail-item:last-of-type {
        border-bottom: 0;
      }
      .contact-detail-icon {
        flex-shrink: 0;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 999px;
        background: var(--light-gray);
        color: var(--deep-navy);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .contact-detail-item h3 {
        margin: 0 0 0.25rem;
        font-size: 1rem;
        font-weight: 700;
        color: var(--deep-navy);
      }
      .contact-detail-item p,
      .contact-detail-item a {
        margin: 0;
        font-size: 0.95rem;
        color: var(--muted);
        text-decoration: none;
      }
      .contact-detail-item a:hover {
        color: var(--royal-blue);
      }

      .contact-map {
        position: relative;
        margin-top: 1.5rem;
        border-radius: 1rem;
        overflow: hidden;
        height: 24rem;
        background: #eef1f5;
      }
      .contact-map iframe {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
      }
      .contact-map__pin {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -100%);
        color: #EF4444;
      }
      .contact-map__pin svg {
        filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
      }

      @media (max-width: 767.98px) {
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .contact-field-row {
          grid-template-columns: 1fr;
        }
      }

/* Careers apply modal */
button.job-card__link {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

body.apply-modal-lock {
    overflow: hidden;
}

.apply-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.apply-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.apply-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: var(--white);
    border-radius: 1rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.apply-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: var(--deep-navy);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.apply-modal__close:hover {
    background: rgba(15, 23, 42, 0.12);
}

.apply-modal__title {
    margin: 0 1.75rem 1.25rem 0;
    font-size: 1.25rem;
    color: var(--deep-navy);
}

.apply-modal__field {
    margin-bottom: 1rem;
}

.apply-modal__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-navy);
    margin-bottom: 0.35rem;
}

.apply-modal__required {
    color: #EF4444;
}

.apply-modal__control,
.apply-modal__dialog .wpcf7-form-control:not(.wpcf7-submit) {
    display: block;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--deep-navy);
    border-radius: 0.45rem;
    font-size: 0.95rem;
    font-family: inherit;
    padding: 0.55rem 0.75rem;
}

.apply-modal__control:focus,
.apply-modal__dialog .wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.apply-modal__control::placeholder,
.apply-modal__dialog .wpcf7-form-control::placeholder {
    color: rgba(154, 160, 173, 0.75);
}

.apply-modal__dialog .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 1rem;
}

.apply-modal__dialog .wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-navy);
    margin-bottom: 0.35rem;
}

.apply-modal__dialog .wpcf7-textarea {
    min-height: 110px;
    resize: vertical;
}

.apply-modal__dialog .wpcf7-not-valid-tip {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.apply-modal__dialog .wpcf7-response-output {
    margin: 1rem 0 0;
    padding: 0.6rem 0.85rem;
    border-radius: 0.45rem;
    font-size: 0.88rem;
}

.apply-modal__control--file,
.apply-modal__dialog .wpcf7-file {
    padding: 0.45rem 0.55rem;
    cursor: pointer;
}

.apply-modal__control--file::file-selector-button,
.apply-modal__dialog .wpcf7-file::file-selector-button {
    border: 0;
    border-radius: 0.35rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    margin-right: 0.75rem;
    cursor: pointer;
}

.apply-modal__submit,
.apply-modal__dialog .wpcf7-submit {
    width: 100%;
    margin-top: 0.5rem;
    border: 0;
    border-radius: var(--button-radius);
    padding: 0.7rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--royal-blue);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s ease;
}

.apply-modal__submit:hover,
.apply-modal__dialog .wpcf7-submit:hover {
    background: var(--accent-hover);
}
.site-footer__brand img{
    filter:invert(1);
    width:155px;
}
