:root {
    --primary-orange: #FF7316;
    --primary-dark: #0C0E12;
    --dark-bg-2: #1A1C22;
    --text-main: #121417;
    --text-secondary: #636363;
    --text-white: #FFFFFF;
    --bg-light: #F5F7FA;
    --border-color: #E5E8EB;

    --font-main: 'Inter', 'Noto Sans SC', sans-serif;

    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* Reset & Scaffolding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 50px;
    /* Increased from 32px to match main headline */
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-main);
    line-height: 1.2;
}

.light-text {
    color: #FFFFFF;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--text-main);
    color: #FFFFFF;
    height: 40px;
}

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

.btn-orange {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    height: 48px;
    font-size: 16px;
    border-radius: 24px;
}

.btn-orange:hover {
    background-color: #e6600a;
}

.btn-orange-small {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    height: 32px;
    font-size: 12px;
    border-radius: 16px;
    padding: 0 16px;
}

.btn-orange-large {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    height: 65px;
    font-size: 18px;
    padding: 0 40px;
    border-radius: 28px;
}

/* Header */
/* Header V2 */
/* Header V2 */
.site-header-v2 {
    background-color: #EDEBE9;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header-v2 .container {
    max-width: 1200px;
    /* Constrain content width to match design (approx 1170px) */
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper-v2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Use gap from design, but responsive */
    gap: 100px;
}

@media (min-width: 1200px) {
    .nav-wrapper-v2 {
        gap: 243px;
        /* Exact design gap on large screens */
    }
}

.header-logo-v2 {
    flex-shrink: 0;
    /* Prevent logo shrinking */
    line-height: 0;
}

.header-logo-v2 a,
.header-logo-v2 div {
    display: block;
}

.header-logo-v2 img {
    height: 64px;
    width: auto;
    max-width: 200px;
    /* Safety constraint */
    display: block;
    object-fit: contain;
}

.main-nav-v2 {
    flex-grow: 1;
    /* Allow nav to take space if needed */
}

.main-nav-v2 ul {
    display: flex;
    flex-direction: row;
    /* Force row */
    align-items: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav-v2 a {
    text-decoration: none;
    font-size: 20px;
    color: #4E5055;
    font-weight: 400;
    transition: color 0.3s;
    white-space: nowrap;
    /* Prevent wrapping */
}

.main-nav-v2 a.active,
.main-nav-v2 a:hover {
    color: #0C0E12;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: auto;
    /* Push to right on mobile */
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #0C0E12;
    border-radius: 3px;
    transition: all 0.3s;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-main);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-orange);
}

/* Hero Section */
.hero-section {
    padding-top: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: clamp(400px, 42vw, 680px);
    /* removed border-radius for full width look */
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Eliminate whitespace */
}

/* Value Prop / Features V2 */
.value-prop-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #FFFFFF;
}

.main-headline {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.features-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.features-row-top {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.features-row-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.feature-card-v2 {
    background: #EAEAEA;
    /* Light grey background */
    width: 370px;
    height: 320px;
    border-radius: 12px;
    padding: 0 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Content at bottom */
    padding-bottom: 40px;
    transition: transform 0.3s ease;
}

.feature-card-v2:hover {
    transform: translateY(-5px);
}

.feature-highlight-v2 {
    background: var(--primary-orange);
    color: #FFFFFF;
}

.card-bg-number {
    position: absolute;
    top: -20px;
    /* Slight overlap top */
    left: 20px;
    font-size: 130px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    opacity: 0.6;
    /* Semi-transparent white by default for grey cards? Design shows gradient */
    z-index: 1;
    /* Create the gradient text effect */
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
}

.feature-highlight-v2 .card-bg-number {
    /* For orange card it seems similar white gradient */
    opacity: 0.3;
}

.card-content {
    position: relative;
    z-index: 2;
}

.feature-card-v2 h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-dark);
}

.feature-highlight-v2 h3 {
    color: #FFFFFF;
}

.feature-card-v2 p {
    font-size: 18px;
    line-height: 1.5;
    color: #4E5055;
    font-weight: 400;
}

.feature-highlight-v2 p {
    color: #FFFFFF;
}

/* Responsive for V2 */
@media (max-width: 1200px) {

    .features-row-top,
    .features-row-bottom {
        flex-wrap: wrap;
    }

    .feature-card-v2 {
        width: 100%;
        max-width: 370px;
    }
}

