/* Container */
.container-custom {
    max-width: 1632px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 50;
    height: var(--header-height);
    transition: transform 0.3s ease-in-out;
}

header.scrolled,
header:hover {
    border-bottom: 1px solid var(--grey-30);
}

nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-area {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-link-wrapper {
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.nav-link-wrapper.has-dropdown {
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav-link-wrapper.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
    transition: background-color var(--transition-base);
}

.nav-link-wrapper.has-dropdown:hover::after {
    background-color: var(--grey-100);
}

.nav-link-wrapper.has-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.32px;
    color: var(--grey-100);
    text-decoration: none;
    transition: color var(--transition-base);
    white-space: nowrap;
}

.nav-chevron {
    width: 16px;
    height: 16px;
    display: inline-block;
    transition: transform var(--transition-base);
}

.nav-dropdown {
    position: fixed;
    top: var(--header-height);
    left: 0;
    background-color: var(--white);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 320px;
    display: none;
    z-index: 1000;
}

.nav-link-wrapper.has-dropdown:hover .nav-dropdown {
    display: block;
}

.nav-dropdown-item {
    display: block;
    margin-bottom: 8px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-base);
    cursor: pointer;
    background-color: var(--grey-10);
    text-decoration: none;
}

.nav-dropdown-item:last-child {
    margin-bottom: 0;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:active {
    background-color: var(--grey-20);
}

.nav-dropdown-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.32px;
    color: var(--grey-100);
    margin-bottom: 8px;
}

.nav-dropdown-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    letter-spacing: 0;
    color: var(--grey-60);
}

.nav-cta-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-cta {
    background-color: var(--brand-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.32px;
    height: 44px;
    padding-left: 28px;
    padding-right: 28px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: opacity var(--transition-base);
}

.btn-cta:hover {
    opacity: 0.9;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--grey-100);
}

.mobile-menu {
    display: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 10000;
    overflow-y: auto;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    display: flex; 
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 8px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--grey-100);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 28px;
    height: 28px;
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu-list {
    padding: 0 20px;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu-item {
    margin-bottom: 10px;
    line-height: 1.2;
}

.mobile-menu-item-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--grey-100);
    text-decoration: none;
    cursor: pointer;
}

.mobile-menu-chevron {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-menu);
    flex-shrink: 0;
}

.mobile-menu-item.has-submenu.active .mobile-menu-chevron {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 10px;
}

.mobile-menu-item.has-submenu.active .mobile-submenu {
    display: block;
}

.mobile-submenu-item {
    padding: 8px 0;
}

.mobile-submenu-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--grey-100);
    text-decoration: none;
    margin-bottom: 8px;
}

.mobile-submenu-description {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--grey-60);
}

.mobile-menu-cta {
    margin-top: 40px;
    padding: 0 20px 40px;
    flex-shrink: 0;
}

.mobile-menu-cta .btn-cta {
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    min-height: 56px;
}

/* Hero Section */
.hero-section {
    padding-top: clamp(60px, 7.5vw, 120px);
    padding-bottom: 0;
}

.hero-content {
    max-width: var(--container-inner);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-title {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin-bottom: clamp(20px, 2.5vw, 40px);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--grey-70);
    margin-bottom: clamp(40px, 5.8vw, 90px);
}

.hero-image-wrapper {
    width: var(--container-inner);
    max-width: calc(100% - 80px);
    height: 728px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(60px, 9vw, 140px);
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

/* Section Spacing */
.section-spacing {
    margin-top: clamp(60px, 9vw, 140px);
    margin-bottom: clamp(60px, 9vw, 140px);
}

/* AI Consulting Tab Section */
.consulting-section {
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(0);
    transition: transform 0.6s ease-out;
}

.consulting-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin: 0;
    margin-bottom: clamp(32px, 4vw, 60px);
    text-align: center;
}

.tab-container {
    margin-bottom: 0;
    width: 100%;
}

.feature-container {
    width: 100%;
    max-width: var(--container-inner);
    margin: 0 auto;
}

.feature-images-container {
    position: relative;
    width: var(--container-inner);
    max-width: calc(100% - 80px);
    height: 490px;
    margin: 0 auto;
    z-index: 1;
}

.feature-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    width: var(--container-inner);
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

.tab-button {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--grey-50);
    background: none;
    border: none;
    border-bottom: 2px solid var(--grey-30);
    cursor: pointer;
    padding: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-menu);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--grey-100);
    width: var(--progress, 0%);
    transition: none;
}

