/* Specific Pages CSS */
/* About Page Specifics */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.highlight-box {
    padding: 24px;
    background: #fdf2ed;
    border-left: 3px solid var(--color-primary);
    font-size: 18px;
    line-height: 1.5;
}

.approach-item {
    padding: 40px;
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.approach-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.approach-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #eee;
    margin-bottom: 20px;
}

.approach-title {
    margin-bottom: 16px;
    font-size: 18px;
}

.segmentation {
    background: var(--color-white);
    padding: 100px 0;
}

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

.segment-card {
    background: #FAFAFA; /* Subtle gray as requested */
    border: 1px solid var(--color-border);
    padding: 48px 40px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.segment-card:hover {
    box-shadow: 0 30px 60px rgba(0, 2, 14, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-8px);
}

.segment-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.segment-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    min-height: 52px;
}

.segment-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    stroke-width: 1.5; /* Slightly thinner stroke for elegance */
    flex-shrink: 0;
}

.segment-card__title {
    font-family: var(--font-heading);
    font-size: 22px; /* Slightly larger for prominence */
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-main);
}

.segment-card__desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    min-height: 100px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.segment-card__tasks {
    margin-bottom: 32px;
    min-height: 220px; /* Alumnus alignment for lists */
}

.segment-card__tasks-label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.segment-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.segment-card__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-main);
    display: flex;
}

.segment-card__list .dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Logo Marquee */
.logo-marquee {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
    overflow: hidden;
    position: relative;
    padding: 30px 0; /* Tight vertical padding */
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.01);
    pointer-events: auto;
}

.logo-marquee:hover .logo-marquee__track {
    animation-play-state: paused;
}

.logo-marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
    align-items: center;
}

/* Perfect staggering for 3 marquees to avoid duplicates */
.logo-marquee__track--offset-1 {
    animation-delay: -15s;
}

.logo-marquee__track--offset-2 {
    animation-delay: -30s;
}

.logo-marquee__img {
    height: 85px; /* Massive as requested */
    width: auto;
    max-width: 180px;
    object-fit: contain;
    padding: 0 20px; /* Tight spacing between huge items */
    filter: grayscale(1) invert(0.1);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.segment-card:hover .logo-marquee__img {
    opacity: 0.6;
}

.logo-marquee__img:hover {
    filter: grayscale(0) invert(0) !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.diff-title {
    color: white;
    margin-bottom: 16px;
    font-size: 16px;
}

.diff-text {
    color: #888;
    font-size: 14px;
}

.project-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 60px;
}

.project-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-stat-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.project-stat-label {
    font-size: 12px;
    font-weight: 700;
    color: #bbb;
}

.project-stat-value {
    font-weight: 600;
    color: var(--color-text-main);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        display: grid !important;
    }
}

.value-item {
    padding: 32px;
    background: white;
    text-align: center;
    border: 1px solid #eee;
}

.value-title {
    font-size: 15px;
    font-weight: 600;
}

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

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

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

.italic {
    font-style: italic;
}

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

/* Base Styles Update */
.visual-grid {
    position: relative;
    /* geometric background grid */
    background-image:
        linear-gradient(#f5f5f5 1px, transparent 1px),
        linear-gradient(90deg, #f5f5f5 1px, transparent 1px);
    background-size: 33.33% 33.33%;
    border: 1px solid transparent;
    /* No outer border, use markers */
}

/* Corner markers */
.visual-grid::before,
.visual-grid::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-primary);
}

.visual-grid::before {
    top: -4px;
    left: -4px;
}

.visual-grid::after {
    top: -4px;
    right: -4px;
}

.visual-grid__bottom-markers {
    position: absolute;
    bottom: -4px;
    left: -4px;
    right: -4px;
    height: 8px;
    display: flex;
    justify-content: space-between;
}

.visual-grid__bottom-markers::before,
.visual-grid__bottom-markers::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-primary);
}

.visual-grid__square {
    position: absolute;
    border: 1px solid rgba(242, 101, 34, 0.1);
}

.visual-grid__square--1 {
    top: 25%;
    left: 25%;
    right: 25%;
    bottom: 25%;
}

.visual-grid__square--2 {
    /* Center small square */
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(242, 101, 34, 0.2);
}

.visual-grid__dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
}

/* Remove old dot styles and use specific positioning classes if needed, 
   but for now relies on the HTML structure which we might need to update 
   if we want to use the pseudo-elements for corners. 
   Actually, let's keep the HTML cleaner and use the pseudo-elements for corners. */

.visual-grid__dot--3 {
    top: 35%;
    left: 65%;
}


/* About Section */
.subsection-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
}

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

.grid--2-cols {
    grid-template-columns: 1fr 1fr;
}

.grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    padding: 32px;
    border: 1px solid #EEEEEE;
    background-color: var(--color-white);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
    /* Orange highlight */
}

.card__icon-box {
    width: 50px;
    height: 50px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card__icon-box--highlight {
    background-color: rgba(242, 101, 34, 0.1);
    color: var(--color-primary);
}

.card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-main);
}

