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

:root {
    --bg: #f7f7fb;
    --bg-alt: #f1f2f8;
    --panel: #ffffff;
    --text: #1c1b29;
    --muted: #6f7282;
    --primary: #2a1f5e;
    --primary-dark: #21174a;
    --accent: #c7c4e6;
    --shadow: 0 24px 60px rgba(31, 32, 43, 0.12);
}

body {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    background: linear-gradient(180deg, #fafbff 0%, #f3f4fb 55%, #f7f7fb 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.is-loading {
    overflow: hidden;
}

body.is-loaded .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.menu-open {
    overflow: hidden;
}

body.search-open {
    overflow: hidden;
}

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

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

.preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(199, 196, 230, 0.35), transparent 55%),
        linear-gradient(180deg, #f9f9ff 0%, #f1f2fb 100%);
    display: grid;
    place-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader-inner {
    display: grid;
    gap: 16px;
    place-items: center;
    text-align: center;
}

.preloader-orbit {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid rgba(42, 31, 94, 0.18);
    background: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 28px rgba(42, 31, 94, 0.15);
    animation: orbit 1.4s ease-in-out infinite alternate;
}

.preloader-orbit img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 8px 16px rgba(42, 31, 94, 0.2));
}

.preloader-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

@keyframes orbit {
    from {
        transform: rotate(-25deg);
    }
    to {
        transform: rotate(25deg);
    }
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(28, 27, 41, 0.08);
    box-shadow: 0 12px 24px rgba(28, 27, 41, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 0;
    position: relative;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: clamp(36px, 5vw, 56px);
    width: auto;
    max-width: min(200px, 48vw);
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 600;
    color: #1f265f;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    position: relative;
}

.nav-link:hover {
    color: #13194a;
}

.nav-caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.85;
}

.nav-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: static;
}

.nav-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    width: min(1080px, 94vw);
    padding-top: 12px;
    transform: translate(-50%, 0) scale(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}

.nav-item.is-open .nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.nav-caret-btn {
    border: none;
    background: transparent;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: inherit;
}

.nav-caret-btn:focus-visible {
    outline: 2px solid rgba(42, 31, 94, 0.4);
    outline-offset: 2px;
    border-radius: 999px;
}

.nav-mega-inner {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(220px, 260px) 1fr;
    gap: 24px;
}

.nav-mega-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 122, 61, 0.12);
    color: #ff7a3d;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.nav-mega-copy h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #1f265f;
}

.nav-mega-note {
    margin: 0 0 18px;
    color: var(--muted);
}

.nav-mega-btn {
    padding: 10px 20px;
}

.nav-mega-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
}

.nav-mega-card {
    display: grid;
    gap: 10px;
    text-align: center;
    color: #1f265f;
    font-weight: 600;
}

.nav-mega-thumb {
    height: 120px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-mega-card:hover .nav-mega-thumb {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(31, 32, 43, 0.18);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.nav-lang {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-lang-toggle {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 10px;
    border-radius: 999px;
    line-height: 1;
    border: 1px solid rgba(31, 32, 43, 0.12);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-lang-toggle::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
}

.nav-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    background: #ffffff;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 18px 34px rgba(31, 32, 43, 0.16);
    border: 1px solid rgba(31, 32, 43, 0.08);
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 20;
}

.nav-lang:focus-within .nav-lang-menu,
.nav-lang:hover .nav-lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-lang-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    padding: 6px 10px;
    border-radius: 10px;
}

.nav-lang-link.is-active {
    background: rgba(31, 32, 43, 0.06);
}

.nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(31, 32, 43, 0.08);
    background: #ffffff;
    color: #1f265f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-icon svg {
    width: 18px;
    height: 18px;
}

.nav-icon:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 32, 43, 0.18);
    box-shadow: 0 8px 16px rgba(28, 27, 41, 0.12);
}

.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 15, 44, 0.45);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 25;
    padding: 20px;
}

.search-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-modal-panel {
    width: min(720px, 92vw);
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.search-modal-header h3 {
    margin: 0;
}

.search-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(42, 31, 94, 0.08);
    color: #1f265f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-close svg {
    width: 18px;
    height: 18px;
}

.search-input {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f4f6ff;
    border: 1px solid rgba(42, 31, 94, 0.08);
}

.search-input svg {
    width: 18px;
    height: 18px;
    color: #1f265f;
}

.search-input input {
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    color: var(--text);
}

.search-results {
    display: grid;
    gap: 10px;
}

.search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(42, 31, 94, 0.08);
    color: #1f265f;
    font-weight: 600;
}

.search-result:hover {
    border-color: rgba(42, 31, 94, 0.18);
    box-shadow: 0 10px 20px rgba(28, 27, 41, 0.1);
}

.search-empty {
    margin: 0;
    color: var(--muted);
    display: none;
}

