:root {
    --primary: #ea580c;
    --primary-hover: #c2410c;
    --primary-soft: #fff7ed;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-600: #57534e;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --white: #ffffff;
    --radius-pill: 100px;
    --radius-box: 24px;
    --radius-full: 99px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background-color: var(--white); color: var(--stone-900); overflow-x: hidden; line-height: 1.8; letter-spacing: 0.015em; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 92%; max-width: 1280px; margin: 0 auto; }

/* Animations */
.reveal { 
    opacity: 0; 
    transform: translateY(40px) scale(0.98); 
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); 
    will-change: transform, opacity;
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
}

/* =========================================
   NAVBAR (Transforming)
   ========================================= */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.nav-inner { 
    background: rgba(255, 255, 255, 1); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 5%; 
    width: 100%; 
    margin: 0 auto; 
    border-bottom: 1px solid var(--stone-200);
    transition: var(--transition);
}

header.is-scrolled { top: 20px; }
header.is-scrolled .nav-inner { 
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(12px); 
    padding: 10px 30px; 
    width: 95%; 
    max-width: 1150px; 
    border-radius: var(--radius-pill); 
    box-shadow: var(--shadow-lg); 
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 900; }
.logo img { height: 35px; }
.logo b { color: var(--primary); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--stone-800); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-charlie { font-size: 0.85rem; font-weight: 500; color: var(--stone-600); display: flex; align-items: center; gap: 6px; }
.nav-charlie i { color: var(--primary); }

.lang-dropdown { position: relative; }
.lang-drop-btn { background: rgba(0,0,0,0.03); border: none; padding: 8px 12px; border-radius: 12px; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: var(--transition); color: var(--stone-600); }
.lang-drop-btn:hover { background: rgba(0,0,0,0.06); color: var(--stone-900); }
.lang-drop-btn .fi { font-size: 1.2rem; border-radius: 2px; }
.lang-drop-btn i { font-size: 0.7rem; color: var(--stone-400); }

.lang-drop-content { position: absolute; top: calc(100% + 10px); right: 0; background: var(--white); border: 1px solid var(--stone-200); border-radius: 16px; box-shadow: var(--shadow-lg); width: 180px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); overflow: hidden; }
.lang-dropdown.active .lang-drop-content { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-drop-content a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; font-size: 0.9rem; font-weight: 600; color: var(--stone-600); transition: 0.2s; }
.lang-drop-content a:hover { background: var(--stone-50); color: var(--primary); }
.lang-drop-content a.active { color: var(--primary); background: var(--primary-soft); }
.lang-drop-content .fi { width: 22px; height: auto; display: inline-block; border-radius: 3px; }

.btn-client { 
    background: var(--primary); 
    color: white !important; 
    padding: 12px 24px; 
    border-radius: var(--radius-pill); 
    font-weight: 700; 
    font-size: 0.85rem; 
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-client:hover { background: var(--primary-hover); transform: scale(1.05); }

/* =========================================
   HERO
   ========================================= */
.hero { height: 90vh; display: flex; align-items: center; position: relative; background: #000; color: white; overflow: hidden; }
.hero-img { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    z-index: 1; 
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding-top: 50px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; margin-bottom: 25px; color: white; }
.hero p { font-size: 1.25rem; margin-bottom: 40px; opacity: 0.85; max-width: 650px; font-weight: 400; margin-left: auto; margin-right: auto; }
.hero .hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   B2B SECTION
   ========================================= */
.section-b2b { padding-bottom: 120px; background: var(--white); }
.promo-2026 { 
    margin-top: -100px; 
    position: relative; 
    z-index: 10; 
    background: var(--white); 
    border-radius: var(--radius-box); 
    padding: 80px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    box-shadow: var(--shadow-lg); 
    align-items: center; 
    border: 1px solid var(--stone-100);
}
.promo-tag { background: var(--primary-soft); color: var(--primary); padding: 8px 18px; border-radius: 10px; font-weight: 800; font-size: 0.8rem; display: inline-block; margin-bottom: 25px; text-transform: uppercase; }
.promo-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }

/* =========================================
   EXPERTISE (NEW 2-COLUMN LAYOUT - BRILLIANT ORANGE)
   ========================================= */
.section-pillars { 
    background: #f97316; /* Brilliant Orange */
    padding: 120px 0; 
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.15;
    filter: blur(50px);
    z-index: 1;
}
.bg-circle-top { width: 200px; height: 200px; top: -50px; left: 10%; }
.bg-circle-bottom { width: 400px; height: 400px; bottom: -150px; right: -100px; }

.expertise-layout { 
    display: grid !important; 
    grid-template-columns: 1fr 1fr !important; 
    gap: 60px; 
    align-items: center; 
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 991px) {
    .expertise-layout { 
        grid-template-columns: 1fr !important; 
        gap: 60px; 
        text-align: center;
    }
    .expertise-left .vision-text { margin-left: auto; margin-right: auto; }
    .expertise-left .stats-row { justify-content: center; }
}

.expertise-left h2 { 
    color: #44403c; /* Stone color for subtle sub-header if needed */
    opacity: 0.6;
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 20px; 
}

.expertise-left .exp-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.98); /* 98% White */
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.expertise-left .vision-text { 
    font-size: 1.1rem; 
    line-height: 1.7; 
    font-weight: 500; 
    margin-bottom: 40px; 
    color: rgba(255,255,255,0.92);
    max-width: 550px;
}
.expertise-left .vision-text strong { 
    color: white; 
    font-weight: 800; 
}

