/* Contact Channels Row Layout */
.info-text-box .contact-channel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 18px;
    margin-bottom: 6px;
}
/* ===================================
    WEBSITE CONCEPT 3: DYNAMIC ENTERPRISE
    Navy/blue palette aligned with Concept 1 legacy theme
    =================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --color-purple: #003D82;
    --color-deep-purple: #001F3F;
    --color-coral: #00A3E0;
    --color-orange: #0066A1;
    --color-dark: #1A1A2E;
    --color-gray: #4A4A5E;
    --color-light-gray: #E8E8EA;
    --color-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== GLOBAL RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== WRAPPER ===== */
.wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(142, 45, 226, 0.08);
    transition: var(--transition-normal);
    margin-bottom: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-mark {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1.3rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--color-purple) 92%, white), color-mix(in srgb, var(--color-deep-purple) 92%, white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--color-gray);
    font-weight: 500;
}

.main-menu {
    display: flex;
    gap: 36px;
}

.menu-item {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-orange));
    transition: var(--transition-normal);
}

.menu-item:hover, .menu-item.active {
    color: var(--color-purple);
}

.menu-item:hover::after, .menu-item.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-orange));
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===== HERO SLIDER ===== */
.hero-main {
    position: relative;
    min-height: 100vh;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slider-wrap {
    position: relative;
    min-height: 100vh;
}

.hero-slider {
    position: relative;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
    margin-top: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active-slide {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.slide-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-grad.grad1 {
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
}

.slide-grad.grad2 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8C42 100%);
}

.slide-grad.grad3 {
    background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 50%, #FF6B6B 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 760px;
}

.slide-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.slide-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slide-content p {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== HERO SPLIT ===== */
.hero-split {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
}

.hero-split-media {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
    flex: 1 1 55%;
    order: 2;
}

.hero-media-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-media-slide.active-slide {
    opacity: 1;
}

.hero-media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-split-content {
    background: var(--color-deep-purple);
    color: var(--color-white);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: visible;
    flex: 0 0 45%;
    order: 1;
}

.hero-split-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -160px;
    width: 220px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 31, 63, 1) 0%, rgba(0, 31, 63, 0) 100%);
    pointer-events: none;
}

.hero-static {
    max-width: 520px;
    padding: 140px 0 100px;
}

.hero-title-splash {
    display: inline-block;
    background: var(--color-coral);
    padding: 28px 32px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.35);
    margin-right: -140px;
    position: relative;
    z-index: 3;
}

.hero-title-splash h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1.1;
    color: var(--color-white);
}

.hero-static p {
    font-size: 1.1rem;
    margin: 28px 0 36px;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== HERO FLOW (HOME TEMP) ===== */
.hero-flow {
    position: relative;
    min-height: 100vh;
}

.hero-flow .hero-split-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    width: 100%;
}

.hero-flow .hero-media-slide {
    z-index: 0;
}

.hero-flow-media .hero-flow-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, rgba(0, 31, 63, 0.92) 0%, rgba(0, 61, 130, 0.62) 45%, rgba(0, 61, 130, 0.2) 68%, rgba(0, 61, 130, 0) 100%);
    overflow: hidden;
}

.hero-flow-media .hero-flow-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateY(-10%);
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.45) 0%, rgba(0, 163, 224, 0.18) 40%, rgba(0, 31, 63, 0) 70%);
    pointer-events: none;
}

/* ===== TIYA-STYLE HEADER + HERO (HOME TEMP) ===== */
.tiya-header {
    position: fixed;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tiya-header .menu-item {
    color: var(--color-white);
}

.tiya-header .menu-item::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
}

.tiya-header .menu-item:hover,
.tiya-header .menu-item.active {
    color: var(--color-white);
}

.tiya-header .logo-text strong {
    color: var(--color-white);
    background: none;
    -webkit-text-fill-color: inherit;
}

.tiya-header .logo-text span {
    color: rgba(255, 255, 255, 0.85);
}

.tiya-header .mobile-menu-btn span {
    background: var(--color-white);
}

.tiya-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 32px rgba(0, 31, 63, 0.18);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(0, 31, 63, 0.08);
}

.tiya-header.is-scrolled .menu-item {
    color: var(--color-deep-purple);
}

.tiya-header.is-scrolled .menu-item:hover,
.tiya-header.is-scrolled .menu-item.active {
    color: var(--color-purple);
}

.tiya-header.is-scrolled .logo-text strong {
    color: var(--color-deep-purple);
}

.tiya-header.is-scrolled .logo-text span {
    color: rgba(0, 31, 63, 0.65);
}

.tiya-header.is-scrolled .mobile-menu-btn span {
    background: rgba(0, 31, 63, 0.85);
}