.nav-drawer {
    position: fixed;
    inset: 0;
    background: rgba(12, 15, 44, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}

.nav-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-drawer-panel {
    width: min(420px, 88vw);
    height: 100%;
    background: #ffffff;
    padding: 28px 26px;
    box-shadow: -12px 0 30px rgba(12, 15, 44, 0.18);
    transform: translateX(30px);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-drawer.is-open .nav-drawer-panel {
    transform: translateX(0);
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-close svg {
    width: 18px;
    height: 18px;
}

.nav-drawer-body {
    display: grid;
    gap: 24px;
    overflow-y: auto;
    padding-right: 4px;
}

.nav-drawer-links {
    display: none;
    gap: 0;
    border-top: 1px solid rgba(31, 32, 43, 0.08);
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    font-weight: 600;
    color: #1f265f;
    border-bottom: 1px solid rgba(31, 32, 43, 0.08);
}

.drawer-link.has-plus::after {
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
    color: #1f265f;
}

.nav-drawer-info h4 {
    margin: 18px 0 12px;
    font-size: 1.05rem;
}

.drawer-note {
    color: var(--muted);
    margin: 0 0 12px;
}

.drawer-info-list {
    display: grid;
    gap: 12px;
}

.drawer-info-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    color: #5a5f73;
}

.drawer-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(31, 32, 43, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.drawer-icon svg {
    width: 16px;
    height: 16px;
}

.drawer-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(42, 31, 94, 0.35);
}

.drawer-cta:hover {
    box-shadow: 0 18px 36px rgba(42, 31, 94, 0.4);
    transform: translateY(-2px);
}

.drawer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.drawer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(31, 32, 43, 0.14);
    color: #1f265f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.drawer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 32, 43, 0.24);
    box-shadow: 0 10px 18px rgba(28, 27, 41, 0.12);
}

.drawer-social svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1040px) {
    .nav-mega-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .nav {
        gap: 16px;
    }

    .nav-icon-search {
        display: none;
    }

    .nav-drawer-panel {
        width: min(360px, 86vw);
        padding: 22px 20px;
    }

    .nav-drawer-links {
        display: grid;
    }

    .drawer-note {
        display: none;
    }

    .nav-mega {
        display: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(42, 31, 94, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(42, 31, 94, 0.35);
}

.btn-ghost {
    border-color: rgba(42, 31, 94, 0.2);
    color: var(--primary);
}

.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(199, 196, 230, 0.45);
    filter: blur(0);
    top: -180px;
    right: -140px;
    z-index: 0;
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    position: relative;
    z-index: 1;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 3vw + 1.5rem, 4.2rem);
    margin: 16px 0;
}

.about-hero h1,
.services-hero h1,
.projects-hero-full h1,
.projects-hero h1 {
    font-family: "Space Grotesk", sans-serif;
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0 32px;
}

.hero-visual {
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
}

.hero-portrait {
    width: min(650px, 95vw);
    aspect-ratio: 4 / 3;
    border-radius: 40px;
    background: linear-gradient(160deg, #efeefe 0%, #d9d5f3 45%, #c7c4e6 100%);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.hero-portrait::before,
.hero-portrait::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.hero-portrait::before {
    width: 90px;
    height: 90px;
    background: rgba(42, 31, 94, 0.12);
    top: -20px;
    right: -24px;
}

.hero-portrait::after {
    width: 140px;
    height: 140px;
    background: rgba(42, 31, 94, 0.08);
    bottom: -30px;
    left: -30px;
}

.hero-media {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-float {
    position: absolute;
    background: var(--panel);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 6px;
    min-width: 180px;
    z-index: 3;
}

.hero-float-top {
    top: 18px;
    right: -30%;
}

.hero-float-bottom {
    bottom: 20px;
    left: -10%;
    right: auto;
}

.float-title {
    font-size: 0.85rem;
    color: var(--muted);
}

.float-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.1);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
}

.float-pill.warning {
    background: rgba(199, 196, 230, 0.6);
}

.float-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
}

.link-arrow::after {
    content: "->";
    font-size: 1.1rem;
}

.section {
    padding: 80px 0;
}

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

.section-head.center {
    justify-content: center;
    text-align: center;
}

.section-head.center .section-note {
    margin-left: auto;
    margin-right: auto;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-note {
    max-width: 420px;
    color: var(--muted);
    text-align: justify;
}

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

.cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    padding: 24px;
    border-radius: 20px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.services-slider {
    padding-top: 40px;
}

.services-slider {
    --slider-accent: #7cc0ff;
}

.slider {
    position: relative;
}

.slider-viewport {
    overflow: visible;
    padding: 10px 0 20px;
}

.slider-track {
    display: flex;
    gap: 22px;
    transition: transform 0.35s linear;
    will-change: transform;
}

.slider-card {
    min-width: 340px;
    max-width: 380px;
    flex: 0 0 auto;
    padding: 26px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(31, 32, 43, 0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease;
}

.slider-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: transparent;
    transition: background 0.2s ease;
}

.slider-card:hover::before {
    background: rgba(124, 192, 255, 0.6);
}

.slider-card:hover,
.slider-card:focus-within {
    background: #eef5ff;
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(124, 192, 255, 0.18);
    color: #2a1f5e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.slider-card h3 {
    margin: 0 0 12px;
}

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

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2a1f5e;
}

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

 

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: rgba(42, 31, 94, 0.25);
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slider-dot.is-active {
    background: var(--slider-accent);
    box-shadow: 0 0 0 5px rgba(124, 192, 255, 0.22);
}

.about-split {
    background: #ffffff;
}

.about-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.about-media {
    position: relative;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1.1fr;
    grid-template-rows: 220px 160px;
}

.about-photo {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(140deg, #d7e6ff, #f1f4ff);
    box-shadow: var(--shadow);
}

.about-photo.tall {
    grid-row: span 2;
    background: linear-gradient(150deg, #c7c4e6, #f3f2ff);
}

.about-photo.wide {
    background: linear-gradient(150deg, #cfe6ff, #f8f9ff);
}

.about-stat {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 18px;
    padding: 38px 18px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 248px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff7a3d;
}

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

.about-content h2 {
    margin-top: 12px;
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 18px;
}

.about-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(31, 32, 43, 0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 122, 61, 0.12);
    color: #ff7a3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.about-feature h4 {
    margin: 0 0 6px;
}

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

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
}

.avatar-group {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #ffffff;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.08);
    font-size: 0.75rem;
    color: var(--primary);
}

.why {
    background: #ffffff;
}

.why .pill {
    background: rgba(47, 99, 255, 0.12);
    color: #2f63ff;
}

.why-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.why-copy h2 {
    margin: 12px 0 16px;
}

.why-stats {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(31, 32, 43, 0.08);
}

.why-stat-value {
    margin: 0 0 6px;
    font-size: 2rem;
    color: #2f63ff;
}

.why-stat p {
    margin: 0;
    color: var(--muted);
}

.why-cards {
    display: grid;
    gap: 18px;
}

.why-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 18px;
    background: #f3f6ff;
    border: 1px solid rgba(47, 99, 255, 0.12);
    box-shadow: 0 18px 30px rgba(31, 32, 43, 0.08);
    align-items: start;
}