.expertise-left .stats-row { 
    display: flex; 
    gap: 40px; 
    margin-top: 60px; 
    border-top: 1px solid rgba(255,255,255,0.25); 
    padding-top: 40px; 
}

.expertise-left { 
    flex: 1; 
    min-width: 0;
}

.expertise-left .btn-container {
    display: flex;
    justify-content: flex-start; /* Switch to start to keep it aligned with text in 2-col */
    margin-top: 50px;
    width: 100%;
}

.expertise-right { 
    flex: 1;
    min-width: 0;
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}

@media (max-width: 1100px) {
    .expertise-left .btn-container { justify-content: center; }
}

.feature-v-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 40px 45px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 35px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-v-card:hover {
    background: white;
    transform: translateX(25px) scale(1.05);
    border-color: white;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.feature-v-card .icon-v {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.4s;
}

.feature-v-card:hover .icon-v {
    background: var(--primary);
    color: white;
    transform: rotate(360deg);
}

.feature-v-card h3 { 
    color: white; 
    font-size: 1.4rem; 
    margin-bottom: 8px; 
    font-weight: 900;
    transition: color 0.4s;
}

.feature-v-card:hover h3 {
    color: var(--primary);
}

.feature-v-card p { 
    font-size: 1rem; 
    color: rgba(255,255,255,0.9); 
    line-height: 1.7; 
    margin: 0; 
    transition: color 0.4s;
}

.feature-v-card:hover p {
    color: var(--stone-600);
}

/* GLOBAL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger for cards */
.expertise-right .feature-v-card:nth-child(1) { transition-delay: 0.1s; }
.expertise-right .feature-v-card:nth-child(2) { transition-delay: 0.2s; }
.expertise-right .feature-v-card:nth-child(3) { transition-delay: 0.3s; }
.expertise-right .feature-v-card:nth-child(4) { transition-delay: 0.4s; }

/* Eliminate all true blacks */
body { color: #292524; }
h1, h2, h3, h4, .text-dark { color: #1c1917; }
.bg-dark { background: #1c1917; }

/* =========================================
   CATALOGUE
   ========================================= */
.section-catalog { padding: 120px 0; background: var(--white); }
.section-catalog .section-title { text-align: center; margin-bottom: 80px; }
.section-catalog .section-title h2 { font-size: 3rem; margin-bottom: 25px; }
.section-catalog .section-title p { font-size: 1.15rem; line-height: 1.8; max-width: 800px; margin: 0 auto; color: var(--stone-600); }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.catalog-card { 
    padding: 45px; 
    border-radius: var(--radius-box); 
    background: var(--stone-50); 
    border: 1px solid var(--stone-100); 
    transition: var(--transition); 
    position: relative;
}
.catalog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-box);
    border: 2px solid var(--primary);
    opacity: 0;
    transition: var(--transition);
    transform: scale(1.05);
}
.catalog-card:hover { 
    background: var(--white); 
    box-shadow: var(--shadow-lg); 
    transform: translateY(-15px); 
}
.catalog-card:hover::after {
    opacity: 1;
    transform: scale(1);
}
.catalog-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 30px; display: block; transition: 0.4s; }
.catalog-card:hover i { transform: scale(1.2) rotate(5deg); }
.catalog-card h3 { font-size: 1.5rem; margin-bottom: 25px; border-left: 4px solid var(--primary); padding-left: 20px; }
.catalog-card ul li { font-size: 1rem; color: var(--stone-600); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.catalog-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.8rem; color: var(--primary); opacity: 0.8; }

/* =========================================
   CONTACT
   ========================================= */
.section-contact { padding: 160px 0; background: linear-gradient(to bottom, var(--stone-50), var(--white)); }
.contact-box { max-width: 900px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: var(--radius-box); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; }
.contact-info p { margin-bottom: 30px; color: var(--stone-600); }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea { width: 100%; padding: 15px 20px; border-radius: 12px; border: 1px solid var(--stone-200); background: var(--stone-50); font-family: inherit; font-size: 1rem; transition: 0.3s; }
input:focus, textarea:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px var(--primary-soft); }