.tiya-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tiya-hero .hero-split-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tiya-hero-media .tiya-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 31, 63, 0.15) 0%, rgba(0, 31, 63, 0.75) 100%);
    z-index: 1;
}

.tiya-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 12vh 0 5vh;
}

.tiya-hero-text {
    max-width: 760px;
    color: var(--color-deep-purple);
    position: relative;
    z-index: 4;
    padding: 40px 0px 48px;
    top: clamp(60px, 12vw, 230px);
}

.tiya-hero-text::before {
    content: '';
    position: absolute;
    left: -36px;
    right: -200px;
    top: -24px;
    bottom: -36px;
    background: transparent;
    z-index: 1;
    border-radius: 0;
    clip-path: none;
    box-shadow: none;
}

.tiya-hero-text > h1,
.tiya-hero-text > p {
    position: relative;
    z-index: 2;
}

.tiya-hero-text h1 {
    font-size: clamp(2rem, 6vw, 2.4rem);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.tiya-hero-text p {
    font-size: 1.1rem;
    color: rgba(11, 19, 32, 0.75);
}

.tiya-hero-curve {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 3;
}

.tiya-hero-curve svg {
    display: block;
    width: 100%;
    height: clamp(250px, 30vw, 332px);
}



.tiya-hero-curve-bottom {
    bottom: 0;
    height: clamp(250px, 30vw, 332px);
    z-index: 2;
}

.tiya-hero-curve-bottom path {
    fill: var(--color-white);
}

.hero-flow-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 80px;
}

.hero-flow-card {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding: 44px 48px;
    border-radius: 36px 120px 120px 36px;
    background: linear-gradient(130deg, rgba(0, 31, 63, 0.9), rgba(0, 61, 130, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.35);
    backdrop-filter: blur(12px);
    overflow: hidden;
    clip-path: polygon(0% 0%, 92% 0%, 100% 20%, 100% 80%, 92% 100%, 0% 100%, 6% 78%, 6% 22%);
    transform: translateX(-20px);
}

.hero-flow-card h1 {
    color: var(--color-white);
    font-size: 3.2rem;
    line-height: 1.08;
    width: 100%;
}

.hero-flow-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-top: 18px;
    width: 100%;
}

.hero-flow-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.45), rgba(0, 163, 224, 0));
    border-radius: 50%;
}

.hero-flow-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-flow-grid {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-height: 420px;
}

.hero-flow-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.hero-flow-row-bottom {
    justify-content: flex-end;
}

.hero-flow-row-bottom h1 {
    font-size: 3.2rem;
    line-height: 1.08;
    color: var(--color-white);
}

.hero-flow-row-mid p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-flow-metrics {
    display: flex;
    gap: 28px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.hero-flow-metric {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    min-width: 140px;
}

.hero-flow-metric .metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
}

.hero-flow-metric .metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-flow-floats {
    position: absolute;
    right: 6vw;
    bottom: 12vh;
    display: flex;
    gap: 18px;
    z-index: 2;
}

.hero-flow-curve {
    position: absolute;
    top: 0;
    right: 33%;
    height: 100%;
    width: 160px;
    z-index: 2;
    stroke: rgba(255, 255, 255, 0.55);
    stroke-width: 2.5;
    fill: none;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

.hero-float {
    width: 190px;
    height: 240px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.1);
}

.hero-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float.hero-float-two {
    transform: translateY(24px);
}