.tab-button.active {
    color: var(--grey-100);
}

.feature-image-wrapper img,
.tab-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}

.feature-text-overlay {
    position: absolute;
    right: 100px;
    bottom: 48px;
    width: 628px;
    padding: 48px;
    z-index: 20;
    box-sizing: border-box;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-overlay-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.feature-overlay-text {
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
    color: var(--white);
    margin-bottom: 32px;
}

.feature-overlay-text:last-child {
    margin-bottom: 0;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.feature-tag {
    padding: 0 8px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Application Areas Section */
.application-section {
    padding-top: 0;
    padding-bottom: 0;
}

.application-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin: 0;
    margin-bottom: clamp(32px, 4vw, 60px);
    text-align: center;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 64px;
    row-gap: 32px;
}

.application-card {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.application-card-image-wrapper {
    flex: 0 0 auto;
    width: 332px;
    height: 380px;
    overflow: hidden;
    position: relative;
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.application-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.application-card-content {
    flex: 1;
    padding: 64px 64px 0 64px;
    background-color: #F4F6FB;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    min-height: 380px;
}

.application-overlay-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin-bottom: 4px;
}

.application-overlay-subtitle {
    font-size: 19px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0;
    color: var(--grey-70);
    margin-bottom: 28px;
}

.application-overlay-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.application-overlay-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.application-bullet {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    margin-top: 7.5px;
}

.application-bullet img {
    width: 5px;
    height: 5px;
    display: block;
}

.application-overlay-item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--grey-80);
}

/* Process Section */
.process-section {
    padding-top: 0;
    padding-bottom: 0;
}

.process-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin: 0;
    margin-bottom: clamp(32px, 4vw, 60px);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-card {
    background-color: var(--white);
    border: 1px solid var(--grey-30);
    border-radius: var(--radius-lg);
    padding: 32px 48px 44px 48px;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    padding: 0 8px;
    height: 24px;
    border: 1px solid var(--brand-primary);
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
}

.process-card-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin-bottom: 16px;
}

.process-card-text {
    font-size: 19px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0;
    color: var(--grey-80);
    margin-bottom: 28px;
}

.process-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-card-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.process-card-bullet {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    margin-top: 7.5px;
}

.process-card-bullet img {
    width: 5px;
    height: 5px;
    display: block;
}

.process-card-list-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--grey-80);
}

/* CTA Banner */
.cta-banner {
    margin-top: clamp(60px, 9vw, 140px);
    margin-bottom: clamp(60px, 9vw, 140px);
    position: relative;
    width: var(--container-inner);
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-banner-bg {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.cta-banner-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-banner-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin: 0;
}

.cta-banner-description {
    font-size: 19px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0;
    color: var(--white);
    margin: 0;
}

.cta-banner-button {
    background-color: var(--brand-primary);
    color: var(--white);
    font-size: 19px;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: -0.32px;
    padding: 0 36px;
    height: 60px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: opacity var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-banner-button:hover {
    opacity: 0.9;
}

/* Why Clients Trust Us Section */
.trust-section {
    background-color: var(--white);
    padding-top: 0;
    padding-bottom: 0;
}

.trust-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin: 0;
    margin-bottom: clamp(32px, 4vw, 60px);
    text-align: center;
}

.trust-header-grid {
    display: grid;
    grid-template-columns: 496px 164px 628px;
    gap: 0;
    align-items: start;
    margin-bottom: 60px;
}

.trust-header-left {
    grid-column: 1;
}

.trust-header-right {
    grid-column: 3;
    align-self: start;
}

.trust-subtitle {
    font-size: 19px;
    font-weight: 400;
    line-height: 31px;
    color: var(--grey-80);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trust-card {
    background-color: var(--brand-background);
    border-radius: var(--radius-lg);
    border: none;
    padding: 20px 10px;
    height: 248px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 12px;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}

.trust-label {
    font-size: 22px;
    font-weight: 400;
    color: var(--grey-80);
    margin-bottom: 12px;
}

.trust-value {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
}

/* Our Business Section */
.business-section {
    padding-top: 0;
    padding-bottom: 0;
}

.business-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin: 0;
    margin-bottom: clamp(32px, 4vw, 60px);
    text-align: center;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.business-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-30);
    padding: 48px;
}

.business-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
}

.business-card-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin-bottom: 8px;
}

.business-card-copy {
    font-size: 19px;
    font-weight: 600;
    line-height: 31px;
    color: var(--grey-70);
    margin-bottom: 28px;
}