/* Solutions Section */
.solutions-section {
    background-color: var(--primary-dark);
    /* Adding background image for section */
    /* background-image: url('../assets/solution_bg.png'); */
    /* Optional if we want the faint large bg */
    background: #181511 url('../assets/d26523468b19deb994d19b759e421551c3b84c28.png') no-repeat center center;
    background-size: cover;
    background-position: center 35%;
    background-size: cover;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 100px;
}

/* Add the large faint background image overlay if needed via pseudo element or direct bg */
.solutions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/solution_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* Subtle background pattern */
    pointer-events: none;
}

/* Ensure content is above bg */
.solutions-section .container {
    position: relative;
    z-index: 2;
}

.solutions-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 60px;
}

.solution-card-v2 {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 480px;
    /* Taller cards */
    /* No border, clean look */
}

.solution-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card-v2:hover .solution-bg-img {
    transform: scale(1.05);
}

.solution-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Gradient from black to transparent for readability */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 100px 30px 40px;
    /* Large top padding for gradient transition */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.solution-overlay-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.solution-overlay-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #E0E0E0;
}

.solutions-cta {
    text-align: center;
}

/* Service Stages V2 */
.stages-section-v2 {
    background-color: #EDEBE9;
    padding: 48px 0 75px;
}

/* Platform Awards Top Bar */
.platform-awards-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 46px;
    margin-bottom: 18px;
    padding: 0;
}

.platform-award {
    flex: 0 0 auto;
}

.plat-icon {
    width: 122px;
    height: 110px;
    object-fit: contain;
}

/* Section Header */
.stages-section-header {
    text-align: center;
    margin-bottom: 54px;
}

.section-title-large {
    font-size: 44px;
    font-weight: 700;
    color: #0C0E12;
    line-height: 1.35;
    margin-bottom: 14px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: #4E5055;
    max-width: 620px;
    margin: 0 auto;
}

/* Stages Grid */
.stages-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.stage-card-v2 {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    min-height: 582px;
    display: flex;
    flex-direction: column;
}

.stage-card-header {
    padding: 28px 30px 30px;
    color: #0C0E12;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 26px;
    min-height: auto;
}

.stage-orange-v2 {
    background-color: var(--primary-orange);
}

.stage-yellow-v2 {
    background-color: #FFD740;
}

.stage-yellow-v2 h3 {
    color: #0C0E12;
}

.stage-yellow-v2 .stage-tag {
    color: #FFFFFF !important;
}

.stage-teal-v2 {
    background-color: #00A4A7;
}

.stage-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.55;
    width: 100%;
    text-align: center;
}

.stage-tag {
    background-color: #0C0E12;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 78%;
    max-width: 92%;
    min-height: 0;
}

/* Override Tag color for specific cards if needed? 
   No, they all seem to have black pill with white text from the screenshot description 
   "Pill/Tag: Black background #0C0E12, white text" */

.stage-card-body {
    padding: 20px;
    background: #FFFFFF;
    flex: 1;
}

.stage-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stage-list-v2 li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #4E5055;
}

/* Remove old bullet styling */
.stage-list-v2 li::before {
    content: none;
}