.why-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(47, 99, 255, 0.12);
    color: #2f63ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.why-card h3 {
    margin: 0 0 6px;
}

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

.accent {
    background: linear-gradient(180deg, rgba(199, 196, 230, 0.35), rgba(255, 255, 255, 0));
}

.split {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.accent .split {
    grid-template-columns: minmax(240px, 0.9fr) minmax(360px, 1.3fr);
}

.steps {
    display: grid;
    gap: 18px;
    max-width: 820px;
    margin-left: auto;
}

.accent .steps {
    max-width: 100%;
    margin-left: 0;
    gap: 14px;
}

.step {
    display: flex;
    gap: 18px;
    padding: 24px 20px;
    min-height: 120px;
    border-radius: 18px;
    background: var(--panel);
}

.accent .step {
    padding: 18px 22px;
    min-height: 96px;
}

.step-index {
    font-weight: 700;
    color: var(--primary);
}

.work-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.work-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.work-thumb {
    height: 180px;
    background: linear-gradient(120deg, #2a1f5e, #c7c4e6);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 16px;
    background-origin: content-box;
    background-clip: content-box;
}

.work-thumb.alt {
    background: linear-gradient(120deg, #c7c4e6, #efeefe);
}

.work-thumb.dark {
    background: linear-gradient(120deg, #1f1848, #8e86c9);
}

.work-body {
    padding: 20px;
}

.stats {
    background: var(--bg-alt);
}

.stats-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    margin: 0;
}

.testimonials {
    --slider-accent: #7aa7ff;
    background: #1f265f;
}

.testimonials .section-head h2 {
    color: #ffffff;
}

.testimonials .section-head .pill {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.testimonials .section-head .section-note {
    color: rgba(255, 255, 255, 0.72);
}

.testimonials .section-note {
    max-width: 560px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.testimonial-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 22px rgba(28, 27, 41, 0.18);
    display: grid;
    place-items: center;
    background: #f1f3f7;
    color: #1c1b29;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.testimonial-meta h3 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-meta span {
    font-size: 0.85rem;
    color: var(--muted);
}

.testimonial-rating {
    display: inline-flex;
    gap: 2px;
    color: #5a7cff;
    font-size: 0.9rem;
}

.testimonial-card p {
    margin: 0;
    color: var(--muted);
    text-align: justify;
}

.faq {
    background: #f7f8fd;
    position: relative;
}

.faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(180deg, rgba(31, 38, 95, 0.08), rgba(255, 255, 255, 0));
}

.faq-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.faq-copy h2 {
    margin: 12px 0 16px;
}

.faq-contact {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-contact-label {
    font-size: 0.95rem;
    color: var(--muted);
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #2a1f5e;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(42, 31, 94, 0.28);
}

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

.faq-item {
    border-radius: 16px;
    background: #f6f7fb;
    border: 1px solid rgba(31, 32, 43, 0.08);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(31, 32, 43, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: none;
    background: transparent;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: #1f265f;
    font-size: 1rem;
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(31, 32, 43, 0.15);
    position: relative;
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #1f265f;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 10px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    background: #ffffff;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted);
}

.faq-item.is-open .faq-answer {
    border-top: 1px solid rgba(31, 32, 43, 0.06);
}

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

.callout {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    padding: 40px;
    background: var(--panel);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form input {
    background: rgba(42, 31, 94, 0.04);
    border: 1px solid rgba(42, 31, 94, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text);
    font-family: inherit;
}

.contact-form input::placeholder {
    color: var(--muted);
}

.site-footer {
    position: relative;
    padding: 80px 0 40px;
    color: #f4f4f8;
    overflow: hidden;
}

.site-footer .logo-img {
    height: clamp(34px, 4vw, 52px);
    max-width: min(200px, 70vw);
    width: auto;
}

.footer-hero {
    background: #121433;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 15, 44, 0.92), rgba(12, 15, 44, 0.98)),
        radial-gradient(circle at 20% 20%, rgba(199, 196, 230, 0.12), transparent 55%);
    opacity: 0.95;
    pointer-events: none;
}

.footer-cta {
    text-align: center;
    display: grid;
    gap: 20px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    font-size: clamp(1.8rem, 2.4vw + 1rem, 2.6rem);
    margin: 0 auto;
    max-width: 620px;
}

.btn-cta {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid rgba(42, 31, 94, 0.2);
    border-radius: 999px;
    padding: 12px 26px;
    box-shadow: 0 14px 30px rgba(42, 31, 94, 0.18);
    gap: 12px;
    display: inline-flex;
    align-items: center;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(42, 31, 94, 0.24);
}

.btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid rgba(42, 31, 94, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    position: relative;
    z-index: 1;
}

.footer-col {
    display: grid;
    gap: 10px;
}

.footer-col h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #ffffff;
}

.footer-col a,
.footer-col p {
    color: rgba(244, 244, 248, 0.75);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-news-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.footer-news-item p {
    margin: 0;
}

.news-time {
    font-size: 0.75rem;
    color: rgba(244, 244, 248, 0.6);
}

.news-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(140deg, #9aa5ff, #7a6fe0);
    display: none;
}

.news-avatar.alt {
    background: linear-gradient(140deg, #8ed0ff, #c7c4e6);
}

.footer-contact {
    margin-top: 32px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    color: rgba(244, 244, 248, 0.85);
}

.footer-contact-phone .contact-label,
.footer-contact-mail .contact-label,
.footer-contact-address .contact-label {
    color: #ffffff;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(244, 244, 248, 0.95);
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1f265f;
}

.footer-contact-mail .contact-label,
.footer-contact-mail .contact-value,
.footer-contact-phone .contact-label,
.footer-contact-phone .contact-value,
.footer-contact-address .contact-label,
.footer-contact-address .contact-value {
    display: block;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    color: rgba(244, 244, 248, 0.65);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(244, 244, 248, 0.7);
}

.footer-social a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-label {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.contact-hero {
    position: relative;
    padding: 60px 0 45px;
    color: #ffffff;
    overflow: hidden;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(21, 24, 48, 0.55);
    z-index: 1;
}

.contact-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin-top: 85px;
}

.contact-hero .pill {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.contact-hero .section-note {
    color: rgba(255, 255, 255, 0.75);
}

.contact-main-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.contact-card {
    background: var(--panel);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
    height: 100%;
}

.contact-info-list {
    display: grid;
    gap: 16px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-info-item strong {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.contact-form-panel .contact-form {
    width: 100%;
}

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

.contact-form-grid .full {
    grid-column: 1 / -1;
}

.contact-form textarea {
    background: rgba(42, 31, 94, 0.04);
    border: 1px solid rgba(42, 31, 94, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text);
    font-family: inherit;
    resize: vertical;
}

.contact-map {
    padding: 0 0 80px;
}

.contact-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-banner {
    padding: 60px 0;
    background: #ffffff;
    color: var(--text);
}

.contact-banner .eyebrow {
    color: var(--muted);
}

.contact-banner h2 {
    color: var(--text);
}

.contact-banner .btn-light {
    background: var(--primary);
    color: #ffffff;
}

.contact-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.btn-light {
    background: #ffffff;
    color: #ff7a3d;
    border-color: transparent;
}

.services-hero {
    position: relative;
    padding: 110px 0 90px;
    background: radial-gradient(circle at 15% 20%, rgba(199, 196, 230, 0.35), transparent 55%),
        linear-gradient(140deg, rgba(42, 31, 94, 0.08), rgba(255, 255, 255, 0.6));
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -120px;
    width: 320px;
    height: 320px;
    background: linear-gradient(140deg, rgba(42, 31, 94, 0.75), rgba(199, 196, 230, 0.3));
    border-radius: 48px;
    transform: rotate(12deg);
    opacity: 0.18;
}

.services-hero-inner {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    position: relative;
    z-index: 1;
}

.services-hero-copy,
.services-hero-visual {
    animation: heroFadeUp 0.7s ease both;
}

.services-hero-visual {
    animation-delay: 0.12s;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.services-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(42, 31, 94, 0.8), rgba(199, 196, 230, 0.6));
    border-radius: 999px;
}

.services-kicker {
    margin: 0 0 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(42, 31, 94, 0.82);
}

.services-hero-copy h1 {
    margin: 12px 0 16px;
    font-size: clamp(2.2rem, 2.6vw + 1rem, 3.4rem);
    line-height: 1.08;
    max-width: 520px;
}

.services-highlight {
    display: inline-block;
    padding: 0 10px 2px;
    border-radius: 999px;
    color: var(--primary);
    background: linear-gradient(120deg, rgba(42, 31, 94, 0.18), rgba(199, 196, 230, 0.7));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    animation: highlightFill 2.8s ease-in-out infinite;
}

.type-letters {
    display: inline-flex;
    white-space: pre;
    gap: 0;
}

.services-hero-visual {
    position: relative;
    min-height: 380px;
    display: grid;
    align-items: end;
}

.services-hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #ffffff;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.services-hero-image.is-main {
    height: 360px;
}

.services-hero-image.is-alt {
    position: absolute;
    right: -6%;
    bottom: -28px;
    width: min(46%, 240px);
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    border: 8px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 18px 40px rgba(31, 32, 43, 0.2);
}

.services-hero-badge {
    position: absolute;
    left: -6%;
    top: 18px;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 6px;
    max-width: 220px;
}

.services-hero-badge .badge-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.services-hero-badge .badge-note {
    color: var(--muted);
    font-size: 0.85rem;
}

.services-hero-badge .badge-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
}

.type-letters .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(6px);
    animation: letterIn 0.45s ease forwards;
    animation-delay: var(--delay, 0s);
}

.type-letters .letter.is-space {
    width: 0.35em;
}

.type-letters .letter.is-space::before {
    content: "\00a0";
}

.services-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0 18px;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.services-hero-panel {
    background: var(--panel);
    padding: 26px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.panel-badge {
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 122, 61, 0.14);
    color: #ff7a3d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.panel-steps {
    display: grid;
    gap: 12px;
}

.panel-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(42, 31, 94, 0.04);
    border: 1px solid rgba(42, 31, 94, 0.08);
}

.panel-step-num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(42, 31, 94, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.panel-step-title {
    margin: 0 0 2px;
    font-weight: 600;
}

.panel-step-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

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

.panel-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--muted);
}

.panel-value {
    color: var(--text);
    font-weight: 600;
}

.services-stack-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(240px, 0.7fr) minmax(280px, 1.3fr);
    align-items: start;
}

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

.service-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.service-index {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(42, 31, 94, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.deliverables-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.deliverable-card {
    background: var(--panel);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.deliverable-card h3 {
    margin: 0 0 10px;
}

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

.pricing-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
    background: var(--panel);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.pricing-card.featured {
    border: 1px solid rgba(42, 31, 94, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f6f4ff 100%);
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}

.pricing-cta {
    justify-self: start;
    margin-top: 6px;
}

.services-why {
    background: #ffffff;
}

.services-why-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
    align-items: start;
}

.services-why-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(31, 38, 95, 0.12);
    color: #1f265f;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-why-copy h2 {
    margin: 0 0 16px;
}

.services-why-copy .section-note {
    margin-bottom: 22px;
}

.services-why-cards {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services-why-card {
    background: var(--panel);
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(31, 32, 43, 0.08);
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
}

.services-why-card h3 {
    margin: 0;
}

.services-why-card p {
    margin: 0;
    color: var(--muted);
}

.services-why-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(31, 38, 95, 0.12);
    color: #1f265f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.services-why-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.services-cta {
    padding: 70px 0;
}

.services-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px;
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.blog-page {
    background: linear-gradient(180deg, #f9f9ff 0%, #f4f5fb 55%, #f7f7fb 100%);
}

.blog-detail-hero {
    position: relative;
    padding: 120px 0 90px;
    background: url("../assets/images/blog.png") center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 15, 44, 0.88), rgba(12, 15, 44, 0.55));
}

.blog-detail-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.blog-detail-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(2.6rem, 3.6vw + 1rem, 4.4rem);
    color: #ffffff;
}

.blog-detail-hero p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.blog-detail {
    padding-top: 40px;
}

.blog-detail-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
    align-items: start;
}

.blog-detail-article {
    background: #ffffff;
    border-radius: 26px;
    padding: 26px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.blog-detail-cover {
    height: 320px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.blog-detail-meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 0.85rem;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(42, 31, 94, 0.35);
}

.blog-detail-article h2 {
    margin: 0;
}

.blog-detail-article p {
    margin: 0;
    color: var(--muted);
}

.blog-detail-quote {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(42, 31, 94, 0.06);
    border-left: 4px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.blog-detail-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.blog-detail-gallery {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.blog-detail-gallery img {
    height: 160px;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.blog-sidebar {
    display: grid;
    gap: 18px;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 32, 43, 0.08);
}

.sidebar-card h3 {
    margin: 0 0 14px;
}

.sidebar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: #f4f5fb;
    border: 1px solid rgba(31, 32, 43, 0.08);
}

.sidebar-search input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-family: inherit;
    width: 100%;
}

.sidebar-search input:focus {
    outline: none;
}

.sidebar-search button {
    border: none;
    background: var(--primary);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
}

.sidebar-count {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.recent-posts {
    display: grid;
    gap: 12px;
}

.recent-post {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    align-items: center;
    color: inherit;
}

.recent-thumb {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.recent-title {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.recent-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-comments {
    padding-top: 20px;
}

.blog-comment-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.blog-comment-form {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.blog-comment-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.blog-comment-form input,
.blog-comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(31, 32, 43, 0.12);
    font-family: inherit;
    background: #ffffff;
}

.blog-comment-form input:focus,
.blog-comment-form textarea:focus {
    outline: none;
    border-color: rgba(42, 31, 94, 0.35);
    box-shadow: 0 0 0 3px rgba(42, 31, 94, 0.08);
}

.blog-cta-banner {
    padding: 60px 0;
    background: #ffffff;
    color: var(--text);
}

.blog-cta-banner .eyebrow {
    color: var(--muted);
}

.blog-cta-banner h2 {
    margin: 10px 0;
    color: var(--text);
}

.blog-cta-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.blog-cta-inner p {
    margin: 8px 0 0;
    color: var(--muted);
}

.blog-cta-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #f4f6fb;
    border: 1px solid rgba(31, 38, 95, 0.15);
}

.blog-cta-form input {
    border: none;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    padding: 8px 12px;
    min-width: 220px;
}

.blog-cta-form input::placeholder {
    color: rgba(31, 38, 95, 0.45);
}

.blog-cta-form input:focus {
    outline: none;
}

.blog-cta-form button {
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.projects-hero-full {
    position: relative;
    min-height: 70vh;
    padding: 50px 0 90px;
    background: url("../assets/images/grow-hero.jpg") center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.projects-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 15, 44, 0.88), rgba(12, 15, 44, 0.52));
}

.projects-hero-content {
    position: relative;
    z-index: 1;
    max-width: 840px;
}

.projects-hero-full .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.projects-hero-full h1 {
    margin: 12px 0 16px;
    font-size: clamp(2.4rem, 3.2vw + 1rem, 4.1rem);
    color: #ffffff;

}

.projects-hero-full .lead {
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
}

.projects-hero-full .btn-ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.projects-hero-full .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.projects-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.projects-hero-ribbon {
    position: relative;
    margin-top: -36px;
    z-index: 2;
}

.projects-hero-kpis {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 24px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    box-shadow: 0 16px 40px rgba(31, 32, 43, 0.12);
}

.hero-kpi {
    display: grid;
    gap: 4px;
}

.kpi-value {
    font-weight: 700;
    color: var(--primary);
}

.kpi-label {
    color: var(--muted);
    font-size: 0.85rem;
}

.projects-cases-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.projects-cases-slider .case-card {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 340px;
    min-height: auto;
    align-items: stretch;
    border-radius: 16px;
    padding: 22px;
    background: #ffffff !important;
    color: var(--text);
    border: none;
    box-shadow: 0 18px 30px rgba(31, 32, 43, 0.1);
}

.projects-cases-slider .case-card::before {
    content: none;
}

.projects-cases-slider .case-card::after {
    content: none;
}

.projects-cases-slider .case-card--wide,
.projects-cases-slider .case-card--tall {
    min-height: auto;
}

.projects-cases-slider .case-card-content {
    max-width: none;
    height: 100%;
    background: transparent;
    align-content: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    backdrop-filter: none;
}

.projects-cases-slider .case-tag {
    background: rgba(31, 38, 95, 0.1);
    color: #1f265f;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
}

.projects-cases-slider .case-card h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text);
}

.projects-cases-slider .case-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.projects-cases-slider .case-meta {
    margin-top: auto;
    font-size: 0.82rem;
    color: var(--muted);
    gap: 10px;
}

.projects-cases-slider .case-meta span::before {
    background: rgba(31, 38, 95, 0.35);
}

.projects-cases-slider .link-arrow {
    margin-top: 8px;
    color: #1f265f;
    font-weight: 600;
}

.case-card {
    position: relative;
    min-height: 280px;
    border-radius: 26px;
    overflow: hidden;
    background: var(--case-bg) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 38, 95, 0.05), rgba(31, 38, 95, 0.6));
}