/* =========================================
   PARTNERS
   ========================================= */
.partners-section { padding: 80px 0; background: var(--white); border-top: 1px solid var(--stone-100); overflow: hidden; }
.partners-header { 
    text-align: center; 
    margin-bottom: 60px; 
    color: var(--stone-900); 
    font-weight: 800; 
    font-size: 2.5rem; 
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    text-transform: none;
}
.partners-header::first-letter { text-transform: uppercase; }

/* Hamburger Menu */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; border: none; background: none; padding: 10px; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 3px; background: var(--stone-900); border-radius: 4px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition); display: flex; align-items: center; justify-content: center; overflow-y: auto; }
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { display: flex; flex-direction: column; gap: 30px; text-align: center; padding: 40px; }
.mobile-menu a { font-size: 1.8rem; font-weight: 800; color: var(--stone-900); font-family: 'Montserrat', sans-serif; }

/* Visual Bug Fixes */
.section-pillars::before { display: none; }
.promo-2026 { margin-top: -60px; position: relative; z-index: 10; width: 95%; max-width: 1200px; }
@media (min-width: 1025px) { .promo-2026 { margin-top: -100px; } }
.partners-header::first-letter { text-transform: uppercase; }

/* Hamburger Menu */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; border: none; background: none; padding: 10px; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 3px; background: var(--stone-900); border-radius: 4px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mobile-menu a { font-size: 1.8rem; font-weight: 800; color: var(--stone-900); font-family: 'Montserrat', sans-serif; }

/* Visual Bug Fixes */
.section-pillars::before { display: none; }
.promo-2026 { margin-top: -60px; position: relative; z-index: 10; }
.logo-track { display: flex; gap: 80px; animation: scrollInfinite 40s linear infinite; align-items: center; }
.logo-item img { height: 40px; filter: grayscale(1); opacity: 0.4; transition: 0.4s; }
.logo-item:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.15); }

/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--stone-900); color: var(--white); padding: 100px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px; }
.footer-col h4 { margin-bottom: 25px; color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; margin-bottom: 12px; color: #94a3b8; font-size: 0.9rem; }
.footer-col a:hover { color: var(--primary); padding-left: 5px; }

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

@media (max-width: 1024px) {
    .nav-links, .nav-charlie, .lang-dropdown { display: none; }
    .hamburger { display: flex; }
    .promo-2026, .pillar-grid, .contact-box, .footer-grid, .expertise-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .promo-2026 { padding: 40px; }
    .hero h1 { font-size: 3.5rem; }
    .section-pillars .section-title h2 { font-size: 2.8rem; }
}
@media (max-width: 640px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* =========================================
   TESTIMONIALS (STONE GREY - LIGHTER)
   ========================================= */
.section-testimonials { padding: 120px 0; background: #1c1917; position: relative; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header h2 { font-size: 2.5rem; color: white; margin-bottom: 15px; }
.testimonials-header p { color: rgba(255,255,255,0.7); font-weight: 500; }

.carousel-container { position: relative; max-width: 1000px; margin: 0 auto; padding: 0 60px; }
.carousel-track-wrapper { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); gap: 0; }
.testimonial-card { min-width: 100%; background: #292524; padding: 50px; border-radius: 32px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.05); position: relative; box-sizing: border-box; }
.testimonial-quote { font-size: 1.25rem; font-style: italic; color: var(--white); margin-bottom: 30px; line-height: 1.8; position: relative; z-index: 2; }
.testimonial-quote::before { content: '"'; font-size: 5rem; color: var(--primary); position: absolute; top: -30px; left: -20px; font-family: 'Montserrat', sans-serif; opacity: 0.3; z-index: -1; }
.testimonial-author .author-name { font-weight: 800; color: var(--primary); display: block; margin-bottom: 4px; }
.testimonial-author .author-meta { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.carousel-nav { position: absolute; top: 50%; width: 100%; left: 0; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; padding: 0; }
.carousel-btn { width: 50px; height: 50px; border-radius: 50%; background: var(--white); border: 1px solid var(--stone-200); display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: auto; transition: var(--transition); box-shadow: var(--shadow-sm); }
.carousel-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--stone-200); cursor: pointer; transition: 0.3s; }
.dot.active { width: 24px; border-radius: 10px; background: var(--primary); }

/* Responsive Fixes for New Sections */
@media (max-width: 1024px) {
    .tech-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .tech-values-grid { grid-template-columns: 1fr; }
    .expertise-left .stats-row { flex-wrap: wrap; gap: 30px; }
}

/* DOCUMENT PAGES (About, Privacy, Terms) */
.doc-page { padding: 150px 0 100px; min-height: 80vh; background: #fafaf9; }
.doc-header { text-align: center; margin-bottom: 60px; }
.doc-header h1 { font-size: 3rem; margin-bottom: 15px; color: var(--stone-900); }
.doc-breadcrumb { font-weight: 700; color: var(--primary); display: flex; align-items: center; justify-content: center; gap: 10px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 10px; }

.doc-content { max-width: 900px; margin: 0 auto; background: var(--white); padding: 80px; border-radius: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--stone-100); line-height: 1.8; }
.doc-content h2 { font-size: 2rem; margin: 50px 0 25px; color: var(--stone-900); border-left: 4px solid var(--primary); padding-left: 20px; }
.doc-content h3 { font-size: 1.4rem; margin: 35px 0 20px; color: var(--stone-800); }
.doc-content p { margin-bottom: 25px; color: var(--stone-600); font-size: 1.05rem; }
.doc-content ul { margin-bottom: 30px; padding-left: 20px; }
.doc-content li { margin-bottom: 15px; padding-left: 10px; color: var(--stone-600); }

.gallery-placeholder { width: 100%; height: 400px; border: 3px dashed var(--stone-200); border-radius: 32px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--stone-400); gap: 20px; margin-top: 60px; transition: 0.4s; background: #fafaf9; }
.gallery-placeholder:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); transform: translateY(-5px); }
.gallery-placeholder i { font-size: 4rem; }
.gallery-placeholder span { font-weight: 700; font-size: 1.2rem; }