@media (max-width: 1100px) {
    .hero-flow-floats {
        display: none;
    }

    .hero-flow-content {
        text-align: left;
    }

    .hero-flow-card {
        margin: 0;
        transform: none;
        clip-path: none;
    }

    .hero-flow-metrics {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .hero-flow-card {
        padding: 30px 24px;
    }

    .hero-flow-row-bottom h1 {
        font-size: 2.3rem;
    }
}

.cta-primary, .cta-secondary {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-block;
    border: none;
}

.cta-primary {
    background: var(--color-white);
    color: var(--color-purple);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cta-secondary:hover {
    background: var(--color-white);
    color: var(--color-purple);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 16px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section-pad {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    background: var(--color-white);
}

.section-head {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-purple);
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head p {
    font-size: 1.15rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ===== PROPOSE SECTION ===== */
.propose-section {
    background: var(--color-white);
}

.propose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.propose-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
}

.propose-content p {
    color: var(--color-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.propose-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.2);
}

.propose-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== CATEGORY SHOWCASE ===== */
.category-showcase {
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

/* ===== PREMIUM APPROACH SECTION ===== */
.approach-premium {
    background: #F8F9FA;
    position: relative;
    overflow: hidden;
}

.approach-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(200, 169, 106, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(200, 169, 106, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.approach-premium .section-head h2 {
    color: #0B1F3A;
    margin-bottom: 16px;
}

.approach-premium .section-head p {
    display: block;
}

.approach-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 32px 48px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.approach-list li {
    align-items: flex-start;
}

.approach-point {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.approach-point strong {
    color: #0B1F3A;
    font-size: 1rem;
}

.approach-point span {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Key Strengths Section */
.key-strengths-section {
    margin-top: 80px;
}

.key-strengths-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 32px 48px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.key-strengths-list li {
    align-items: flex-start;
}

.strength-point {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.strength-point strong {
    color: #0B1F3A;
    font-size: 1rem;
}

.strength-point span {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Approach Cards Grid */
.approach-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

/* Premium Approach Card */
.approach-card-premium {
    background: white;
    border: 2px solid #C8A96A;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.approach-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C8A96A, #D4B896, #C8A96A);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.approach-card-premium:hover {
    border-color: #D4B896;
    background: #FBF9F5;
    box-shadow: 
        0 16px 48px rgba(200, 169, 106, 0.2),
        inset 0 0 20px rgba(200, 169, 106, 0.08);
    transform: translateY(-8px);
}

.approach-card-premium:hover::before {
    opacity: 1;
}

/* Card Icon */
.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.4s ease;
}

.approach-card-premium:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Card Title */
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B1F3A;
    margin: 0 0 12px 0;
    transition: color 0.4s ease;
}

.approach-card-premium:hover .card-title {
    color: #C8A96A;
}

/* Card Description */
.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #5A5A6E;
    margin: 0;
    line-height: 1.6;
    transition: color 0.4s ease;
}

.approach-card-premium:hover .card-description {
    color: #3A3A4E;
}

/* ===== RESPONSIVE APPROACH ===== */
@media (max-width: 1024px) {
    .approach-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .approach-card-premium {
        padding: 36px 24px;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 14px;
    }
    
    .card-title {
        font-size: 1.15rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .approach-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .approach-card-premium {
        padding: 32px 20px;
    }
    
    .card-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .approach-premium {
        padding: 50px 0;
    }
    
    .approach-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card-premium {
        padding: 28px 18px;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 0.8rem;
    }
}

/* ===== GLOBAL PRESENCE ===== */
.global-presence {
    padding-bottom: 0;
}

.global-map-wrap {
    width: 100%;
    padding: 0 24px 100px;
}

.global-map {
    width: 100%;
    background: var(--color-white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.15);
    border: 1px solid rgba(0, 61, 130, 0.12);
}

.global-map .map-canvas {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.global-map .map-image {
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 61, 130, 0.1);
    position: relative;
}
.map-label-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #003D82;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    z-index: 10;
}

.map-label {
    position: absolute;
    color: #003D82;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: normal;
    border: none;
    opacity: 1;
    font-family: var(--font-body);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 140px;
    max-width: 140px;
    text-align: center;
    z-index: 12;
}

.map-label strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #003D82;
    display: block;
}

.map-label span {
    font-size: 0.7rem;
    font-weight: 500;
    color: #003D82;
    display: block;
    line-height: 1.3;
}

.global-map .map-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #E8F3F8, #F0F8FC);
}

.map-routes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(0, 163, 224, 0.6);
    stroke-width: 2.5;
    stroke-linecap: round;
    pointer-events: none;
}

/* Trade Location Markers */
.map-marker-group {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 520px;
    pointer-events: auto;
}

.map-marker-item {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -100%);
    z-index: 15;
}

.marker-pin {
    position: relative;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #C8A96A, #D4B896);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 
        0 8px 24px rgba(200, 169, 106, 0.35),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
    margin: 0 auto 8px;
    transition: all 0.3s ease;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 
            0 8px 24px rgba(200, 169, 106, 0.35),
            inset 0 0 8px rgba(255, 255, 255, 0.3),
            0 0 0 0 rgba(200, 169, 106, 0.4);
    }
    50% {
        box-shadow: 
            0 8px 24px rgba(200, 169, 106, 0.35),
            inset 0 0 8px rgba(255, 255, 255, 0.3),
            0 0 0 8px rgba(200, 169, 106, 0);
    }
}

.marker-label {
    background: transparent;
    color: var(--color-dark);
    padding: 0;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: normal;
    box-shadow: none;
    border: none;
    opacity: 1;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    max-width: 120px;
    word-wrap: break-word;
}

.marker-label strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    display: block;
}

.marker-label span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-gray);
    display: block;
    line-height: 1.3;
}

.map-marker-item:hover .marker-pin {
    transform: scale(1.3);
    box-shadow: 
        0 12px 32px rgba(200, 169, 106, 0.45),
        inset 0 0 8px rgba(255, 255, 255, 0.3),
        0 0 0 12px rgba(200, 169, 106, 0.2);
}