.case-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.case-card-content {
    position: relative;
    z-index: 1;
    padding: 24px;
    display: grid;
    gap: 10px;
    max-width: 440px;
    background: linear-gradient(135deg, rgba(31, 38, 95, 0.8), rgba(58, 74, 160, 0.6));
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.case-card--wide {
    min-height: 340px;
}

.case-card--tall {
    min-height: 400px;
}

.case-tag {
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.case-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.case-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.case-meta span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.projects-hero {
    position: relative;
    padding: 100px 0 70px;
    background: linear-gradient(150deg, rgba(31, 38, 95, 0.08), rgba(255, 255, 255, 0));
    overflow: hidden;
}

.projects-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(42, 31, 94, 0.1);
    top: -220px;
    right: -180px;
}

.projects-hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 122, 61, 0.12);
    bottom: -180px;
    left: -140px;
}

.projects-hero-inner {
    position: relative;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 1fr);
    align-items: center;
}

.projects-hero-copy h1 {
    margin: 12px 0 16px;
    font-size: clamp(2.2rem, 2.8vw + 1rem, 3.6rem);
}

.projects-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0 18px;
}

.projects-hero-stats {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.projects-hero-stat {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(31, 32, 43, 0.08);
    display: grid;
    gap: 4px;
}

.projects-hero-stat .stat-value {
    font-weight: 700;
    color: var(--primary);
}

.projects-hero-stat .stat-label {
    font-size: 0.85rem;
    color: var(--muted);
}

.projects-hero-showcase {
    display: grid;
    gap: 18px;
}

.project-feature {
    background: var(--panel);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-rows: 200px 1fr;
}

.project-feature-media {
    position: relative;
    background: linear-gradient(140deg, #1f1848, #8e86c9);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.project-feature-media::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
}

.project-feature-content {
    padding: 22px 24px 24px;
    display: grid;
    gap: 10px;
}

.project-mini-grid {
    display: grid;
    gap: 12px;
}

.project-mini {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(31, 32, 43, 0.08);
}

.project-mini-media {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(140deg, #ff7a3d, #ffd0b5);
}

.project-mini-media.alt {
    background: linear-gradient(140deg, #7cc0ff, #c7c4e6);
}

.project-mini-title {
    margin: 0 0 4px;
    font-weight: 600;
}

.project-mini-meta {
    font-size: 0.8rem;
    color: var(--muted);
}

.projects-portfolio .section-head {
    margin-bottom: 26px;
}

.projects-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.projects-filter {
    border: none;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
}

.projects-filter.is-active {
    background: rgba(255, 122, 61, 0.18);
    color: #ff7a3d;
}

.projects-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(31, 32, 43, 0.08);
    display: grid;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 32, 43, 0.16);
    box-shadow: 0 18px 36px rgba(31, 32, 43, 0.12);
}

.project-card-media {
    height: 170px;
    background: linear-gradient(140deg, #2a1f5e, #c7c4e6);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.project-card-media.alt {
    background: linear-gradient(140deg, #8ed0ff, #c7c4e6);
}

.project-card-media.dark {
    background: linear-gradient(140deg, #1f1848, #8e86c9);
}

.project-card-body {
    padding: 20px 22px 22px;
    display: grid;
    gap: 10px;
}

.project-tag {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.85rem;
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-meta span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(42, 31, 94, 0.35);
}

.project-process {
    background: #ffffff;
}

.project-process-inner {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
    align-items: start;
}

.project-steps {
    display: grid;
    gap: 16px;
}

.project-step {
    background: #f4f5ff;
    border-radius: 18px;
    padding: 20px 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    border: 1px solid rgba(42, 31, 94, 0.08);
}

.project-step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(42, 31, 94, 0.14);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.projects-cta {
    padding: 70px 0;
}

.projects-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px;
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.about-hero .hero-grid {
    align-items: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.about-hero .hero-badge {
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
}

.about-values {
    background: #ffffff;
}

.about-values-grid {
    margin-top: 10px;
}

.about-value-card {
    display: grid;
    gap: 14px;
    border: 1px solid rgba(31, 32, 43, 0.06);
}

.about-value-card h3 {
    margin: 0;
}

.about-value-card p {
    margin: 0;
    color: var(--muted);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
    text-align: center;
}

.team-card h3 {
    margin: 0;
}

.team-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    box-shadow: 0 14px 30px rgba(28, 27, 41, 0.18);
}

.team-role {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.team-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #ffb82e;
    font-size: 0.85rem;
}

.team-note {
    margin: 0;
    color: var(--muted);
}

.team-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(31, 32, 43, 0.14);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-action svg {
    width: 16px;
    height: 16px;
}

.team-action:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 32, 43, 0.24);
    box-shadow: 0 10px 18px rgba(28, 27, 41, 0.12);
}

.success-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.success-card .work-body {
    display: grid;
    gap: 12px;
}

.success-card .work-thumb {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.success-card .pill {
    margin-bottom: 0;
}

.success-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
}

.success-metrics span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.08);
    font-size: 0.75rem;
}

.about-cta {
    padding: 70px 0;
}

.about-cta-inner {
    position: relative;
    padding: 44px;
    border-radius: 28px;
    background: url("../assets/images/grow-hero.jpg") center/cover no-repeat;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.about-cta-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 15, 44, 0.88), rgba(12, 15, 44, 0.55));
}