.card__line {
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 24px;
    transition: width 0.3s ease;
}

.card:hover .card__line {
    width: 60px;
}

/* Capabilities (Tabs) Section */
.capabilities {
    background-color: var(--color-white);
}

.tabs {
    display: flex;
    gap: 60px;
}

.tabs__list {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
}

.tabs__item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    transition: all 0.3s;
    color: #AAA;
}

.tabs__item:first-child {
    border-top: 1px solid #F0F0F0;
}

.tabs__item--active {
    color: var(--color-text-main);
    border-left: 2px solid var(--color-primary);
    /* Left border accent */
    padding-left: 20px;
    /* Adjust padding for border */
    margin-left: -2px;
    /* Pull back to align */
    background-color: #FFFAF8;
    /* Subtle active bg */
}

/* Override previous style to match screenshot better: 
Screenshot shows just text, active one is bold/darker.
Let's stick to simple text color change and maybe a left border indicator if valid.
The screenshot "03 Р вЂ™Р С‘РЎР‚Р С•Р В±Р Р…Р С‘РЎвЂЎРЎвЂ“ Р С—РЎР‚Р С•РЎвЂ Р ВµРЎРѓР С‘" is simply black, others are grey.
And there is a card on the right for the content.
The active item has a light orange background in the screenshot? No, it looks like just the 3rd item is selected.
Wait, in screenshot 4, the active item "Р вЂ™Р С‘РЎР‚Р С•Р В±Р Р…Р С‘РЎвЂЎРЎвЂ“ Р С—РЎР‚Р С•РЎвЂ Р ВµРЎРѓР С‘" seems to have a light background block around it? 
Actually, it looks like a simple list. Let me refine.
*/

.tabs__item--active .tabs__name {
    font-weight: 700;
    color: var(--color-text-main);
}

.tabs__item--active .tabs__num {
    color: var(--color-primary);
    font-weight: 700;
}

.tabs__num {
    font-size: 12px;
    font-weight: 500;
}

.tabs__name {
    font-size: 16px;
    font-weight: 400;
}


.tabs__content-wrapper {
    flex: 1;
    background-color: #FAFAFA;
    /* Light grey bg for the card */
    padding: 60px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left */
    padding-left: 100px;
    /* Add padding for visual balance */
}

.tabs__content {
    max-width: 650px;
    /* Increased from 400px */
    display: none;
    /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tabs__content--active {
    display: block;
    /* Visible when active */
    opacity: 1;
    animation: fadeIn 0.4s forwards;
}

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

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

.tabs__icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.tabs__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.tabs__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.tabs__line {
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}


/* Process Section */
.process__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process__item {
    display: flex;
    /* padding: 40px 0; */
    border: 1px solid #EFEFEF;
    /* Box style in screenshot */
    margin-top: -1px;
    /* Collapse borders */
    padding: 40px;
    align-items: flex-start;
    gap: 60px;
    background: white;
    transition: all 0.3s;
}

.process__item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 1;
    border-color: transparent;
    transform: translateX(10px);
    /* Side slide animation */
}

.process__num {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 700;
}

.process__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.process__text {
    font-size: 14px;
    color: var(--color-text-main);
}

/* Scenarios Section */
.scenarios {
    background-color: #F8F9FA;
}

.scenarios__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scenario-card {
    background: #fff;
    border: 1px solid #EAEAEA;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 101, 34, 0.2);
    /* Orange shadow */
}

.scenario-card__main {
    display: flex;
    gap: 24px;
}

.scenario-card__icon-box {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scenario-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.scenario-card__subtitle {
    font-size: 14px;
    color: var(--color-text-main);
    margin-bottom: 16px;
    font-weight: 500;
}

.scenario-card__list {
    list-style: disc;
    padding-left: 20px;
    font-size: 14px;
    color: var(--color-text-main);
    line-height: 1.6;
}

/* "Card in Card" Style for Result */
.card-in-card {
    background-color: #FFF9F6; /* Light orange background for importance */
    border: 1px dashed var(--color-primary);
    padding: 24px;
    position: relative;
    border-radius: 4px;
}

.scenario-card__result-title {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.scenario-card__result-list {
    list-style: none;
    padding: 0;
}

.scenario-card__result-list li {
    font-size: 14px;
    color: var(--color-text-main);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.scenario-card__result-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Animation classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

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

/* ERP Page Specific Components */
.module-card--premium {
    background: #252a34;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.module-card--premium:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    background: #2c323d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.erp-kpi-group {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 24px;
    padding-top: 20px;
}

.erp-kpi-item {
    margin-bottom: 12px;
}

.erp-kpi-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    margin-bottom: 2px;
}

.erp-kpi-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #EEE;
}

.process__item {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid #EEE;
    transition: all 0.4s ease;
}

.process__item:hover {
    padding-left: 20px;
    background: #FAFAFA;
}

.process__num {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin-right: 48px;
    min-width: 40px;
}

.process__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.process__text {
    font-size: 16px;
    color: #666;
    max-width: 800px;
}

.platform-card {
    background: #FFF;
    padding: 48px;
    border-radius: 4px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s;
}

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

.industry-tag {
    background: #f8f9fa;
    padding: 14px 24px;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin: 8px;
}

.industry-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.1);
}