.map-marker-item:hover .marker-label {
    background: transparent;
    color: var(--color-dark);
    box-shadow: none;
}

.map-marker-item:hover .marker-label strong {
    color: var(--color-dark);
}

.map-marker-item:hover .marker-label span {
    color: var(--color-gray);
}

/* Middle East Marker with Connector Line */
.middle-east-marker {
    position: relative;
}

.global-map .map-marker {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-coral);
    border: 3px solid var(--color-white);
    box-shadow: 0 6px 18px rgba(0, 31, 63, 0.3);
    pointer-events: none;
    cursor: default;
}

.global-map .map-marker::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: rgba(0, 163, 224, 0.18);
    opacity: 1;
}

/* Responsive Global Presence */
@media (max-width: 1024px) {
    .global-map .map-canvas {
        min-height: 450px;
    }
    
    .global-map .map-image {
        height: 450px;
    }
    
    .marker-label {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .marker-label strong {
        font-size: 0.8rem;
    }
    
    .marker-label span {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .global-map .map-canvas {
        min-height: 400px;
    }
    
    .global-map .map-image {
        height: 400px;
    }
    
    .marker-pin {
        width: 14px;
        height: 14px;
    }
    
    .marker-label {
        font-size: 0.7rem;
        padding: 5px 8px;
        gap: 1px;
    }
    
    .marker-label strong {
        font-size: 0.75rem;
    }
    
    .marker-label span {
        font-size: 0.6rem;
    }
}

@media (max-width: 640px) {
    .global-map {
        padding: 12px;
    }
    
    .global-map-wrap {
        padding: 0 15px 60px;
    }
    
    .global-map .map-canvas {
        min-height: 350px;
    }
    
    .global-map .map-image {
        height: 350px;
        border-radius: 14px;
    }
    
    .marker-pin {
        width: 12px;
        height: 12px;
    }
    
    .marker-label {
        font-size: 0.65rem;
        padding: 4px 7px;
    }
    
    .marker-label strong {
        font-size: 0.7rem;
    }
    
    .marker-label span {
        font-size: 0.55rem;
    }
}

/* ===== INDUSTRIES MINIMAL ===== */
.industries-minimal {
    background: var(--color-white);
}

.industries-minimal .section-head {
    margin-bottom: 70px;
}

.industries-minimal .section-head p {
    display: block;
}

.industries-minimal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* List Item */
.industry-list-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 163, 224, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-list-item:last-child {
    border-bottom: none;
}

.industry-list-item:hover {
    padding-left: 16px;
    border-bottom-color: var(--color-coral);
}

/* Industry Name */
.industry-list-name {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.3px;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.industry-list-item:hover .industry-list-name {
    color: var(--color-coral);
}

/* Ampersand uses body font */
.ampersand {
    font-family: var(--font-body);
    font-weight: 600;
}

/* Supporting Text - Hidden by Default, Fades In on Hover */
.industry-list-support {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.4s ease 0.1s, max-height 0.4s ease 0.1s;
    overflow: hidden;
    display: block;
}

.industry-list-item:hover .industry-list-support {
    opacity: 1;
    max-height: 120px;
}

/* ===== RESPONSIVE INDUSTRIES MINIMAL ===== */
@media (max-width: 1024px) {
    .industries-minimal-list {
        gap: 36px;
    }
    
    .industry-list-name {
        font-size: 1.6rem;
    }
    
    .industry-list-item:hover {
        padding-left: 12px;
    }
    
    .industry-list-support {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .industries-minimal-list {
        gap: 32px;
    }
    
    .industry-list-name {
        font-size: 1.4rem;
    }
    
    .industry-list-item:hover {
        padding-left: 10px;
    }
    
    .industry-list-support {
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .industries-minimal-list {
        gap: 28px;
    }
    
    .industry-list-name {
        font-size: 1.2rem;
    }
    
    .industry-list-item:hover {
        padding-left: 8px;
    }
    
    .industry-list-support {
        font-size: 0.8rem;
    }
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--color-deep-purple), var(--color-purple));
    padding: 70px 0;
    color: var(--color-white);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
}

/* ===== CATEGORY SHOWCASE ===== */
.category-showcase {
    background: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.product-item {
    text-align: center;
    transition: var(--transition-normal);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #f2f2f2;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.08);
    margin-bottom: 16px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

.product-item:hover .product-image img {
    transform: scale(1.08);
}

.product-item h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-item p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

.product-item:hover h3 {
    color: var(--color-coral);
}

@media (hover: none) {
    .product-item:active .product-image img {
        transform: scale(1.08);
    }
}

/* ===== INTERACTIVE SLICES ===== */
.slices-container {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 0;
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-slice {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-slice:hover {
    flex: 3;
}

.product-slice::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 31, 63, 0.95), transparent);
    pointer-events: none;
}

.slice-content {
    position: relative;
    z-index: 10;
    color: white;
    opacity: 0.7;
    transition: opacity 0.6s ease;
    flex-shrink: 0;
}

.product-slice:hover .slice-content {
    opacity: 1;
}

.slice-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    font-family: 'Playfair Display', serif;
    color: white;
}

.slice-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 280px;
}

@media (max-width: 968px) {
    .slices-container {
        height: 400px;
    }
    
    .slice-content h3 {
        font-size: 1.4rem;
    }
    
    .slice-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .slices-container {
        height: 300px;
    }
    
    .product-slice {
        padding: 30px 20px;
    }
    
    .slice-content h3 {
        font-size: 1.1rem;
    }
    
    .slice-content p {
        font-size: 0.85rem;
        max-width: 200px;
    }
}

.service-box {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(142, 45, 226, 0.08);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-orange));
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(142, 45, 226, 0.15);
}