.about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.about-cta .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.about-cta .section-note {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
}

.about-cta .btn-primary {
    background: #ff7a3d;
    box-shadow: 0 14px 32px rgba(255, 122, 61, 0.35);
    position: relative;
    z-index: 1;
}

.about-cta .btn-primary:hover {
    box-shadow: 0 18px 36px rgba(255, 122, 61, 0.45);
}

.stats .stat {
    display: grid;
    gap: 8px;
    justify-items: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(42, 31, 94, 0.1);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.leader-spotlight {
    background: #ffffff;
}

.leader-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1.05fr);
    align-items: center;
}

.leader-photo {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(140deg, #c7c4e6, #f3f2ff);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leader-card {
    background: var(--panel);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.leader-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.leader-metric {
    background: #f4f5ff;
    border-radius: 16px;
    padding: 12px 14px;
    display: grid;
    gap: 4px;
}

.leader-metric span {
    font-weight: 700;
    color: var(--primary);
}

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

.leader-sign {
    display: grid;
    gap: 4px;
}

.leader-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

.leader-role {
    font-size: 0.9rem;
    color: var(--muted);
}

.post-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.post-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
}

.post-card h3 {
    margin: 0;
}

.post-card p {
    margin: 0;
    color: var(--muted);
}

.post-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.post-body {
    padding: 20px 22px 22px;
    display: grid;
    gap: 10px;
}

.post-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.about-hero {
    position: relative;
    padding: 100px 0 80px;
    background: url("../assets/images/about-us.png") center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 15, 44, 0.88), rgba(12, 15, 44, 0.5));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.about-hero .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.about-hero h1 {
    color: #ffffff;
    margin: 12px 0 12px;
    font-size: clamp(2.2rem, 2.6vw + 1rem, 3.2rem);
}