.business-card-content {
    font-size: 19px;
    font-weight: 400;
    line-height: 31px;
    color: var(--grey-80);
    margin-bottom: 28px;
}

.business-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.business-list-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.business-bullet {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    margin-top: 8px;
    background-color: var(--grey-80);
    border-radius: 50%;
    display: inline-block;
}

.business-list-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: var(--grey-80);
}

.business-list-text-bold {
    font-weight: 600;
}

.business-list-subtitle {
    font-size: 19px;
    font-weight: 600;
    line-height: 31px;
    color: var(--grey-80);
    margin-bottom: 0;
}

/* Our Partners Section */
.partners-section {
    padding-top: 0;
}

.partners-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin: 0;
    margin-bottom: clamp(32px, 4vw, 60px);
}

.partners-grid-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 72px;
    animation: scroll-partners 40s linear infinite;
    width: max-content;
}

.partners-grid:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: auto;
    height: var(--header-height);
    opacity: 1;
    object-fit: contain;
    flex: 0 0 auto;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 36px));
    }
}

/* Footer */
footer {
    background-color: var(--grey-100);
    color: var(--white);
    padding-top: 64px;
    padding-bottom: 64px;
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 168px;
    align-items: start;
    padding-bottom: 40px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--grey-80);
}

.footer-logo {
    width: 200px;
    height: 48px;
    flex-shrink: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    gap: 64px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--grey-40);
    margin-bottom: 4px;
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-column-title:hover {
    color: var(--white);
}

.footer-link-wrapper {
    line-height: 22px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--grey-60);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--white);
}

.footer-text-wrapper {
    line-height: 22px;
}

.footer-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--grey-60);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-text:hover {
    color: var(--white);
}

.footer-address {
    display: inline-block;
    white-space: nowrap;
}

.btn-footer {
    background-color: var(--grey-80);
    color: var(--grey-40);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 0 12px;
    height: 36px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-base);
    margin-top: 16px;
    margin-bottom: 0;
    display: inline-block;
    width: fit-content;
    min-width: auto;
    max-width: none;
    box-sizing: border-box;
}

.btn-footer:hover {
    background-color: var(--grey-70);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--grey-60);
}

/* Inquiry Popup */
.inquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.inquiry-popup.active {
    display: flex;
}

.inquiry-popup-content {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.inquiry-popup-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--grey-100);
    margin-bottom: 16px;
}

.inquiry-popup-message {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey-70);
    margin-bottom: 32px;
}

.inquiry-popup-close {
    background-color: var(--brand-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 12px 32px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: opacity var(--transition-base);
}

.inquiry-popup-close:hover {
    opacity: 0.9;
}

/* Parallax Effect */

/* ============================================================
   Media Queries
   ============================================================ */

@media (min-width: 1632px) {
    .partners-grid-wrapper {
        overflow: hidden;
    }

    .partners-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 72px;
        animation: scroll-partners 40s linear infinite;
        width: max-content;
    }
}

@media (max-width: 1632px) {
    .hero-image-wrapper {
        width: 100%;
        max-width: calc(100% - 80px);
        height: auto;
        aspect-ratio: 1552 / 728;
        margin-left: auto;
        margin-right: auto;
    }

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

    .feature-images-container {
        width: 100%;
        max-width: calc(100% - 80px);
    }

    .tab-buttons {
        width: 100%;
        max-width: calc(100% - 80px);
    }

    .application-grid {
        column-gap: calc(64px * (100vw - 80px) / 1552px);
    }

    .application-card-image-wrapper {
        width: calc(332px * (100vw - 80px) / 1552px);
        height: 380px;
    }

    .cta-banner {
        width: 100%;
        max-width: calc(100% - 80px);
    }

}

@media (max-width: 1400px) {
    .application-grid {
        column-gap: calc(64px * (100vw - 80px) / 1552px);
    }

    .application-card-image-wrapper {
        width: calc(332px * (100vw - 80px) / 1552px);
        height: 380px;
    }

    .application-card-content {
        padding: 48px 48px 0 48px;
    }

    .trust-header-grid {
        grid-template-columns: 400px 100px 500px;
    }

    .footer-address {
        white-space: normal;
        max-width: 200px;
    }

    .footer-top {
        gap: 120px;
    }

    .footer-columns {
        gap: 48px;
    }

    .footer-text-wrapper {
        max-width: 200px;
    }
}