.section-description--large {
    max-width: 900px;
    font-size: 18px;
    line-height: 1.6;
}

/* === logistics.html and erp.html page styles === */

/* Block-Level Refinements for Logistics Page Only */
.hero--logistics {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.logistics-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 20%), url('https://images.unsplash.com/photo-1586528116311-ad86d7c7ce80?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

/* Specialized Logistics Nodes Animation in Hero Visual */
.logistics-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-primary);
    animation: pulse-node 3s infinite alternate;
}

@keyframes pulse-node {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.node-line {
    position: absolute;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    height: 1px;
    opacity: 0.2;
    transform-origin: left center;
}

/* Module Items for Dark Section */
.module-card--premium {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.module-card--premium:hover {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-8px);
}

.module-card--premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.4s ease;
}

.module-card--premium:hover::after {
    width: 100%;
}

/* Stat Counter Item Styling */
.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Secondary CTA Refinement */
.cta-mini-box {
    background-color: #111;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.cta-mini-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(242, 101, 34, 0.05) 0%, transparent 40%);
    z-index: -1;
}

/* Utility & Specific Classes replacing inline styles */
.hero__actions--wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.process__content--flex {
    flex: 1;
}

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

.ml-16 {
    margin-left: 16px;
}

.ml-20 {
    margin-left: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.pl-4p {
    padding-left: 4%;
}

.card__text--muted-dark {
    color: rgba(255, 255, 255, 0.6);
}

.module-card__icon {
    margin-bottom: 24px;
}

.card--integration {
    padding: 24px;
    text-align: center;
    background: #fafafa;
}

.integration-card__title {
    margin-bottom: 10px;
    font-weight: 700;
}

.integration-card__text {
    font-size: 13px;
    color: #777;
}

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

.expertise__visual {
    position: relative;
}

.expertise__visual-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-left: 3px solid var(--color-primary);
    filter: grayscale(0.2) contrast(1.1);
}

.expertise__stat-box {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 30px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-primary);
    max-width: 250px;
}

.expertise__stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.expertise__stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.expertise__text {
    padding-left: 80px;
}

.consultation-box {
    background: rgba(242, 101, 34, 0.05);
    border: 1px dashed rgba(242, 101, 34, 0.2);
}

.text-primary {
    color: var(--color-primary);
}

.border-light {
    border-color: #eee;
}

.container--loose {
    max-width: 1400px;
}

.section-description--loose {
    max-width: 800px;
    margin-bottom: 40px;
}

.cta-link--inline {
    margin-top: 20px;
    color: #F26522;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon--right {
    vertical-align: middle;
    margin-left: 8px;
}

.hero__logo-bg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

.hero__logo-bg-img {
    width: 200px;
}

.visual-grid__square--dashed {
    border-style: dashed;
    opacity: 0.3;
}

.node--1 {
    top: 25%;
    left: 35%;
}

.node--2 {
    top: 100%;
    left: 65%;
}

.node--3 {
    top: 45%;
    left: 15%;
}

.node--4 {
    top: 15%;
    left: 80%;
}

.node-line--1 {
    top: 26%;
    left: 36%;
    width: 40%;
    transform: rotate(35deg);
}

.node-line--2 {
    top: 46%;
    left: 16%;
    width: 25%;
    transform: rotate(-5deg);
}

/* === erp.html page styles === */