.about-hero .section-note {
    color: rgba(255, 255, 255, 0.78);
    max-width: 420px;
}

.about-intro {
    padding: 60px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
}

.about-intro-media {
    position: relative;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    grid-template-rows: 170px 170px;
    align-items: stretch;
}

.about-intro-photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(140deg, #d7e6ff, #f1f4ff);
}

.about-intro-photo.small {
    grid-column: 1;
    grid-row: 1;
}

.about-intro-photo.tall {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.about-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro-stat {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 6px;
    max-width: 160px;
}

.about-intro-stat .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f265f;
}

.about-intro-stat .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
}

.about-intro-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(31, 38, 95, 0.12);
    color: #1f265f;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.about-intro-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.about-intro-item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.about-intro-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.about-intro-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(31, 38, 95, 0.12);
    color: #1f265f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-intro-icon svg {
    width: 20px;
    height: 20px;
}

.about-intro-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.btn-accent {
    background: #1f265f;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(31, 38, 95, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(31, 38, 95, 0.45);
}

.about-logos {
    padding: 26px 0 40px;
    background: #ffffff;
}

.about-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.about-logos-row span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.06);
}

.about-logos-note {
    margin: 18px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    max-width: 520px;
}

.leadership {
    background: var(--bg-alt);
}

