:root {
    --dark: #1A202C;
    --gray: #4A5568;
    --accent: #0F4671;
    --light: #E5E7EB;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --section-padding: 120px;
    --container-max: 1080px;
    --transition: 300ms ease;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    background: var(--white);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    max-width: var(--container-max) !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    width: 100% !important;
}
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}
h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}
h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}
h3 {
    font-size: 1.125rem;
    font-weight: 600;
}
p {
    color: var(--gray);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-family);
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--dark);
    box-shadow: 0 4px 12px rgba(26, 32, 44, 0.2);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 70, 113, 0.2);
}
.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}
.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: all var(--transition);
}
.header.scrolled {
    background: var(--white);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img {
    height: 48px;
    width: auto;
}
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray);
    transition: color var(--transition);
}
.nav-link:hover {
    color: var(--dark);
}
.nav-link-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 4px;
}
.nav-link-cta:hover {
    background: var(--dark);
    color: var(--white) !important;
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-family);
    border: none;
}
.dropdown-arrow {
    transition: transform var(--transition);
}
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    overflow: hidden;
    border: 1px solid var(--light);
}
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: block;
    padding: 14px 24px;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    border-bottom: 1px solid var(--light);
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item:hover {
    background: var(--off-white);
    color: var(--accent);
    padding-left: 28px;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
}
.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}
.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/modern-sky.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 60%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse 80% 60% at center,
            rgba(15, 70, 113, 0.12) 0%,
            rgba(15, 70, 113, 0.05) 40%,
            transparent 70%);
    animation: heroBreathing 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse 70% 50% at center,
            rgba(15, 70, 113, 0.08) 0%,
            rgba(229, 231, 235, 0.5) 30%,
            transparent 60%);
    animation: heroBreathing 14s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}
@keyframes heroBreathing {
    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}
.hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.hero-accent-line {
    width: 2px;
    height: 180px;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 8px;
}
.hero-content {
    max-width: 640px;
}
.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 24px;
}
.hero-title {
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.75;
}
.hide-mobile {
    display: inline;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--light) 20%,
            var(--light) 80%,
            transparent 100%);
    z-index: 1;
}
.section {
    padding: var(--section-padding) 0;
}
.section-light {
    background: var(--off-white);
}
.section-white {
    background: var(--white);
}
.section-header {
    max-width: 640px;
    margin-bottom: 72px;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
}
.section-title {
    margin-bottom: 24px;
    line-height: 1.3;
}
.section-lead {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray);
}
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}
.pillar {
    padding-top: 24px;
    border-top: 2px solid var(--accent);
}
.pillar-title {
    margin-bottom: 16px;
    color: var(--dark);
}
.pillar-text {
    font-size: 0.9375rem;
    line-height: 1.75;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    padding: 40px;
    background: var(--off-white);
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.service-icon {
    width: 44px;
    height: 44px;
    color: #001F3F;
    margin-bottom: 20px;
}
.service-title {
    margin-bottom: 12px;
    color: var(--dark);
}
.service-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray);
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.client-type {
    padding-left: 24px;
    border-left: 2px solid var(--accent);
}
.client-title {
    margin-bottom: 12px;
    color: var(--dark);
}
.client-text {
    font-size: 0.9375rem;
    line-height: 1.75;
}
.why-sigma-section {
    position: relative;
    overflow: hidden;
}
.why-sigma-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.why-sigma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 35%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0.5) 70%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}
.why-sigma-section .container {
    position: relative;
    z-index: 2;
}
.why-sigma {
    max-width: 640px;
}
.why-list {
    margin-top: 40px;
}
.why-list li {
    padding: 20px 0 20px 36px;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 400;
    position: relative;
}
.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001F3F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.why-list li:first-child {
    padding-top: 0;
}
.why-list li:first-child::before {
    top: 10px;
    transform: none;
}
.why-list li:last-child {
    padding-bottom: 0;
}
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            #E0E0E0 15%,
            #E0E0E0 85%,
            transparent 100%);
}
.section-light+.section-white,
.section-white+.section-light {
    position: relative;
}
.section-light+.section-white::before,
.section-white+.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            #E0E0E0 15%,
            #E0E0E0 85%,
            transparent 100%);
}
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
    text-align: center;
}
.cta-content {
    max-width: 560px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}