.hero--erp-dark {
    background: radial-gradient(circle at 70% 30%, #1a2230 0%, #0a0c10 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero--erp-dark .hero__title {
    color: #fff;
}

.hero--erp-dark .hero__description {
    color: rgba(255, 255, 255, 0.7);
}

.hero--erp-dark .section-label__text {
    color: #fff;
}

.hero--erp-dark .hero__footer-line {
    background: rgba(255, 255, 255, 0.1);
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.12) 0%, rgba(242, 101, 34, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    animation: glowPulse 6s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero__blob {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, rgba(124, 58, 237, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    animation: blobFloat 20s infinite alternate ease-in-out;
}

.hero__blob--1 {
    top: -30%;
    right: -15%;
}

.hero__blob--2 {
    bottom: -30%;
    left: -15%;
    animation-delay: -5s;
}

.hero__glass-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 120%;
    height: 200px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__glass-layer--2 {
    transform: translate(-50%, -50%) rotate(25deg);
    background: linear-gradient(90deg, transparent 0%, rgba(242, 101, 34, 0.02) 50%, transparent 100%);
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

/* No extra local tab styles needed if using global classes .tabs, .tabs__item, etc. 
           But I'll keep .tabs-nav support if it's not global. Actually index.html uses .tabs__list. 
           I will use the exact hierarchy. */
.capabilities .tabs__content-wrapper {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 4px;
    min-height: 400px;
    position: relative;
}

/* Ensuring contrast for the line and icon box if needed */
.tabs__icon-box {
    background: var(--color-primary, #F26522);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Grid for Block 3 (Equal Heights) */
.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.module-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.module-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: #F26522;
    transform: translateY(-5px);
}

.module-item__title {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    /* Standard dark site color */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.module-item__text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    flex-grow: 1;
    margin-bottom: 24px;
}

.module-item--individual {
    border: 1px dashed rgba(242, 101, 34, 0.4) !important;
    background: rgba(242, 101, 34, 0.03) !important;
}

.module-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.btn--small {
    padding: 10px 16px;
    font-size: 12px;
}

/* Dark Variations for Modules */
.section--dark {
    background-color: #0d0f12;
    color: #fff;
}

.section--dark .section-title,
.section--dark .expertise__description,
.section--dark .stat-card__number,
.section--dark .contact-block__title,
.section--dark .free-consultation__title,
.section--dark .section-description,
.section--dark .section-label__text {
    color: var(--color-white) !important;
}

.section--dark .section-description,
.section--dark .expertise__description,
.section--dark .free-consultation__text,
.section--dark .contact-item__value {
    color: var(--color-white) !important;
}

.module-item--dark {
    background: #16191e;
    border-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.module-item--dark .module-item__title {
    color: #fff !important;
}

.module-item--dark .module-item__text {
    color: var(--color-white) !important;
}

.module-item {
    text-decoration: none;
}

.module-item__text {
    flex-grow: 1;
}

.module-item--dark:hover {
    background: #1c2128;
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.module-item--dark .cta-link {
    color: var(--color-primary);
}

/* Modules Section Footer CTA */
.modules-footer {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.modules-footer__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modules-footer__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .module-grid { grid-template-columns: repeat(2, 1fr); }
}

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


/* === it-consulting.html page styles === */
.section--pt-40 { padding-top: 40px !important; }


.bg-text--side {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    font-size: 4.5vw;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    color: #E2E2E2;


    z-index: 0;
    pointer-events: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}



.card--accent-dark {
    background: #1a1a1a !important;
    padding: 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card__text--quote {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 300;
    color: #FFF !important;
    font-style: italic;
}

.accent-line--orange {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 32px;
}

.cta-mini {
    background: #f9f9f9;
    padding: 60px;
    border-left: 4px solid var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.cta-mini__text {
    font-size: 16px;
    color: #555;
    max-width: 750px;
    font-weight: 500;
    line-height: 1.8;
}

/* Block 4: Step-by-Step Implementation */
.step-block {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.step-watermark {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    color: #E2E2E2;
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 5px;
    pointer-events: none;
    text-transform: uppercase;
}

.step-header {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-bottom: 70px;
}

.step-header__title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.step-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #eee;
    margin: 0 auto;
    max-width: 1400px;
}

.step-col {
    padding: 60px 40px;
    border-right: 1px solid #eee;
    position: relative;
    min-height: 350px;
    transition: background 0.3s ease;
}

.step-col:last-child {
    border-right: none;
}

.step-col:hover {
    background: #fafafa;
}

.step-col__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #F26522;
    display: none;
}

.step-col:hover .step-col__line {
    display: block;
}

.step-col__title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.4;
    max-width: 250px;
}

.step-col__text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .step-header__title {
        font-size: 32px;
    }

    .step-watermark {
        font-size: 12vw;
    }

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



.module-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--color-primary, #F26522);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.module-card__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.kpi-badge {
    display: inline-flex;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 10px;
}

.kpi-badge__val {
    color: var(--color-primary, #F26522);
    font-weight: 800;
    font-size: 18px;
}

.kpi-badge__label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

/* Modifiers for Functionality Rows */
.functionality-row__info--highlight {
    background: rgba(242, 101, 34, 0.08);
    padding: 30px;
    border-radius: 4px;
    border-left: 3px solid var(--color-primary);
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.industry-tag {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #eee;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.platform-item {
    background: #fafafa;
    padding: 40px;
    border-radius: 16px;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(242, 101, 34, 0.1);
    line-height: 1;
}



/* --- Master-specific Styles --- */

/* --- Solutions Matrix Table --- */
.matrix-container {
    overflow-x: auto;
    margin-top: 80px;
    padding-bottom: 40px;
}

.matrix-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    background: transparent;
}

/* Desktop Only Design Refinements */
@media (min-width: 769px) {
    .matrix-table th,
    .matrix-table td {
        padding: 30px 40px;
        text-align: left;
        vertical-align: top;
        border-bottom: 1px solid #F0F0F0;
    }

    .matrix-table thead th {
        padding-bottom: 50px;
        border-bottom: 1px solid #F0F0F0;
    }

    .matrix-table__label-col {
        width: 15%;
        border-bottom: none !important;
        padding-left: 0 !important;
    }

    .matrix-table__header-col {
        width: 25%;
        font-size: 26px;
        font-weight: 700;
        color: var(--color-text-main);
    }

    .matrix-table__row-label {
        font-weight: 700;
        font-size: 13px;
        color: #999;
        display: flex;
        align-items: center;
        gap: 16px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        padding-top: 8px;
        border-right: 1px solid #F0F0F0;
        height: 100%;
        margin-right: 20px;
    }

    .matrix-format {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 280px;
        height: 52px;
        padding: 0 24px;
        background: #F8F9FA;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        color: #555;
    }

    .matrix-tag {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .matrix-solution-link {
        border-bottom: 1px solid #DDD;
        padding-bottom: 2px;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .matrix-table__footer .btn {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        text-transform: none;
        font-size: 16px;
    }
}

.matrix-table__row-label svg {
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.matrix-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.matrix-tag {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
}

.matrix-tag span {
    color: #BBB;
    font-weight: 500;
    font-size: 12px;
    margin-left: 4px;
}

.matrix-solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.matrix-solution-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-main);
}

.matrix-solution-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
    text-decoration: none;
}

.matrix-solution-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.matrix-table__footer td {
    padding-top: 40px;
    border-bottom: none;
}

@media (max-width: 992px) {
    .matrix-table__header-col {
        font-size: 20px;
    }
}

/* Platform Items */
.platform-item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary);
}

.platform-item__title {
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
}

.platform-item__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq__list {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq__item {
    border-bottom: 1px solid #EEE;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    transition: color 0.3s;
}

.faq__question:hover {
    color: var(--color-primary);
}

.faq__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    background: var(--color-primary);
    transition: transform 0.3s ease;
}

/* Horizontal line */
.faq__icon::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

/* Vertical line to make a '+' */
.faq__icon::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.faq__item--active .faq__icon::after {
    transform: rotate(90deg) scaleX(0);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq__item--active .faq__answer {
    max-height: 1000px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq__answer-content {
    padding-bottom: 32px;
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* --- Specialized Module Item Styles --- */
.module-item__list {
    list-style: none;
    margin-top: 8px;
}

.module-item__list li {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    padding: 4px 0;
    position: relative;
    padding-left: 15px;
}

.module-item__list li::before {
    content: "вЂў";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* --- AI Assistants Page Specific Styles --- */
.ai-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-node {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 30px rgba(242, 101, 34, 0.4);
    z-index: 2;
}

.ai-node--center {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--color-primary) 0%, #d4561a 100%);
    animation: pulseNode 3s infinite ease-in-out;
}

.ai-node--1 {
    width: 40px;
    height: 40px;
    top: 15%;
    left: 15%;
    animation: floatNode 4s infinite ease-in-out;
}

.ai-node--2 {
    width: 50px;
    height: 50px;
    top: 25%;
    right: 10%;
    animation: floatNode 5s infinite ease-in-out 1s;
}

.ai-node--3 {
    width: 35px;
    height: 35px;
    bottom: 20%;
    left: 30%;
    animation: floatNode 6s infinite ease-in-out 0.5s;
}

.ai-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ai-connection-line {
    stroke: rgba(242, 101, 34, 0.15);
    stroke-width: 1;
    stroke-dasharray: 5;
    animation: dashLines 20s linear infinite;
}

@keyframes pulseNode {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(242, 101, 34, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(242, 101, 34, 0.6);
    }
}

@keyframes floatNode {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-30px) translateX(10px);
    }
}

@keyframes dashLines {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Modules Grid (Standard) */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Solution Card (Dark) */
.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    transition: all 0.4s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-primary);
}

.solution-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.solution-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.solution-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: #A0A0A0;
    /* Gray for dark section */
}

/* Why Item */
.why-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    border-bottom: 1px solid var(--color-border);
}

.why-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.why-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(242, 101, 34, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-item__text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-item {
        border-bottom: 1px solid var(--color-border);
    }

    .why-item:last-child {
        border-bottom: none;
    }
}

/* --- Vertical Tabs (Capabilities Style) --- */
.vertical-tabs {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    margin-top: 60px;
}

.tabs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-border);
}

.tabs__item {
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-left: -2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tabs__item--active {
    background: rgba(242, 101, 34, 0.03);
    border-left-color: var(--color-primary);
}

.tabs__item-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    width: 24px;
    opacity: 0.6;
}

.tabs__item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.tabs__item:not(.tabs__item--active) .tabs__item-title {
    color: var(--color-text-secondary);
    font-weight: 400;
}

.tabs__item:hover:not(.tabs__item--active) {
    background: rgba(0, 0, 0, 0.01);
}

.tabs-content-container {
    position: relative;
}

.tabs__content {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}

.tabs__content--active {
    display: block;
}

.capability-card {
    background: #fff;
    padding: 60px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.capability-card__icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.2);
}