.leadership-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.leadership-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
}

.leadership-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.leadership-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.leadership-role {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.leadership-note {
    margin: 0;
    color: var(--muted);
}

.leadership-rating {
    display: flex;
    gap: 4px;
    color: #ffb82e;
    font-size: 0.85rem;
}

.leadership-actions {
    display: flex;
    gap: 10px;
}

.leadership-actions a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(31, 32, 43, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #ffffff;
}

.leadership-actions svg {
    width: 16px;
    height: 16px;
}

.success-stories {
    background: #ffffff;
}

.story-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.story-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
}

.story-thumb {
    height: 200px;
    background-size: cover;
    background-position: top center;
}

.story-body {
    padding: 18px 20px 22px;
    display: grid;
    gap: 10px;
}

.story-body h3 {
    margin: 0;
}

.story-body p {
    margin: 0;
    color: var(--muted);
}

.story-tag {
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.story-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
}

.story-rating {
    display: inline-flex;
    gap: 4px;
    color: #ffb82e;
    font-size: 0.8rem;
}

.about-testimonial {
    padding: 80px 0;
    background: #1f265f;
    color: #ffffff;
}

.about-testimonial-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
}

.about-testimonial-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(12, 15, 44, 0.35);
}

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

.about-testimonial-card .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.about-testimonial-card h2 {
    margin: 10px 0 16px;
    color: #ffffff;
}

.about-testimonial-card .section-note {
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}

.about-testimonial-author {
    display: grid;
    gap: 4px;
    margin-top: 16px;
}

.about-testimonial-author .author-name {
    font-weight: 600;
    color: #ffffff;
}

.about-testimonial-author .author-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.about-features-strip {
    background: var(--bg-alt);
}

.feature-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
}

.feature-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    justify-items: center;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(42, 31, 94, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.feature-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.about-cta-banner {
    padding: 70px 0;
    background: var(--panel);
    color: var(--text);
}

.about-cta-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.about-cta-banner .eyebrow {
    color: var(--muted);
}

.about-cta-banner .section-note {
    color: var(--muted);
}

.btn-light {
    background: #ffffff;
    color: #ff7a3d;
    border: none;
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.25);
}