.service-graphic {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
}

.service-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.service-box p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--color-purple);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 14px;
    color: var(--color-deep-purple);
}

/* ===== PRODUCTS SECTION ===== */
.products-flex {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: 40px;
    align-items: start;
}

.products-text {
    max-width: 560px;
    width: 100%;
}

.products-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-text p {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.products-text ul {
    margin-bottom: 32px;
}

.products-text ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--color-gray);
}

.products-text ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-size: 1.2rem;
}

.products-visual {
    width: 100%;
}

.products-graphics {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 320px;
}

.product-graphic-box {
    background: linear-gradient(135deg, var(--color-light-gray), #F5F5F7);
    border-radius: 12px;
    padding: 40px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.product-graphic-box:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(142, 45, 226, 0.12);
}

.market-map {
    width: 100%;
    background: var(--color-white);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.08);
    border: 1px solid rgba(0, 61, 130, 0.15);
}

.map-canvas {
    position: relative;
    width: 100%;
    min-height: 420px;
}

.map-image {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.12);
    background: transparent;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.map-marker {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-coral);
    border: 2px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.25);
    cursor: pointer;
}

.map-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 163, 224, 0.25);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-normal);
}

.map-marker:hover::after,
.map-marker.active::after {
    opacity: 1;
}

.map-marker:focus {
    outline: 3px solid rgba(0, 163, 224, 0.35);
}

.map-tooltip {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -100%);
    background: var(--color-white);
    color: var(--color-dark);
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.2);
    border: 1px solid rgba(0, 61, 130, 0.2);
    font-size: 0.9rem;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: 2;
}

.map-tooltip.visible {
    opacity: 1;
}

.map-tooltip strong {
    display: block;
    color: var(--color-purple);
    margin-bottom: 0.2rem;
}

.map-tooltip span {
    color: var(--color-gray);
}


/* ===== STATISTICS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.stat-block {
    text-align: center;
}

.stat-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 600;
}

/* ===== TRUST BADGES ===== */
.trust-section {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.05), rgba(255, 107, 107, 0.05));
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.trust-badge {
    text-align: center;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.trust-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.trust-badge h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 180px 0 120px;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero-grad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple), var(--color-coral));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.page-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===== PRODUCT NAV ===== */
.product-nav {
    margin-top: -40px;
    padding-bottom: 30px;
    position: relative;
    z-index: 3;
}

.product-nav-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.15);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-nav-text h2 {
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.product-nav-text p {
    color: var(--color-gray);
    font-size: 1rem;
}

.product-nav-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    background: rgba(0, 61, 130, 0.08);
    border-radius: 999px;
}

.nav-tab {
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--color-gray);
    transition: var(--transition-normal);
    background: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
}

.nav-tab.active,
.nav-tab:hover {
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    color: var(--color-white);
    box-shadow: 0 10px 24px rgba(0, 31, 63, 0.2);
}

.tab-panels {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.category-head {
    text-align: center;
}

.category-head .section-tag {
    margin-bottom: 12px;
}

.category-head p {
    margin: 0 auto;
}

.category-tabs {
    padding: 6px;
    gap: 6px;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.08);
}

.category-showcase .wrapper {
    position: relative;
}

.category-tabs-float {
    position: absolute;
    top: 26px;
    right: 24px;
    z-index: 3;
}

.category-tabs .nav-tab {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category-tabs .nav-tab svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 768px) {
    .category-tabs-float {
        position: static;
        margin: 24px auto 0;
    }
}