.capability-card__icon svg {
    width: 32px;
    height: 32px;
}

.capability-card__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

.capability-card__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 740px;
}

.capability-card__line {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
}

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

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

/* Business Solutions Styles (Dark section) */
.business-solutions .card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.business-solutions .card__title {
    color: #fff !important;
}

.business-solutions .card__text {
    color: #A0A0A0;
}



/* === Subpage Hero System (Compact & Centered) === */
.hero-sub {
    position: relative;
    padding: 120px 0 80px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.hero-sub__content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-sub__title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

.hero-sub__description {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-sub__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    color: #F4F4F4;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.section-label--centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-sub__actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

    .hero-sub__bg-text {
        font-size: 80px;
        left: 20px;
    }
}

/* === Rule 1 & Audit Compliance Helpers === */

/* Spacing Utilities */
.mt-50 {
    margin-top: 50px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.m-auto {
    margin: 0 auto !important;
}

/* CTA Card Branding & Variations */
.cta-card--white {
    background: #FFF !important;
    border-radius: 4px;
    padding: 60px 80px;
}

.cta-card__title--large {
    font-size: 38px;
}

.cta-card__text--small {
    font-size: 15px;
    margin-top: 10px;
}

.cta-card__logo--static {
    width: 200px;
    opacity: 1;
    animation: none;
}

/* Pricing Table System (Migration from inline styles) */
.pricing-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(242, 101, 34, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.pricing-table-cell {
    color: #666;
    font-size: 15px !important;
}

.pricing-table-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.pricing-table-tax {
    font-size: 13px;
    color: #999;
}

.pricing-info-icon {
    color: var(--color-primary) !important;
    cursor: pointer;
    font-weight: 700;
}

.pricing-badge {
    background: #e31e24;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 8px;
    font-weight: 700;
}

/* SVG Helpers */
.svg-middle {
    vertical-align: middle;
}

.ml-8 {
    margin-left: 8px;
}

/* Layout Utilities */
.flex-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.z-index-1 {
    position: relative;
    z-index: 1;
}

.btn--outline-white {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ==========================================================================
   VII. Responsive System (Consolidated)
   ========================================================================== */

/* Specific Page Overrides (Clean context-based overrides) */
.hero__floating-logo--centered {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}
/* Business Scenarios (Block 4) */
.scenarios {
    background-color: var(--color-white);
    padding: 100px 0;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.scenario-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 50px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.scenario-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.scenario-card__header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.scenario-card__icon-box {
    background: #111;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scenario-card__title-cluster {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scenario-card__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

.scenario-card__desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.scenario-card__body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.scenario-card__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
    opacity: 0.8;
}

.scenario-card__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.scenario-card__steps li {
    font-size: 15px;
    color: #444;
    padding-left: 15px;
    position: relative;
    margin-bottom: 12px;
}

.scenario-card__steps li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
}

.scenario-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(242, 101, 34, 0.2);
    padding: 12px 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    margin-top: 10px;
}

.scenario-card__cta svg {
    transition: transform 0.3s ease;
}

.scenario-card__cta:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.15);
}

.scenario-card__cta:hover svg {
    transform: translateX(5px);
    stroke: #fff;
}

.scenario-card__result-box {
    background: rgba(242, 101, 34, 0.03);
    border: 1px dashed rgba(242, 101, 34, 0.3);
    padding: 35px;
    height: 100%;
}

.scenario-card__result-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.scenario-card__result-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-card__result-list li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-main);
    padding-left: 15px;
    position: relative;
    margin-bottom: 16px;
}