.about-cta-banner .btn-light {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(42, 31, 94, 0.28);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 255, 255, 0.35);
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes letterIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightFill {
    0% {
        background-size: 0% 100%;
    }
    45% {
        background-size: 100% 100%;
    }
    100% {
        background-size: 100% 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-hero-copy,
    .services-hero-visual {
        animation: none;
    }

    .type-letters .letter {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .services-highlight {
        animation: none;
        background-size: 100% 100%;
    }
}

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

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

@media (max-width: 820px) {
    .nav-links {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero {
        padding-top: 60px;
    }
    .hero-visual {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto auto;
        gap: 16px;
        align-items: start;
    }

    .hero-portrait {
        grid-column: 1 / -1;
        width: 100%;
    }

    .hero-float {
        min-width: 0;
    }

    .hero-float-top,
    .hero-float-bottom {
        position: static;
        margin-top: 0;
    }
    .accent .split {
        grid-template-columns: 1fr;
    }
    .step {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .about-media {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .about-photo.tall {
        grid-row: auto;
    }

    .about-stat {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 10px;
    }

    .steps {
        max-width: 100%;
        margin-left: 0;
    }
    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .callout {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .services-hero {
        padding-top: 70px;
    }

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

    .services-hero-visual {
        min-height: 320px;
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        grid-template-rows: auto auto;
        gap: 14px;
        align-items: end;
    }

    .services-hero-badge {
        position: absolute;
        left: 4%;
        top: 18px;
        margin-top: 0;
        max-width: 220px;
    }

    .services-hero-image.is-alt {
        position: absolute;
        right: -4%;
        bottom: -20px;
        width: min(46%, 220px);
    }

    .blog-detail-hero {
        padding: 90px 0 70px;
    }

    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-article {
        padding: 22px;
    }

    .blog-cta-form {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .blog-cta-form input {
        min-width: 0;
        flex: 1 1 180px;
    }

    .projects-hero-full {
        padding: 90px 0 70px;
    }

    .projects-hero-content {
        max-width: 100%;
    }

    .projects-hero-ribbon {
        margin-top: -24px;
    }

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

    .case-card--wide,
    .case-card--tall {
        min-height: 300px;
    }

    .projects-hero {
        padding-top: 70px;
    }

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

    .project-feature {
        grid-template-rows: 180px 1fr;
    }

    .project-process-inner {
        grid-template-columns: 1fr;
    }

    .projects-cta-inner {
        justify-content: flex-start;
    }

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

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

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

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-index {
        width: 44px;
        height: 44px;
    }

    .services-cta-inner {
        justify-content: flex-start;
    }

    .contact-hero {
        padding: 60px 0 40px;
    }

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

    .contact-banner-inner {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-media {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        grid-template-rows: 140px 140px;
        gap: 12px;
    }

    .about-intro-stat {
        max-width: 100%;
        padding: 12px;
    }

    .about-logos-row {
        justify-content: center;
    }

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

    .story-card {
        min-height: auto;
    }

    .about-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-testimonial-media img {
        height: auto;
        object-fit: contain;
    }

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

    .about-cta-banner-inner {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 14px 0;
    }

    .logo-img {
        height: clamp(32px, 10vw, 42px);
        max-width: min(180px, 70vw);
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-portrait {
        border-radius: 28px;
    }

    .hero-float {
        width: 100%;
        max-width: 320px;
    }

    .services-hero-image.is-main {
        height: 300px;
    }

    .services-hero-image.is-alt {
        width: min(50%, 200px);
        bottom: -12px;
    }

    .services-hero-badge {
        padding: 12px 14px;
    }

    .section-head {
        align-items: flex-start;
        gap: 16px;
    }

    .section-note {
        text-align: left;
    }

    .slider-viewport {
        overflow: hidden;
    }

    .slider-track {
        gap: 16px;
    }

    .slider-card {
        min-width: min(86vw, 320px);
        max-width: 100%;
        padding: 22px;
    }

    .about-intro-media {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        grid-template-rows: 120px 120px;
        gap: 10px;
        align-items: stretch;
    }

    .about-intro-photo {
        min-height: 110px;
    }

    .about-intro-photo.small {
        grid-column: 1;
        grid-row: 1;
    }

    .about-intro-photo.tall {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .about-intro-stat {
        grid-column: 1;
        grid-row: 2;
        padding: 10px;
        border-radius: 12px;
    }

    .about-intro-stat .stat-value {
        font-size: 1.1rem;
    }

    .about-intro-stat .stat-label {
        font-size: 0.75rem;
    }

    .about-cta-inner,
    .projects-cta-inner,
    .services-cta-inner,
    .about-cta-banner-inner,
    .contact-banner-inner {
        padding: 28px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .leader-card,
    .contact-card,
    .blog-detail-article {
        padding: 20px;
    }

    .contact-hero-content {
        margin-top: 40px;
    }

    .contact-map iframe {
        height: 280px;
        border-radius: 18px;
    }

    .site-footer {
        padding: 60px 0 32px;
    }

    .footer-contact {
        padding: 14px;
    }

    .footer-news {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .about-logos {
        display: none;
    }

    .success-stories {
        padding-top: 36px;
    }

    .about-testimonial-media img {
        height: auto;
        object-fit: contain;
    }

    .contact-hero::after {
        background: rgba(21, 24, 48, 0.78);
    }

    .contact-hero-content {
        margin-top: 40px;
    }
}

@media (max-width: 520px) {
    .nav {
        gap: 10px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-icon,
    .nav-close,
    .search-close {
        width: 34px;
        height: 34px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .hero-visual {
        min-height: 260px;
    }

    .hero-actions,
    .projects-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn,
    .projects-hero-actions .btn {
        width: min(100%, 280px);
        justify-content: center;
    }

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

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

    .footer-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

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

    .blog-detail-meta {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .blog-detail-cover {
        display: none;
    }

    .blog-detail-gallery img {
        height: 140px;
    }

    .footer-contact-item {
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .services-hero-visual {
        min-height: 260px;
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        grid-template-rows: auto auto;
        gap: 12px;
    }

    .services-hero-image.is-alt {
        position: absolute;
        right: -2%;
        bottom: -14px;
        width: min(48%, 200px);
        margin-left: 0;
    }

    .services-hero-badge {
        position: absolute;
        left: 4%;
        top: 12px;
        max-width: 210px;
    }

    .services-hero-badge {
        display: none;
    }

    .about-media {
        gap: 12px;
    }

    .about-photo {
        height: 200px;
    }

    .about-photo.tall {
        height: 240px;
    }

    .why-copy h2 {
        font-size: 1.6rem;
    }

    .why-stats {
        gap: 12px;
        margin-top: 16px;
        padding-top: 14px;
    }

    .why-stat-value {
        font-size: 1.6rem;
    }

    .why-stat p {
        font-size: 0.95rem;
    }

    .why-stats {
        justify-items: center;
        text-align: center;
    }

    .why-stat {
        text-align: center;
    }
}