@media (max-width: 900px) {
    .product-nav-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.mission-card {
    background: var(--color-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(142, 45, 226, 0.1);
    transition: var(--transition-normal);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(142, 45, 226, 0.15);
}

.mission-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 32px;
}

.mission-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
}

/* Company Overview */
.company-overview .mission-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.overview-card {
    background: var(--color-light-gray);
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.08);
    transition: var(--transition-normal);
}

.overview-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.overview-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 31, 63, 0.12);
}

/* Founder's Message */
.founder-message {
    padding: 100px 0;
    background: var(--color-white);
}

.founder-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--color-light-gray);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 36px rgba(0, 31, 63, 0.1);
}

.founder-photo {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #f2f2f2;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.03), rgba(255, 107, 107, 0.03));
}

.story-flex {
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.story-visual {
    flex: 1;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 100px 0;
}

#corporate-values .section-head {
    text-align: center;
    margin-bottom: 50px;
}

#corporate-values .values-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-items: center;
}

.values-grid .value-card:nth-child(1) {
    grid-column: 1 / span 2;
}

.values-grid .value-card:nth-child(2) {
    grid-column: 3 / span 2;
}

.values-grid .value-card:nth-child(3) {
    grid-column: 5 / span 2;
}

.values-grid .value-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.values-grid .value-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.value-card {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 100%;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--color-purple);
}

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.2;
}

.value-box {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(142, 45, 226, 0.08);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-purple), var(--color-orange));
}

.value-box:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(142, 45, 226, 0.15);
}

.value-num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.15;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.value-box p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
    padding: 100px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.highlight-item {
    background: var(--color-white);
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid var(--color-light-gray);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.06);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 31, 63, 0.1);
}

.highlight-item h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.highlight-item p {
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.03), rgba(255, 107, 107, 0.03));
}

.timeline-container {
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-event {
    display: flex;
    gap: 36px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: 200px;
    top: 40px;
    width: 2px;
    height: calc(100% + 50px);
    background: linear-gradient(180deg, var(--color-purple), var(--color-orange));
}

.timeline-event:last-child::before {
    display: none;
}

.timeline-year {
    flex-shrink: 0;
    width: 150px;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    border-radius: 50%;
    border: 4px solid var(--color-white);
}

.timeline-content {
    flex: 1;
    padding-left: 24px;
}

.timeline-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    line-height: 1.4;
}

.timeline-content p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===== EXPERTISE SECTION ===== */
.expertise-showcase {
    padding: 50px 0;
    background: var(--color-white);
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.expertise-card {
    background: var(--color-light-gray);
    padding: 32px;
    border-radius: 16px;
    transition: background 0.6s ease, color 0.6s ease, box-shadow 0.6s ease, transform 0.6s ease;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.08);
}

.team-photo {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f2f2f2;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expertise-card:hover {
    background: var(--color-purple);
    color: var(--color-white);
    transform: scale(1.08);
    box-shadow: 0 24px 60px rgba(0, 31, 63, 0.25);
}

.expertise-card h3 {
    color: var(--color-dark);
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.expertise-card p {
    color: var(--color-gray);
}

.expertise-card:hover h3,
.expertise-card:hover p {
    color: var(--color-white);
}

/* ===== SERVICES DETAIL ===== */
.services-detail-section {
    padding: 100px 0;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 40px;
}

.detail-service {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(142, 45, 226, 0.1);
    transition: var(--transition-normal);
}

.detail-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(142, 45, 226, 0.15);
}

.detail-graphic {
    width: 85px;
    height: 85px;
    margin-bottom: 28px;
}

.detail-service h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.detail-service p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.service-features-list {
    margin-bottom: 32px;
}

.service-features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--color-gray);
    border-bottom: 1px solid var(--color-light-gray);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ===== PRODUCTS CATALOG ===== */
.products-catalog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.03), rgba(255, 107, 107, 0.03));
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-item {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(142, 45, 226, 0.08);
    text-align: center;
    transition: var(--transition-normal);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(142, 45, 226, 0.15);
}

.product-graphic {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
}

.product-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.product-item p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===== CTA FULL ===== */
.cta-full {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple), var(--color-coral));
}