/* Features Difference (Block 6) */
.features-diff {
    background-color: var(--color-light-gray);
    padding: 100px 0;
}

.features-diff__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.diff-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
}

.diff-card__icon {
    color: var(--color-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(242, 101, 34, 0.05);
    border-radius: 12px;
}

.diff-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
    line-height: 1.3;
}

.diff-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* How we work Steps (Block 7) - Horizontal Flow */
.process {
    background-color: var(--color-white);
    padding: 100px 0;
}

.process__header {
    margin-bottom: 60px;
    max-width: 1100px;
}

.process__intro-box {
    margin-top: 30px;
}

.process__intro-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 18px;
    line-height: 1.25;
}

.process__intro-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    max-width: 850px;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.process-step {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    height: 100%;
}

.process-step:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.process-step__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.process-step__icon {
    color: var(--color-primary);
    width: 28px;
    height: 28px;
}

.process-step__num {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: #eee;
    letter-spacing: 1px;
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 12px;
    line-height: 1.4;
}

.process-step__text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.process-step__arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #eee;
    z-index: 2;
    display: none;
}



.process-step:last-child .process-step__arrow {
    display: none;
}

@media (max-width: 1200px) {
    .process-step {
        padding: 30px;
    }
}

/* Business Scenarios (Block 4) */
.scenarios {
    background-color: #ffffff;
    padding: 100px 0;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.scenario-card {
    background: #f7f7f9;
    border: 1px solid #eee;
    padding: 40px;
    transition: all 0.4s ease;
}

.scenario-card:hover {
    background: #f0f0f2;
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.scenario-card__header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.scenario-card__icon-box {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scenario-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.scenario-card__desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.scenario-card__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.scenario-card__subtitle {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.scenario-card__steps {
    list-style: none;
    padding: 0;
}

.scenario-card__steps li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.scenario-card__result-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.scenario-card__result-list {
    list-style: none;
    padding: 0;
}

.scenario-card__result-list li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
    padding-left: 15px;
    position: relative;
}

.scenario-card__result-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 1px;
    background: var(--color-primary);
}

@media (max-width: 992px) {
    .scenarios-grid { grid-template-columns: 1fr; }
    .scenario-card__body { grid-template-columns: 1fr; }
}

/* Tech Stack Section (Block 8) */
.tech-stack__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tech-card__icon {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.tech-card__icon svg {
    width: 24px;
    height: 24px;
}

.tech-card__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tech-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-card__list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    line-height: 1.4;
}

.tech-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 1px;
    background: var(--color-primary);
}

/* Expertise Section (Block 9) */
.expertise {
    background-color: #0d0f12;
    padding: 80px 0 40px 0; /* Reduced bottom padding */
    position: relative;
}

.expertise .section-description {
    margin-bottom: 40px;
    max-width: 900px;
}

.expertise__stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px; /* Even smaller gap here */
}