.list-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Team */
.team-section {
    background: var(--primary-dark);
    position: relative;
    /* Need background image maybe? */
    background-image: linear-gradient(to bottom, #111, #222);
    padding-bottom: 100px;
}

.light-on-dark-header {
    color: #FFFFFF;
}

/* 7. Advantages Section (Replaces Old Team Section) */
.new-advantages-section {
    background-color: var(--primary-dark);
    background-image: url('../assets/bkgrayshine.png');
    background-size: cover;
    background-position: center 75%;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.new-advantages-section .section-title {
    font-size: 50px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
}

.advantages-wrapper {
    background-color: transparent;
    border-radius: 20px;
    padding: 50px 15px;
    width: 100%;
}

.new-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.new-adv-card {
    background-color: #1C1C1C;
    border-radius: 20px;
    padding: 50px 15px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.new-adv-number {
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1;
}

.new-adv-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    background-color: rgba(255, 255, 255, 0.2);
    /* Fallback */
    margin-bottom: 36px;
}

.new-adv-title {
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.4;
}

.new-adv-desc {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 0;
}

/* Testimonials V2 */
.testimonials-section-v2 {
    background-color: #EDEBE9;
    padding: 100px 0;
}

.testimonial-header-row {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Helper for header row alignment */
.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-0 {
    margin-bottom: 0;
}

.btn-rounded {
    border-radius: 30px;
    padding: 15px 45px;
    font-size: 18px;
    font-weight: 700;
}

.testimonials-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-v2 {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease;
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
}

/* New Partners Section (Grid 4x4) */
.new-partners-section {
    position: relative;
    padding: 75px 0;
    background:
        linear-gradient(180deg, rgba(52, 54, 59, 0.95) 0%, rgba(46, 48, 53, 0.95) 100%),
        url('assets/partners_bg.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
}

.new-partners-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(90deg, rgba(28, 29, 33, 0.46) 0%, rgba(28, 29, 33, 0) 50%, rgba(28, 29, 33, 0.46) 100%);
}

.new-partners-section .container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    padding-left: 135px;
    padding-right: 135px;
}

.new-partners-section .section-title {
    width: 650px;
    max-width: 100%;
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 25px;
}

.new-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 195px);
    justify-content: center;
    row-gap: 25px;
    column-gap: 130px;
    margin-top: 0;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.new-partner-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 3px solid #737373;
    border-radius: 9.89px;
    width: 195px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.new-partner-card:hover {
    transform: none;
}

.new-partner-card img {
    --logo-w: 82%;
    --logo-h: 62%;
    --logo-cx: 50%;
    --logo-cy: 50%;
    position: absolute;
    left: var(--logo-cx);
    top: var(--logo-cy);
    width: var(--logo-w);
    height: var(--logo-h);
    transform: translate(-50%, -50%);
    object-fit: contain;
    display: block;
    max-width: none;
    max-height: none;
}

.new-partner-card[data-logo="piotlily"] img {
    --logo-w: 86%;
    --logo-h: 67%;
    --logo-cx: 49%;
    --logo-cy: 49%;
}

.new-partner-card[data-logo="fapai"] img {
    --logo-w: 97%;
    --logo-h: 85%;
    --logo-cx: 48.5%;
    --logo-cy: 46.5%;
}

.new-partner-card[data-logo="teddy"] img {
    --logo-w: 98%;
    --logo-h: 61%;
    --logo-cx: 50.5%;
    --logo-cy: 49.5%;
}

.new-partner-card[data-logo="jiangzhong"] img {
    --logo-w: 67%;
    --logo-h: 41%;
    --logo-cx: 48%;
    --logo-cy: 47%;
}

.new-partner-card[data-logo="nature-sunshine"] img {
    --logo-w: 103%;
    --logo-h: 61%;
    --logo-cx: 47.5%;
    --logo-cy: 48.5%;
}

.new-partner-card[data-logo="jiefurou"] img {
    --logo-w: 91%;
    --logo-h: 81%;
    --logo-cx: 48.5%;
    --logo-cy: 47%;
}

.new-partner-card[data-logo="mayinglong"] img {
    --logo-w: 91%;
    --logo-h: 60%;
    --logo-cx: 50.8%;
    --logo-cy: 52%;
}

.new-partner-card[data-logo="vitalp"] img {
    --logo-w: 90%;
    --logo-h: 145%;
    --logo-cx: 49.7%;
    --logo-cy: 52%;
}

.new-partner-card[data-logo="gatsby"] img {
    --logo-w: 84%;
    --logo-h: 44%;
    --logo-cx: 49%;
    --logo-cy: 53%;
}

/* Figma full-card assets (already include exact border/background/logo sizing) */
.new-partner-card[data-card-asset="true"] {
    background: transparent;
    border: 0;
    border-radius: 9.89px;
    padding: 0;
}

.new-partner-card[data-card-asset="true"] img {
    position: static;
    width: 100%;
    height: 100%;
    transform: none;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* New Cases Section */
.new-cases-section {
    background-color: #EDEBE9;
    padding: 80px 0;
}

.new-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.new-case-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.new-case-img {
    width: 100%;
    aspect-ratio: 325 / 579;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.new-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.new-case-card:hover .new-case-img img {
    transform: scale(1.05);
}

.new-case-title {
    font-size: 24px;
    font-weight: 700;
    color: #0C0E12;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0C0E12;
    margin-bottom: 4px;
}

.testi-tags {
    font-size: 14px;
    color: #2B92E4;
    /* Blue color for tags */
    font-weight: 400;
}

.testi-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #4E5055;
    text-align: justify;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-light);
    position: relative;
}

.cta-wrap-right {
    position: absolute;
    top: 80px;
    right: calc((100% - var(--container-width)) / 2 + 20px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.user-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info .name {
    display: block;
    font-weight: 700;
    color: var(--text-main);
}

.user-role {
    font-size: 12px;
    color: var(--text-secondary);
}

.comment {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

/* Partners */
.partners-section-dark {
    background-color: #2D2D2D;
    background-image: url('../assets/partners_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    /* Increased gap slightly */
    margin-top: 60px;
}

.logo-box {
    background: #FFFFFF;
    border-radius: 12px;
    height: 120px;
    /* Increased height for better proportion */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Add padding so logo doesn't touch edges */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* CRITICAL: Changed from cover to contain */
    object-position: center;
}

/* Cases */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 300px;
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-card:hover img {
    transform: scale(1.05);
}

.case-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 20px 20px;
}

.case-info h3 {
    color: #fff;
    font-size: 18px;
}

/* Footer CTA */
.footer-cta-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 14, 18, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content-centered {
    text-align: center;
    color: #fff;
    z-index: 10;
}

.cta-content-centered h2 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer Bottom */
/* Footer Bottom Refactor */
.site-footer {
    background: #EDEBE9;
    padding: 80px 0 30px;
    color: #4E5055;
    font-size: 14px;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    gap: 40px;
}

.footer-col-brand {
    flex: 1;
    max-width: 320px;
}

.footer-logo-img {
    height: 50px;
    /* Adjusted height */
    width: auto;
    margin-bottom: 24px;
    display: block;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #4E5055;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 150px;
    padding-top: 10px;
    /* Visually align with logo/text */
}

.footer-col-links a {
    font-size: 16px;
    color: #4E5055;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-col-links a:hover {
    color: var(--primary-orange);
}

.footer-col-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 400px;
    padding-top: 10px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #121417;
}

.contact-item p {
    font-size: 14px;
    color: #4E5055;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    /* Ensure english/nums look good */
}

.footer-divider {
    height: 1px;
    background-color: #D6D6D6;
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 14px;
    color: #8C8C8C;
}

/* Responsive */
/* Responsive */
@media (max-width: 1200px) {

    .features-row-top,
    .features-row-bottom {
        flex-wrap: wrap;
    }

    .feature-card-v2 {
        width: 100%;
        max-width: 370px;
        /* Keep them reasonable width on tablet */
    }
}

@media (max-width: 1024px) {

    /* Old classes support (just in case) */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .solutions-grid,
    .stages-grid,
    .team-grid,
    .testimonials-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* New V2 Support - Tablet */
    .solutions-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Fix: Stack header row on tablet to prevent crowding */
    .testimonial-header-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .testimonial-header-row .section-title {
        font-size: 36px;
        /* Reduce font size for tablet */
        line-height: 1.3;
        width: 100%;
        max-width: 600px;
        /* Limit width to enforce nice wrapping if needed */
        margin-left: auto;
        margin-right: auto;
    }

    .new-partners-section .section-title {
        font-size: 44px;
        line-height: 1.2;
        margin-bottom: 32px;
    }

    .new-partners-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .new-partners-grid {
        grid-template-columns: repeat(4, 170px);
        gap: 22px 44px;
        max-width: 812px;
    }

    .new-partner-card {
        width: 170px;
        height: 96px;
    }

    .new-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }

    .stages-grid-v2 {
        grid-template-columns: 1fr;
        /* Stack stages on tablet for better readability */
    }

    .platform-awards-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .plat-icon {
        width: 96px;
        height: 86px;
    }

    .cta-wrap-right {
        position: static;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    /* Header Mobile */
    .header-container {
        flex-direction: column;
        gap: 16px;
        padding: 12px;
        height: auto;
    }

    .site-header {
        height: auto;
    }

    .main-nav ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* General Mobile */
    .section-title {
        font-size: 32px;
        /* Set to 32px as requested */
        margin-bottom: 30px;
        /* Reduce margin on mobile */
        line-height: 1.2;
    }

    .section-title-large {
        font-size: 32px;
        line-height: 1.2;
    }

    .main-headline {
        font-size: 32px;
        line-height: 1.2;
    }

    /* Mobile Split Headline Support */
    .d-inline-block {
        display: block;
    }

    .desktop-comma {
        display: none;
    }

    .hero-image-wrapper {
        height: 500px;
    }

    .hero-img {
        height: 100%;
        object-position: 24% center;
    }

    /* Features V2 Mobile */
    .features-grid-v2 {
        width: 100%;
        gap: 20px;
    }

    .features-row-top,
    .features-row-bottom {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .feature-card-v2 {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 280px;
        padding-bottom: 30px;
    }

    /* Solutions V2 Mobile */
    .solutions-grid-v2 {
        grid-template-columns: 1fr;
    }

    .solution-card-v2 {
        height: 400px;
    }

    /* Stages V2 Mobile */
    .stages-grid-v2 {
        grid-template-columns: 1fr;
    }

    .platform-awards-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 18px;
        margin-bottom: 24px;
    }

    .plat-icon {
        width: 72px;
        height: 64px;
    }

    .stage-card-header {
        min-height: auto;
        padding: 24px 16px;
        gap: 16px;
    }

    .stage-card-header h3 {
        font-size: 28px;
        line-height: 1.3;
    }

    .stage-tag {
        font-size: 16px;
        line-height: 1.5;
        padding: 10px 14px;
        min-height: 0;
    }

    .stage-card-body {
        padding: 16px 16px 20px;
    }

    .stage-list-v2 {
        gap: 14px;
    }

    .stage-list-v2 li {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Team V2 Mobile */
    .team-grid-v2 {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .team-card-v2 {
        height: 400px;
        /* Slightly smaller on mobile if needed */
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    /* Testimonials V2 Mobile */
    .testimonial-header-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testimonials-grid-v2 {
        grid-template-columns: 1fr;
    }

    /* Misc Grids Mobile */
    .team-grid,
    .testimonials-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .new-partners-section {
        padding: 60px 0 64px;
    }

    .new-partners-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .new-partners-section .section-title {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .new-partners-grid {
        grid-template-columns: repeat(2, minmax(148px, 1fr));
        gap: 16px 14px;
        max-width: 360px;
    }

    .new-partner-card {
        width: 100%;
        height: 88px;
    }

    .new-cases-grid {
        grid-template-columns: 1fr;
    }

    /* Header V2 Mobile */
    .site-header-v2 {
        padding: 15px 0;
    }

    .nav-wrapper-v2 {
        gap: 0;
        justify-content: space-between;
    }

    .main-nav-v2 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #EDEBE9;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .main-nav-v2.active {
        display: block;
    }

    .main-nav-v2 ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav-v2 li {
        width: 100%;
    }

    .main-nav-v2 a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

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

    .cta-content-centered h2 {
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .hero-img {
        object-position: 18% center;
    }
}

/* =============================================
   OCEAN WAVE ANIMATION
   ============================================= */
.value-prop-section {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
    /* Ensure space for waves */
    /* Codepen Background - Exact Match */
    background: radial-gradient(ellipse at center, rgba(255, 254, 234, 1) 0%, rgba(255, 254, 234, 1) 35%, #B7E8EB 100%);
}

/* Ensure content stays above waves */
.value-prop-section .container {
    position: relative;
    z-index: 10;
}

.ocean {
    height: 5%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #015871;
    z-index: 1;
}

.wave {
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg) repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}



@keyframes wave {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {

    0%,
    100% {
        transform: translate3d(0, -25px, 0);
    }

    50% {
        transform: translate3d(0, 5px, 0);
    }
}

/* =============================================
   FOOTER CTA REFACTOR (New Design)
   ============================================= */
.footer-cta-section {
    position: relative;
    /* Ensure height is sufficient */
    padding: 120px 0;
    background-size: cover;
    background-position: center;
}

.cta-content-centered h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.25;
}

.cta-content-centered p {
    font-size: 24px;
    /* Larger subtitle */
    margin-bottom: 48px;
    opacity: 0.9;
    font-weight: 400;
}

.btn-orange-large {
    display: inline-block;
    background-color: var(--primary-orange);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 50px;
    /* Fully rounded pill shape */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-orange-large:hover {
    background-color: #e05e00;
    transform: translateY(-2px);
    color: #fff;
}

/* Mobile adjustments for Footer CTA */
@media (max-width: 768px) {
    .footer-cta-section {
        padding: 80px 0;
    }

    .cta-content-centered h2 {
        font-size: 24px;
        /* Adjusted specific for mobile */
    }

    .cta-content-centered p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .btn-orange-large {
        font-size: 18px;
        /* Increased from 16px */
        width: 100%;
        /* Full width on mobile looks better */
        display: flex;
        justify-content: center;
        align-items: center;
        /* Ensure height matches desktop or is slightly smaller but centered */
        height: 60px;
        padding: 0;
        /* Remove padding as we use fixed height + flex center */
    }

    /* Footer Bottom Refactor Mobile */
    .footer-top-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col-brand,
    .footer-col-links,
    .footer-col-contact {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 24px;
    }

    .footer-col-links {
        align-items: center;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

/* Base class for all scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Fade Up Animation */
.fade-up {
    transform: translateY(40px);
}

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

/* Fade In Animation (no movement) */
.fade-in {
    opacity: 0;
}

.fade-in.is-visible {
    opacity: 1;
}

/* Scale In Animation */
.scale-in {
    transform: scale(0.9);
}

.scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Fade Left (enter from left) */
.fade-left {
    transform: translateX(-40px);
}

.fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right (enter from right) */
.fade-right {
    transform: translateX(40px);
}

.fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay classes for grid items */
.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

.stagger-delay-4 {
    transition-delay: 0.4s;
}

.stagger-delay-5 {
    transition-delay: 0.5s;
}

.stagger-delay-6 {
    transition-delay: 0.6s;
}

.stagger-delay-7 {
    transition-delay: 0.7s;
}

.stagger-delay-8 {
    transition-delay: 0.8s;
}

/* Faster animation variant */
.animate-fast {
    transition-duration: 0.5s;
}

/* Slower animation variant */
.animate-slow {
    transition-duration: 1.2s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =============================================
   STRICT SERVICES PAGE STYLES (MATCHING FIGMA)
   ============================================= */

/* Variables Update */
:root {
    --bg-dark: #0C0E12;
    --text-grey: #9CA3AF;
    --border-dark: rgba(255, 255, 255, 0.1);
}

/* Strict Hero Redesign (Node 190:1873) */
.strict-hero {
    height: 616px;
    background-color: #231A0F;
    position: relative;
    margin-top: -120px;
    padding-top: 120px;
    /* Header offset */
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.37;
    /* As per Figma opacity-37 */
    pointer-events: none;
}

.hero-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Remove old overlay since we use opacity on image now */
.overlay-dark {
    display: none;
}

/* Explicit Hero Container Styling for Center Alignment */
.strict-hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center align items */
    text-align: center;
    /* Center align text */
    height: 100%;
}

.hero-title {
    font-family: 'Source Sans Pro', 'Noto Sans SC', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: #FFFFFF;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-subtitle {
    font-family: 'Source Sans Pro', 'Noto Sans SC', sans-serif;
    font-size: 20px;
    color: #E5E7EB;
    margin-bottom: 48px;
    max-width: 800px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    z-index: 10;
}

.btn-hero-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 162px;
    height: 48px;
    background: #F28B0D;
    /* Revert to Orange */
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    /* Revert to 8px */
    text-decoration: none;
    transition: background 0.3s;
}

.btn-hero-primary:hover {
    background: #D97706;
    /* Darker Orange */
}

.btn-hero-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 162px;
    height: 48px;
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    /* Figma radius */
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: #FFFFFF;
    color: #000;
}

.btn-solid-orange:hover {
    background: #D97706;
}

/* Core Services Strict */
/* Core Services Strict */
.core-services-strict {
    background: #FFFFFF;
    padding: 100px 0;
}

.section-title-wrapper-new {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.section-title-new {
    font-size: 32px;
    font-weight: 700;
    color: #181510;
    margin-bottom: 24px;
    line-height: 1.2;
}

.title-bar-new {
    width: 80px;
    height: 4px;
    background-color: #FF8C00;
    border-radius: 2px;
}

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

.service-card-strict {
    background: #F8F7F5;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card-strict:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    background: #FFFFFF;
}

.icon-wrapper-new {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(255, 140, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #FF8C00;
}

.icon-wrapper-new .material-icons {
    font-size: 30px;
    color: #FF8C00;
}

.service-card-strict h3 {
    font-size: 24px;
    font-weight: 700;
    color: #181510;
    margin-bottom: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.3;
}

.service-card-strict p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.link-orange-new {
    color: #FF8C00;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: all 0.2s;
}

.link-orange-new:hover {
    gap: 12px;
}

/* Matrix Section Strict */
/* Matrix Section Strict */
.matrix-section-strict {
    background: #181511 url('../assets/d26523468b19deb994d19b759e421551c3b84c28.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.matrix-header-new {
    text-align: center;
    margin-bottom: 60px;
}

/* Force white color for title in this dark section */
.matrix-header-new .section-title-new {
    color: #FFFFFF;
}

.section-subheading-new {
    font-size: 20px;
    margin-top: 16px;
    font-weight: 400;
}

.text-orange {
    color: #F28B0D;
}

.matrix-grid-strict {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 30px;
    margin-top: 60px;
}

/* Card Styling - Horizontal Layout */
.matrix-item-new {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    /* Horizontal Layout */
    gap: 24px;
    /* Gap between icon and text */
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    /* Consistency */
}

.matrix-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.matrix-icon-box-new {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Check if needs background? Figma shows just icon usually in this style or transparent bg */
}

.matrix-icon-box-new .material-icons {
    font-size: 44px;
    /* Larger icon */
    color: #F28B0D;
}

.matrix-text-new {
    display: flex;
    flex-direction: column;
}

.matrix-text-new h4 {
    font-size: 24px;
    color: #181511;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.2;
}

.matrix-text-new p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
}

.section-heading {
    font-family: 'Source Sans Pro', 'Noto Sans SC', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.section-heading.text-white {
    color: #FFFFFF;
}

.section-subheading {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 40px;
}

.text-white-opacity {
    color: rgba(255, 255, 255, 0.6);
}

/* Model Section Strict */
.model-section-strict {
    padding: 100px 0;
    background: #FFFFFF;
}

.model-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.text-brown {
    color: #8D785E;
}

.models-grid-new {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
}

.model-card-new {
    background: #F8F9FA;
    /* Very light gray bg */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 380px;
    /* Fixed width based on design */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.model-card-center {
    background: #F8F7F5;
    /* Slightly different warm gray if needed, or stick to same? Design used Pampas #F8F7F5 */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
    /* Make center card slightly larger */
    z-index: 2;
}

/* Rounded top border accent */
.card-top-accent {
    height: 6px;
    background: linear-gradient(90deg, #F28B0D 0%, #F59E0B 100%);
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.model-content-new {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.model-number-new {
    font-size: 60px;
    font-weight: 700;
    color: rgba(242, 139, 13, 0.1);
    /* Faint Orange */
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Source Sans Pro', sans-serif;
}

.model-card-new h3 {
    font-size: 32px;
    font-weight: 800;
    color: #181511;
    margin-bottom: 8px;
    font-family: 'Source Sans Pro', sans-serif;
}

.model-eng-new {
    font-size: 13px;
    font-weight: 700;
    color: #F28B0D;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.model-card-new p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.model-badge-new {
    background: #FFF7ED;
    /* Light orange bg */
    color: #F28B0D;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
    /* Push to bottom if flex stretch */
}

/* Responsive */
@media (max-width: 992px) {
    .models-grid-new {
        flex-direction: column;
        align-items: center;
    }

    .model-card-new {
        width: 100%;
        max-width: 400px;
    }

    .model-card-center {
        transform: scale(1);
        /* Reset scale on mobile */
    }
}

/* Solutions Strict */
.solutions-row-strict {
    background: #181511 url('../assets/d26523468b19deb994d19b759e421551c3b84c28.png') no-repeat center center;
    background-size: cover;
    /* Dark grey specific */
    padding: 100px 0;
}

/* Specific override for this dark section's title */
.solutions-row-strict .section-title-new {
    color: #FFFFFF;
    text-align: center;
    width: 100%;
}

.solutions-4-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.sol-card-new {
    background: rgba(255, 255, 255, 0.05);
    /* White 5% opacity */
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* White 10% opacity border */
    border-radius: 12px;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sol-card-new:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.sol-icon-new {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-icon-new .material-icons {
    font-size: 36px;
    color: #F28B0D;
}

.sol-card-new h3 {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Source Sans Pro', sans-serif;
}

.sol-card-new p {
    font-size: 16px;
    color: #9CA3AF;
    /* Gray Chateau */
    line-height: 1.6;
}

/* Responsive Solutions */
@media (max-width: 992px) {
    .solutions-4-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .solutions-4-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Industry Tabs Strict */
.industry-strict {
    padding: 100px 0;
    background: #F8F7F5;
    /* Light warm grey bg */
}

.industry-box-new {
    display: flex;
    margin-top: 60px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 500px;
}

.industry-sidebar-new {
    width: 250px;
    background: #F8F9FA;
    border-right: 1px solid #E5E7EB;
    padding: 40px 24px;
    /* Adjust padding */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v-tab-new {
    padding: 16px 24px;
    font-size: 16px;
    color: #4B5563;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    text-align: left;
}

.v-tab-new:hover {
    background: rgba(242, 139, 13, 0.1);
    color: #F28B0D;
}

.v-tab-new.active {
    background: linear-gradient(90deg, #F28B0D 0%, #EA580C 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(242, 139, 13, 0.2);
}

.industry-content-new {
    flex: 1;
    padding: 60px 80px;
    /* Large padding */
    display: flex;
    align-items: center;
}

.panel-content-new {
    display: none;
    /* Hidden by default for tabs */
    gap: 60px;
    align-items: center;
    width: 100%;
    animation: fadeInPanel 0.4s ease-out;
}

.panel-content-new.active {
    display: flex;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.panel-text-new {
    flex: 1;
}

.panel-text-new h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #181511;
    font-family: 'Source Sans Pro', sans-serif;
}

.panel-desc-new {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.check-list-new {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.check-list-new li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    color: #F28B0D;
    margin-top: 2px;
}

.check-icon .material-icons {
    font-size: 24px;
}

.check-text strong {
    display: block;
    font-size: 18px;
    color: #111827;
    margin-bottom: 4px;
    font-weight: 700;
}

.check-text p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.panel-img-new {
    flex: 0 0 360px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.panel-img-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Industry */
@media (max-width: 1024px) {
    .industry-box-new {
        flex-direction: column;
    }

    .industry-sidebar-new {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 20px;
        order: 1;
        /* Put tabs on top if needed, or leave sidebar style */
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .v-tab-new {
        flex: 0 0 auto;
    }

    .industry-content-new {
        padding: 40px 30px;
        order: 2;
    }

    .panel-content-new {
        flex-direction: column;
    }

    .panel-img-new {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
    }

    .panel-img-new img {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .industry-sidebar-new {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
        padding: 16px;
    }

    .v-tab-new {
        width: 100%;
        padding: 12px 10px;
        text-align: center;
        font-size: 15px;
        line-height: 1.3;
        border-radius: 10px;
    }

    .v-tab-new span {
        display: block;
        white-space: normal;
    }
}


/* =========================================
   8. Map / Localization Strict (Node 191:3909)
   ========================================= */
.map-section-strict {
    background: #FFFFFF;
    padding: 100px 0;
}

.map-layout-new {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Large gap between map card and text */
}

/* Left: Map Visual Card */
.map-visual-new {
    flex: 1;
    /* clean container for the full image */
    background: transparent;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

/* 
.map-visual-new h3, .map-subtext-new removed as they are part of the image now or removed from HTML 
*/

.map-visual-new .full-map-new {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Right: Info & Features */
.map-info-new {
    flex: 1;
}

.map-info-new h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    text-align: left;
}

.map-desc-new {
    font-size: 16px;
    color: #6B7280;
    /* Gray-500 */
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 90%;
}

.map-features-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 30px;
}

.mf-item-new {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.mf-icon-wrapper-new {
    width: 48px;
    height: 48px;
    background: #FFF7ED;
    /* Light orange bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    /* Orange-500 */
}

.mf-icon-wrapper-new .material-icons {
    font-size: 24px;
}

.mf-item-new h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.mf-item-new p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .map-layout-new {
        flex-direction: column;
        gap: 60px;
    }

    .map-features-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Strict Responsive */
@media (max-width: 992px) {

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

    .solutions-4-grid {
        grid-template-columns: 1fr 1fr;
    }

    .matrix-grid-strict {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .map-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .strict-hero {
        height: 500px;
        margin-top: -100px;
        padding-top: 100px;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .services-grid-3,
    .models-grid,
    .solutions-4-grid,
    .matrix-grid-strict {
        grid-template-columns: 1fr;
    }

    .industry-container {
        flex-direction: column;
    }

    .industry-tabs-left {
        width: 100%;
        display: flex;
        overflow-x: auto;
    }

    .industry-panel-right {
        width: 100%;
    }

    .panel-content {
        flex-direction: column;
    }
}

/* 7. Advantages Section Responsive */
@media (max-width: 1200px) {
    .new-adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-advantages-section {
        padding: 60px 0;
    }

    .new-advantages-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .advantages-wrapper {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .new-adv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .new-adv-card {
        padding: 40px 20px 30px;
        border-radius: 16px;
    }

    .new-adv-number {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .new-adv-divider {
        margin-bottom: 24px;
    }

    .new-adv-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .new-adv-desc {
        font-size: 15px;
    }
}