.cta-content {
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-white {
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    background: var(--color-white);
    color: var(--color-purple);
    display: inline-block;
    transition: var(--transition-normal);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrap h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-wrap p {
    color: var(--color-gray);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-item label {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.form-item input, .form-item select, .form-item textarea {
    padding: 14px 18px;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-item input:focus, .form-item select:focus, .form-item textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 4px rgba(142, 45, 226, 0.1);
}

.cta-full-width {
    width: 100%;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(142, 45, 226, 0.1);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.contact-info-card > p {
    color: var(--color-gray);
    margin-bottom: 32px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.info-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-box svg {
    width: 28px;
    height: 28px;
}

.info-text-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.info-text-box p {
    color: var(--color-gray);
    line-height: 1.6;
}

.social-card {
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    padding: 32px;
    border-radius: 16px;
    color: var(--color-white);
}

.social-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--color-white);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-normal);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(6px);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    background: var(--color-light-gray);
}

.map-embed {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.12);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== OFFICES SECTION ===== */
.offices-section {
    padding: 100px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.office-box {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(142, 45, 226, 0.1);
    text-align: center;
    transition: var(--transition-normal);
}

.office-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    color: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
}

.office-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(142, 45, 226, 0.15);
}

.office-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.office-box p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.office-phone {
    color: var(--color-purple);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer-main {
    background: linear-gradient(135deg, color-mix(in srgb, var(--color-purple) 92%, white) 0%, color-mix(in srgb, var(--color-deep-purple) 92%, white) 100%);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 28px;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    opacity: 0.85;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--color-coral);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition-normal);
}

.footer-socials a:hover {
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    transform: translateY(-4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    opacity: 0.85;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--color-coral);
}

/* ===== ANIMATIONS ===== */
.anim-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .main-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 50px;
        gap: 24px;
        transition: var(--transition-normal);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    
    .main-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .slider-controls {
        bottom: 30px;
        right: 30px;
    }
    
    .section-head h2 {
        font-size: 2.2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .overview-highlights {
        grid-template-columns: 1fr;
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-photo {
        max-width: 260px;
        margin: 0 auto;
    }
    
    .story-flex {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .values-grid .value-card:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .values-grid .value-card:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .values-grid .value-card:nth-child(3) {
        grid-column: 1 / span 2;
    }

    .values-grid .value-card:nth-child(4) {
        grid-column: 3 / span 2;
    }

    .values-grid .value-card:nth-child(5) {
        grid-column: 1 / span 2;
    }
    
    .category-showcase {
        background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 24px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-split-media {
        min-height: 420px;
        order: 1;
        width: 100%;
    }

    .hero-split-content {
        order: 2;
        width: 100%;
    }

    .hero-split-content::after {
        display: none;
    }

    .hero-static {
        padding: 110px 0 70px;
    }

    .hero-title-splash {
        margin-right: 0;
    }

    .final-cta-inner {
        justify-content: flex-start;
    }

    .global-map-wrap {
        padding: 0 20px 80px;
    }

    .global-map .map-canvas {
        min-height: 420px;
    }

    .global-map .map-image {
        height: 420px;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slide-actions,
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .page-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-head h2 {
        font-size: 1.8rem;
    }

    .hero-title-splash h1 {
        font-size: 2.3rem;
    }

    .hero-static p {
        font-size: 1rem;
    }

    .category-card {
        min-height: 220px;
    }

    .product-item h3 {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }
    
    .mission-card {
        padding: 32px 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-grid .value-card:nth-child(1),
    .values-grid .value-card:nth-child(2),
    .values-grid .value-card:nth-child(3),
    .values-grid .value-card:nth-child(4),
    .values-grid .value-card:nth-child(5) {
        grid-column: auto;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .product-detailed {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-detailed:nth-child(even) .product-visual,
    .product-detailed:nth-child(even) .product-info {
        order: auto;
    }

    .product-visual {
        aspect-ratio: auto;
        min-height: 300px;
    }

    .product-info h3 {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .product-visual {
        min-height: 240px;
    }
}

/* ===== PRODUCT PAGE ===== */
.product-overview {
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
}

.detailed-products {
    background: var(--color-white);
}

.products-gallery {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.product-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 61, 130, 0.08);
}

.product-detailed:last-child {
    border-bottom: none;
}

.product-detailed:nth-child(even) {
    direction: ltr;
}

.product-detailed:nth-child(even) .product-visual {
    order: 2;
}

.product-detailed:nth-child(even) .product-info {
    order: 1;
}

.product-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.15);
    aspect-ratio: 1;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

.product-detailed:hover .product-visual img {
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.product-info p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.spec-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(0, 163, 224, 0.1));
    color: var(--color-purple);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 61, 130, 0.15);
}

/* ===== PRODUCT CATEGORIES TEMP ===== */
.product-categories-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

.category-showcase-card {
    background: transparent;
    border-radius: 0;
    padding: 32px 0;
    box-shadow: none;
    border: none;
    display: block;
    transition: transform 0.5s ease;
    width: 100%;
    min-height: auto;
}

.category-showcase-card:hover {
    transform: translateY(-6px);
}

.category-showcase-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.category-showcase-header-grid {
    background: #f9fafc;
    border-radius: 14px;
    padding: 18px;
    border: none;
    box-shadow: none;
    min-height: 240px;
}

.category-title {
    margin: 0;
    font-size: 3.4rem;
    font-family: var(--font-heading);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-showcase-header p {
    margin: 0;
    color: var(--color-gray);
    font-size: 0.98rem;
    line-height: 1.6;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.category-product {
    background: #f9fafc;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    border: none;
    transition: transform 0.4s ease;
}

.category-product--empty {
    visibility: hidden;
    pointer-events: none;
}

.category-product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .category-showcase-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 56px 0;
    }

    .category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .category-products-grid {
        grid-template-columns: 1fr;
    }

    .category-product img {
        height: 200px;
    }
}

.category-product h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-dark);
}

.category-product:hover {
    transform: translateY(-4px);
}

/* ===== PRODUCT PILLARS ===== */
.product-pillars {
    position: relative;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 70%);
    overflow: hidden;
}

.product-pillars::before,
.product-pillars::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.12), rgba(0, 163, 224, 0));
    z-index: 0;
}