.cta-text {
    font-size: 1.0625rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-section .btn-primary {
    background: var(--accent);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 12px rgba(15, 70, 113, 0.25);
}
.cta-section .btn-primary:hover {
    background: #0a3a5c;
    color: var(--white) !important;
    box-shadow: 0 6px 16px rgba(15, 70, 113, 0.35);
}
.footer {
    background: var(--off-white);
    padding: 64px 0 40px;
    border-top: 1px solid var(--light);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--light);
}
.footer-logo {
    height: 28px;
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray);
}
.footer-links {
    display: flex;
    gap: 32px;
}
.footer-links a {
    font-size: 0.875rem;
    color: var(--gray);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-contact a {
    font-size: 0.875rem;
    color: var(--gray);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--accent);
}
.footer-bottom {
    padding-top: 32px;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray);
}
.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.about-content h2 {
    margin-bottom: 24px;
}
.about-content p {
    font-size: 1.0625rem;
    margin-bottom: 24px;
    text-align: justify;
}
.about-highlight {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: 32px;
    display: block;
}
.results-section {
    text-align: center;
    position: relative;
    padding-bottom: 80px;
}
.results-title {
    color: #4A90E2;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
}
.results-title span {
    color: var(--accent);
    display: block;
}
.results-cloud {
    position: relative;
    height: 300px;
    max-width: 900px;
    margin: 0 auto 40px;
}
.result-item {
    position: absolute;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    width: max-content;
}
.result-item:nth-child(1) {
    top: 0%;
    right: 10%;
    font-size: 1.1rem;
}
.result-item:nth-child(2) {
    top: 20%;
    left: 10%;
}
.result-item:nth-child(3) {
    top: 40%;
    left: 30%;
    font-size: 1.2rem;
}
.result-item:nth-child(4) {
    top: 35%;
    right: 20%;
}
.result-item:nth-child(5) {
    top: 60%;
    left: 15%;
}
.result-item:nth-child(6) {
    top: 70%;
    right: 15%;
}
.results-highlight-box {
    background: #E8EBF0;
    padding: 32px 48px;
    display: inline-block;
    border-radius: 4px;
    max-width: 800px;
    width: 100%;
}
.results-highlight-text {
    color: var(--accent);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card-v2 {
    background: #F0F2F5;
    padding: 0;
    border-radius: 4px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-header-v2 {
    padding: 32px 24px;
    background: #E8EBF0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--dark);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.service-body-v2 {
    padding: 32px 24px;
    flex-grow: 1;
}
.service-list-v2 li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}
.service-list-v2 li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark);
    font-weight: bold;
}
.detail-section-header {
    margin-bottom: 48px;
}
.detail-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #3182CE;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
}
.detail-title .text-dark {
    color: var(--accent);
    display: block;
}
.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: flex-start;
}
.detail-content-side {
    padding-right: 24px;
}
.detail-cards-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.detail-subtitle {
    font-size: 1.1rem;
    border-top: 2px solid var(--dark);
    border-bottom: 1px solid var(--dark);
    padding: 16px 0;
    margin: 24px 0 48px;
    color: var(--dark);
    text-align: center;
    font-style: italic;
}
.partners-grid-static {
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}
.partner-logo-static {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: none;
    opacity: 1;
    transition: var(--transition);
    margin: 0 auto;
}
.partner-logo-static:hover {
    filter: none;
    opacity: 1;
}
.partner-placeholder {
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    font-size: 0.9rem;
    text-align: center;
    border: 1px dashed #CBD5E0;
    padding: 12px;
}
.detail-card {
    background: #F0F2F5;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    flex-direction: column;
}
.detail-card h4 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.detail-card-text {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.team-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.team-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    color: var(--accent);
    margin-bottom: 24px;
    text-align: right;
}
.team-title span {
    color: #3182CE;
    display: block;
}
.team-description {
    text-align: justify;
    font-size: 1rem;
}
.team-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.team-member-placeholder {
    aspect-ratio: 1;
    background-color: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.team-member-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--light);
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.contact-info-side {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-image-side {
    position: relative;
    min-height: 400px;
    background-color: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.contact-image-frame {
    background: var(--white);
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    max-width: 80%;
}
.contact-list {
    margin-top: 40px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    font-size: 1.1rem;
    color: var(--accent);
}
.contact-icon-circle {
    width: 40px;
    height: 40px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    :root {
        --section-padding: 88px;
    }
    .pillars {
        gap: 40px;
    }
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-section-grid,
    .contact-split,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-image-side {
        min-height: 300px;
        order: -1;
    }
    .team-title {
        text-align: left;
    }
    .partners-grid-static {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }
    .container {
        padding: 0 24px;
    }
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
    .about-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partners-grid-static {
        grid-template-columns: repeat(2, 1fr);
    }
    .consulting-grid {
        grid-template-columns: 1fr;
    }
    .menu-toggle {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 48px;
        transition: right var(--transition);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    }
    .nav.active {
        right: 0;
    }
    .nav-link {
        font-size: 1rem;
        color: var(--dark);
    }
    .nav-link-cta {
        margin-top: 16px;
        color: var(--white) !important;
    }
    .nav-dropdown {
        position: relative;
        width: 100%;
    }
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
    .nav-dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid var(--light);
    }
    .nav-dropdown.active .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .pillars,
    .services-grid,
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 64px;
    }
    .hero-inner {
        flex-direction: column;
        gap: 0;
    }
    .hero-accent-line {
        width: 40px;
        height: 2px;
        margin-bottom: 24px;
        margin-top: 0;
    }
    .hide-mobile {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .service-card {
        padding: 28px;
    }
    .section-header {
        margin-bottom: 48px;
    }
}
.partners-bar {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 32px;
    text-align: center;
}
.partners-title {
    display: none;
}
.partners-carousel {
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 0;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}
.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollPartners 25s linear infinite;
}
.partners-track:hover {
    animation-play-state: paused;
}
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.partner-logo {
    height: 36px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 300ms ease;
    vertical-align: middle;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.partner-logo[alt="Facebank"] {
    height: 42px;
    max-width: 150px;
}
.partner-logo[alt="Vestiva"] {
    position: relative;
    top: -2px;
}
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 100px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-inner {
        flex-direction: column;
    }
    .hero-accent-line {
        display: none;
    }
    .hero-content {
        padding-right: 0;
    }
    .hero-title {
        font-size: 2.6rem;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 40px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 18px 24px;
        font-size: 1rem;
    }
    .partners-bar {
        display: none;
    }
    .partners-carousel {
        padding: 20px 0;
        border-radius: 0;
        background: rgba(248, 249, 250, 0.98);
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
    }
    .partners-track {
        gap: 50px;
        animation-duration: 18s;
    }
    .partner-logo {
        height: 26px;
        max-width: 95px;
    }
    .partner-logo[alt="Facebank"] {
        height: 30px;
    }
    .partner-logo[alt="Vestiva"] {
        top: 0;
    }
}
@media (max-width: 480px) {
    .hero {
        padding-top: 85px;
        padding-bottom: 24px;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .partners-bar {
        margin-top: 32px;
    }
    .partners-title {
        font-size: 0.6rem;
    }
    .partners-carousel {
        padding: 16px 0;
    }
    .partners-track {
        gap: 40px;
        animation-duration: 16s;
    }
    .partner-logo {
        height: 22px;
        max-width: 80px;
    }
    .partner-logo[alt="Facebank"] {
        height: 26px;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 3rem;
}
.stitch-card {
    position: relative;
    height: 420px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.5s ease;
    background: #000;
}
.stitch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.stitch-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    z-index: 0;
}
.stitch-card:hover .stitch-card-bg {
    transform: scale(1.1);
}
.stitch-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.95), rgba(30, 58, 138, 0.5), transparent);
    opacity: 0.6;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.stitch-card:hover .stitch-card-overlay {
    opacity: 0.95;
}
.stitch-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    box-sizing: border-box;
}
.stitch-card-header {
    transition: transform 0.5s ease;
    transform: translateY(0);
}
.stitch-card:hover .stitch-card-header {
    transform: translateY(-8px);
}
.stitch-pill {
    display: block;
    width: 3rem;
    height: 0.25rem;
    background-color: #3b82f6;
    border-radius: 9999px;
    margin-bottom: 1rem;
    transition: all 0.5s ease;
}
.stitch-card:hover .stitch-pill {
    width: 5rem;
    background-color: #ffffff;
}
.stitch-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
}
.stitch-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.stitch-card:hover .stitch-details {
    max-height: 300px;
}
.stitch-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem 0;
    text-align: left;
}
.stitch-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f1f5f9;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}
.stitch-card:hover .stitch-item {
    opacity: 1;
    transform: translateY(0);
}
.stitch-card:hover .stitch-item:nth-child(1) {
    transition-delay: 0.1s;
}
.stitch-card:hover .stitch-item:nth-child(2) {
    transition-delay: 0.15s;
}
.stitch-card:hover .stitch-item:nth-child(3) {
    transition-delay: 0.2s;
}
.stitch-card:hover .stitch-item:nth-child(4) {
    transition-delay: 0.25s;
}
.stitch-icon {
    font-size: 20px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
:root {
    --stitch-about-blue: #3b82f6;
    --stitch-about-dark: #1A1D23;
    --stitch-about-gray: #F8F9FA;
}
.stitch-about-section {
    width: 100%;
    background-color: #f8fafc;
    min-height: auto;
    margin-top: 0;
    padding-top: 4rem;
    padding-bottom: 3rem;
}
.stitch-about-container {
    display: flex;
    width: 100%;
}
.stitch-about-image-side {
    flex: 0 0 45%;
    position: relative;
    overflow: visible;
    min-height: 450px;
}
.stitch-about-image-side img.main-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}
.stitch-floating-badge {
    position: absolute;
    bottom: 80px;
    right: -30px;
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-width: 280px;
}
.stitch-badge-icon {
    background: #EFF6FF;
    color: var(--stitch-about-blue);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stitch-badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.stitch-badge-title {
    display: block;
    font-weight: 700;
    color: var(--stitch-about-dark);
    font-size: 16px;
}
.stitch-badge-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}
.stitch-about-content-side {
    flex: 1;
    padding: 20px 0 20px 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.stitch-eyebrow {
    color: var(--stitch-about-blue);
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    text-align: left;
}
.stitch-about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 32px;
    color: #3182CE;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
}
.stitch-about-title .highlight {
    color: var(--accent);
    display: block;
}
.stitch-about-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stitch-about-body p {
    color: #475569;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 600px;
    text-align: left;
}
.stitch-statement {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 40px;
    font-weight: 700;
    border-bottom: 2px solid #3b82f6;
    display: inline-block;
    padding-bottom: 8px;
    text-align: left;
}
.stitch-cta-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--stitch-about-dark);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}
.stitch-cta-link:hover {
    color: var(--stitch-about-blue);
}
.stitch-cta-link .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.stitch-cta-link:hover .arrow {
    transform: translateX(6px);
}
.stitch-about-stats {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    gap: 40px;
}
.stitch-stat-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.stitch-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--stitch-about-dark);
}
.stitch-stat-label {
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
}
@media (max-width: 1024px) {
    .stitch-about-container {
        flex-direction: column;
    }
    .stitch-about-image-side {
        min-height: 400px;
        order: -1;
    }
    .stitch-floating-badge {
        display: none;
    }
    .stitch-about-content-side {
        padding: 60px 24px;
        text-align: center;
        align-items: center;
    }
    .stitch-eyebrow,
    .stitch-about-title,
    .stitch-about-body p,
    .stitch-statement,
    .stitch-stat-item,
    .stitch-badge-content {
        text-align: center;
    }
    .stitch-about-title {
        font-size: 40px;
    }
    .stitch-about-stats {
        gap: 20px;
        width: 100%;
    }
    .stitch-stat-item {
        align-items: center;
    }
}