@media (max-width: 1200px) {
    .application-grid {
        column-gap: calc(64px * (100vw - 80px) / 1552px);
    }

    .application-card-image-wrapper {
        width: calc(332px * (100vw - 80px) / 1552px);
        height: 380px;
    }

    .application-card-content {
        padding: 40px 40px 0 40px;
    }

    .trust-header-grid {
        grid-template-columns: 350px 80px 450px;
    }

    .footer-top {
        gap: 80px;
    }

    .footer-columns {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta-area {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .feature-container {
        width: calc(100% - 40px);
    }

    .feature-images-container {
        width: 100%;
        max-width: calc(100% - 40px);
    }

    .tab-buttons {
        width: 100%;
        max-width: calc(100% - 40px);
    }

    .feature-text-overlay {
        right: 20px;
        bottom: 20px;
        left: 20px;
        width: auto;
    }

    .application-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .application-card {
        flex-direction: row;
    }

    .application-card-image-wrapper {
        width: 332px;
        height: 380px;
    }

    .application-card-content {
        padding: 32px 32px 0 32px;
    }

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

    .cta-banner {
        max-width: calc(100% - 40px);
    }

    .cta-banner-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 0 20px;
    }

    .cta-banner-text-wrapper {
        text-align: center;
        align-items: center;
    }

    .trust-value {
        font-size: 32px;
    }

    .trust-header-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trust-header-left {
        grid-column: 1;
    }

    .trust-header-right {
        grid-column: 1;
        margin-top: 0;
    }

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

    .partners-grid {
        gap: 48px;
    }

    .partner-logo {
        height: 64px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .application-card-image-wrapper {
        width: calc(332px * (100vw - 40px) / 768px);
        height: 380px;
    }

}

@media (max-width: 768px) {
    br:not(.must) {
        display: none;
    }

    .container-custom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-image-wrapper {
        max-width: calc(100% - 40px);
        width: calc(100% - 40px);
        height: auto;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 48px;
    }

    .trust-card {
        height: unset;
        padding: 24px 10px;
    }

    .trust-label {
        margin-bottom: 8px;
    }

    .trust-value {
        font-size: 28px;
    }

    .feature-container {
        width: 100%;
    }

    .feature-overlay-title {
        font-size: 24px;
    }

    .application-overlay-title {
        font-size: 24px;
    }

    .process-card-title {
        font-size: 22px;
    }

    .trust-label {
        font-size: 18px;
    }

    .business-card-copy {
        font-size: 16px;
    }

    .business-card-content {
        font-size: 16px;
    }

    .cta-banner-description {
        font-size: 16px;
    }

    .cta-banner-button {
        font-size: 16px;
        height: 48px;
        padding: 0 24px;
    }

    .feature-images-container {
        max-width: calc(100% - 40px);
        height: auto;
        min-height: 490px;
        aspect-ratio: 1552 / 490;
    }

    .tab-buttons {
        max-width: calc(100% - 40px);
        gap: 8px;
    }

    .tab-button {
        height: 56px;
        font-size: 18px;
    }

    .feature-text-overlay {
        right: 20px;
        bottom: 20px;
        left: 20px;
        width: auto;
    }

    .consulting-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .application-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .application-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 32px;
    }

    .application-card {
        flex-direction: column;
    }

    .application-card-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        margin: 0;
        border-top-left-radius: var(--radius-lg);
        border-top-right-radius: var(--radius-lg);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .application-card-image {
        border-top-left-radius: var(--radius-lg);
        border-top-right-radius: var(--radius-lg);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .application-card-content {
        padding: 32px;
        margin: 0;
        min-height: unset;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: var(--radius-lg);
        border-bottom-right-radius: var(--radius-lg);
    }

    .process-title {
        font-size: 36px;
        line-height: 1.2;
    }

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

    .cta-banner {
        max-width: calc(100% - 40px);
    }

    .cta-banner-bg {
        height: auto;
        min-height: 280px;
    }

    .cta-banner-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 40px 20px;
    }

    .cta-banner-text-wrapper {
        text-align: center;
        align-items: center;
    }

    .cta-banner-title {
        font-size: 32px;
        line-height: 1.2;
    }

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

    .trust-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .trust-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 32px;
    }

    .business-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: clamp(32px, 4vw, 60px);
    }

    .business-card {
        padding: 20px;
    }

    .business-card-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .partners-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: clamp(32px, 4vw, 60px);
    }

    .partners-grid {
        gap: 32px;
    }

    .partner-logo {
        height: 56px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 400px) {
    .feature-text-overlay {
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .parallax-image {
        transform: none;
    }
}