@media (max-width: 768px) {
    .testimonial-card { padding: 30px; }
    .doc-content { padding: 40px 25px; border-radius: 24px; }
    .doc-header h1 { font-size: 2.2rem; }
    .carousel-container { padding: 0 20px; }
    .carousel-nav { display: none; }
}

/* =========================================
   B2B TECHNICAL ADD-ONS
   ========================================= */
.nav-phone { font-weight: 800; color: var(--primary); font-size: 1rem; display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--primary-soft); border-radius: var(--radius-pill); transition: var(--transition); }
.nav-phone:hover { background: var(--primary); color: white; transform: scale(1.05); }

/* =========================================
   VISION & LOGISTICS (MODERN)
   ========================================= */
.section-vision { padding: 120px 0; background: var(--stone-50); border-bottom: 1px solid var(--stone-200); }
.vision-box { 
    max-width: 1100px; 
    margin: 0 auto; 
    background: white; 
    padding: 80px 60px; 
    border-radius: 40px; 
    box-shadow: var(--shadow-xl); 
    border-left: 8px solid var(--primary);
    position: relative;
    overflow: hidden;
}
.vision-box::after {
    content: '\f48b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 12rem;
    color: var(--primary);
    opacity: 0.03;
}
.vision-box p { 
    font-size: 2.2rem; 
    line-height: 1.4; 
    color: var(--stone-900); 
    font-weight: 700; 
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}
.vision-box p strong { color: var(--primary); font-weight: 800; }

/* =========================================
   PREMIUM FEATURES (Expertise)
   ========================================= */
.section-tech-values { padding: 120px 0; background: var(--stone-900); color: white; position: relative; }
.tech-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.tech-value-card {
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px 35px;
    border-radius: 32px;
    transition: var(--transition);
    height: 100%;
}
.tech-value-card:hover {
    background: rgba(255,255,255,0.06); 
    border-color: var(--primary);
    transform: translateY(-10px);
}
.tech-value-card .icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}
.tech-value-card h3 { 
    color: var(--primary); 
    font-size: 1.25rem; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}
.tech-value-card p { 
    font-size: 0.95rem; 
    color: #94a3b8; 
    line-height: 1.6; 
    margin: 0; 
}

.footer-seo-box { border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; margin-top: 60px; text-align: center; }
.footer-seo-box p { font-size: 0.8rem; color: #475569; max-width: 800px; margin: 0 auto; line-height: 1.6; font-style: italic; }

@media (max-width: 1024px) {
    .tech-values-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .nav-phone { display: none; }
}
@media (max-width: 640px) {
    .tech-values-grid { grid-template-columns: 1fr; }
}