.product-pillars::before {
    top: -120px;
    left: -140px;
}

.product-pillars::after {
    bottom: -140px;
    right: -120px;
}

.pillar-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.pillar-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 18px 40px rgba(0, 31, 63, 0.12);
    border: 1px solid rgba(0, 61, 130, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 100%;
}

.pillar-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-header p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.pillar-kicker {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0, 61, 130, 0.1);
    color: var(--color-purple);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.pillar-list {
    display: grid;
    gap: 14px;
    color: var(--color-gray);
    font-weight: 500;
}

.pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pillar-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.18), rgba(0, 163, 224, 0.18));
    color: var(--color-purple);
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .pillar-card {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .pillar-header h2 {
        font-size: 1.7rem;
    }
}

/* ===== EXTENDED CATEGORIES ===== */
.categories-extended {
    background: var(--color-white);
}

.category-extended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.category-extended-card {
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.08);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-extended-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.15);
}

.category-ext-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f2f2f2;
}

.category-ext-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

.category-extended-card:hover .category-ext-media img {
    transform: scale(1.1);
}

.category-ext-content {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-ext-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.category-ext-content p {
    color: var(--color-gray);
    margin-bottom: 16px;
}

.category-link {
    color: var(--color-coral);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-normal);
}

.category-link:hover {
    color: var(--color-purple);
    transform: translateX(4px);
}

/* ===== QUALITY ASSURANCE ===== */
.quality-assurance {
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.05), rgba(0, 163, 224, 0.05));
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.quality-card {
    background: var(--color-white);
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.08);
    text-align: center;
    transition: var(--transition-normal);
    border-top: 4px solid var(--color-coral);
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 31, 63, 0.12);
}

.quality-icon {
    font-size: 3rem;
    color: var(--color-coral);
    margin-bottom: 12px;
    font-weight: 800;
}

.quality-card h3 {
    color: var(--color-dark);
    margin-bottom: 12px;
}

.quality-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===== PRODUCT CTA ===== */
.product-cta {
    background: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple));
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== INDUSTRIES ATELIER ===== */
.industries-atelier {
    background: linear-gradient(180deg, rgba(0, 61, 130, 0.06), rgba(255, 255, 255, 1));
}

.industries-atelier-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.industry-atelier-card {
    position: relative;
    grid-column: span 6;
    min-height: 260px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 26px 26px 24px;
    color: var(--color-white);
    box-shadow: 0 18px 40px rgba(0, 31, 63, 0.18);
    transition: var(--transition-normal);
    background: var(--color-deep-purple);
}

.industry-atelier-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.industry-atelier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 31, 63, 0.28);
}

.industry-atelier-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.industry-atelier-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-atelier-card:hover .industry-atelier-media img {
    transform: scale(1.05);
}

.industry-atelier-body {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.industry-atelier-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.industry-atelier-body h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.industry-atelier-body p {
    color: rgba(255, 255, 255, 0.88);
}

.industry-atelier-card.feature {
    grid-column: span 7;
    min-height: 340px;
}

.industry-atelier-card.tall {
    grid-column: span 5;
    min-height: 340px;
}

.industry-atelier-card.wide {
    grid-column: span 8;
    min-height: 300px;
}

.industry-atelier-card.full-row {
    grid-column: span 12;
    min-height: 280px;
}

@media (max-width: 1100px) {
    .industries-atelier-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-atelier-card,
    .industry-atelier-card.feature,
    .industry-atelier-card.tall,
    .industry-atelier-card.wide,
    .industry-atelier-card.full-row {
        grid-column: span 1;
        min-height: 260px;
    }
}

@media (max-width: 700px) {
    .industries-atelier-grid {
        grid-template-columns: 1fr;
    }

    .industry-atelier-body h3 {
        font-size: 1.4rem;
    }
}