.stat-card--classic {
    background: #1a1c1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card--classic:hover {
    border-color: var(--color-primary);
    background: #22252a;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card__num {
    font-size: 54px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-card__num span {
    color: var(--color-primary);
}

.stat-card__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.stat-card--wide {
    grid-column: 1 / -1;
    padding: 40px;
    background: #1a1c1f !important; /* Back to dark */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise__logos-title {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff; /* Back to white text */
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    margin-bottom: 25px;
    opacity: 0.8;
}

.logo-marquee--expertise-card {
    width: 100%;
    margin-top: 15px;
    padding: 25px 0;
    background: transparent; /* Background removed as requested */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.logo-marquee--expertise-card .logo-marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 50s linear infinite; /* Slightly slower for larger logos */
    align-items: center;
}

.logo-marquee--expertise-card .logo-marquee__img {
    height: 55px; /* Larger logos */
    margin: 0 40px;
    filter: brightness(0) invert(0.6); /* Uniform gray across all logos */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-marquee--expertise-card .logo-marquee__img:hover {
    opacity: 1;
    filter: none; /* Full color restored */
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .expertise__stats-grid { grid-template-columns: repeat(2, 1fr); margin-bottom: 20px; }
    .stat-card--wide { grid-column: auto; }
}

@media (max-width: 1200px) {
    .expertise__stats-grid { gap: 20px; }
    .stat-card--premium { padding: 40px 30px; }
    .stat-card__num { font-size: 40px; }
}

/* Consultation Banner (Block 10) */
.banner-cta {
    background-color: #0d0f12;
    padding-top: 0;
    padding-bottom: 120px;
}

.banner-cta__box {
    background: linear-gradient(135deg, #16181b 0%, #0d0f12 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
}

.banner-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.banner-cta__text {
    max-width: 700px;
}

.banner-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-cta__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.banner-cta__actions {
    flex-shrink: 0;
}

.banner-cta__accent {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.1) 0%, transparent 70%);
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .banner-cta__box { padding: 60px; }
    .banner-cta__content { flex-direction: column; align-items: flex-start; gap: 40px; }
}


/* ==========================================================================
   MOBILE ADAPTATION — Consolidated Media Queries
   ========================================================================== */

/* --- 1200px --- */
@media (max-width: 1200px) {
    .tech-stack__grid { grid-template-columns: repeat(3, 1fr); }
    .process__steps { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}

/* --- 992px --- */
@media (max-width: 992px) {
    .segments-grid { grid-template-columns: repeat(2, 1fr); }
    .step-grid { grid-template-columns: repeat(2, 1fr); }
    .step-col { min-height: auto; border-right: none; border-bottom: 1px solid #eee; }
    .tech-stack__grid { grid-template-columns: repeat(2, 1fr); }
    .features-diff__grid { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .expertise__stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card--wide { grid-column: auto; }
}

/* --- 768px --- */
@media (max-width: 768px) {
    /* Переваги (Block 6) */
    .features-diff__grid { grid-template-columns: 1fr; gap: 20px; }
    .diff-card { padding: 28px; }

    /* Підхід (Block 7) */
    .process { padding: 60px 0 !important; }
    .process__header { margin-bottom: 40px !important; }
    .process__intro-text { font-size: 18px !important; }
    .process__intro-desc { font-size: 15px !important; }
    .process__steps { grid-template-columns: 1fr !important; gap: 16px !important; display: grid !important; }
    .process-step { padding: 24px 20px !important; }
    .process-step__arrow { display: none !important; }

    /* Технології (Block 8) - requested to be 2 cards even on small devices */
    .tech-stack__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; display: grid !important; }
    .tech-card { padding: 16px 12px !important; min-width: 0 !important; }
    .tech-card__title { font-size: 14px !important; margin-bottom: 8px !important; }
    .tech-card__icon { margin-bottom: 12px !important; }
    .tech-card__icon svg { width: 20px !important; height: 20px !important; }
    .tech-card__list li { font-size: 12px !important; margin-bottom: 6px !important; padding-left: 12px !important; }
    .tech-card__list li::before { top: 6px !important; }

    /* Експертиза (Block 9) */
    .expertise { padding: 60px 0 30px !important; }
    .expertise__stats-grid { grid-template-columns: 1fr !important; gap: 16px !important; display: grid !important; }
    .stat-card { padding: 24px 20px !important; min-width: 0 !important; }
    .stat-card--classic { padding: 24px 20px !important; }
    .stat-card__num { font-size: 40px !important; }
    .stat-card--wide { grid-column: 1 / -1 !important; padding: 24px 16px !important; }
    .expertise__logos-title { font-size: 14px !important; margin-bottom: 16px !important; white-space: normal !important; text-align: center; }

    /* Segments / Segmentation */
    .segments-grid { grid-template-columns: 1fr; }
    .segmentation { padding: 60px 0; }

    /* Project info */
    .project-box { padding: 30px 20px; }
    .project-info-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Platform */
    .platform-grid { grid-template-columns: 1fr; }
    .platform-item { padding: 24px; }

    /* Scenarios */
    .scenario-card { grid-template-columns: 1fr; }
    .scenario-card__main { padding: 24px; }
    .scenario-card__result { padding: 24px; border-left: none; border-top: 4px solid var(--color-primary); }
    .scenario-card__body { grid-template-columns: 1fr; }
    .scenario-card__result-box { padding: 24px; }

    /* Banner CTA */
    .banner-cta { padding-bottom: 80px; }
    .banner-cta__box { padding: 40px 24px; }
    .banner-cta__title { font-size: 24px; }
    .banner-cta__content { flex-direction: column; gap: 24px; }
    .banner-cta__description { font-size: 16px; }

    /* Logo marquee */
    .logo-marquee { width: 100%; margin-left: 0; margin-right: 0; }
    .segment-card__tasks { min-height: auto; }
    .scenario-card__main, .project-info-grid, .values-grid { flex-direction: column; grid-template-columns: 1fr; }
    
    /* CTA Card Mobile Fix (stack buttons) */
    .cta-card__actions { display: flex !important; flex-direction: column !important; gap: 16px !important; width: 100% !important; align-items: center; }
    .cta-card__actions .btn { width: 100% !important; display: flex; justify-content: center; }
    .cta-card__actions .cta-card__link { width: 100% !important; display: flex; justify-content: center; }

    /* Matrix / Pricing Cards Mobile Flow */
    .matrix-cards-mobile { display: flex; flex-direction: column; gap: 24px; margin-top: 30px; width: 100%; }
    .matrix-mobile-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
    .matrix-mobile-card__header { background: #fdfdfd; padding: 20px; font-size: 22px; font-weight: 800; color: var(--color-primary); border-bottom: 2px solid #f0f0f0; text-align: center; text-transform: uppercase; }
    .matrix-mobile-card__features { padding: 0; }
    .matrix-mobile-card__feature-row { padding: 16px 20px; border-bottom: 1px solid #f5f5f5; display: flex; flex-direction: column; gap: 10px; }
    .matrix-mobile-card__feature-row:last-child { border-bottom: none; }
    .matrix-mobile-card__feature-label { font-size: 12px; font-weight: 800; color: #999; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
    .matrix-mobile-card__feature-label svg { width: 16px; height: 16px; color: var(--color-primary); }
    .matrix-mobile-card__feature-val { font-size: 15px; font-weight: 600; color: var(--color-text-main); }
    .matrix-mobile-card__footer { padding: 20px; background: #fafafa; border-top: 1px solid #f0f0f0; text-align: center; }
    .matrix-mobile-card__footer .btn { width: 100%; display: flex; justify-content: center; }

    .matrix-table { display: block; overflow-x: auto; white-space: nowrap; }
    .matrix-tag, .matrix-format { display: inline-flex; margin-right: 6px; margin-bottom: 6px; }

    .value-item { padding: 20px; }
}

/* --- 576px --- */
@media (max-width: 576px) {
    .step-grid { grid-template-columns: 1fr !important; }
    .step-col { padding: 40px 20px !important; }
    .expertise__stats-grid { grid-template-columns: 1fr !important; }
    .module-grid { grid-template-columns: 1fr !important; }
    /* Tech stack stays 2 cols, so I just adjust gap slightly if needed */
    .tech-stack__grid { gap: 8px !important; }
    .tech-card { padding: 12px 10px !important; }
    .tech-card__title { font-size: 13px !important; }
    .tech-card__list li { font-size: 11px !important; }
}

/* --- 480px --- */
@media (max-width: 480px) {
    .segmentation { padding: 40px 0; }
    .segment-card { padding: 28px 20px; }
    .banner-cta__box { padding: 30px 16px; }
    .banner-cta__title { font-size: 20px; }
    .features-diff { padding: 40px 0; }
    .process { padding: 40px 0; }
}

