/* ========================================
   COMPLETE STYLE.CSS - OPTIMIZED VERSION
   ======================================== */

/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F5F5F5;
    color: #1A1A1A;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --orange-primary: #F97316;
    --orange-dark: #EA580C;
    --orange-light: #FFEDD5;
    --black-dark: #111111;
    --gray-800: #1F2937;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --white: #FFFFFF;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 40px 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes floatZero {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
    100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 2px 10px rgba(249,115,22,0.3); }
    50% { box-shadow: 0 4px 25px rgba(249,115,22,0.5); }
    100% { box-shadow: 0 2px 10px rgba(249,115,22,0.3); }
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes float3d {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background: var(--orange-primary);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,115,22,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--orange-primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--orange-primary);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}
.btn-outline:hover {
    background: var(--orange-primary);
    color: white;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-area img { width: 140px; }
.nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-links > li {
    position: static;
    list-style: none;
}
.mega-menu-trigger { position: relative; }
.nav-links > li > a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}
.nav-links > li > a:hover { color: var(--orange-primary); }
.nav-links > li > a i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}
.nav-links > li:hover > a i { transform: rotate(180deg); }

/* ========================================
   MEGA MENU
   ======================================== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    border: 1px solid var(--gray-200);
    pointer-events: none;
    margin-top: 0;
    padding-top: 5px;
}
.mega-menu-trigger:hover .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mega-menu-trigger .mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}
.mega-menu-features { width: 950px; max-width: calc(100vw - 40px); }
.mega-menu-usecases { width: 950px; max-width: calc(100vw - 40px); }
.mega-menu-container { padding: 28px; }
.mega-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 20px;
}
.mega-menu-usecases .mega-row { grid-template-columns: repeat(4, 1fr); }

.mega-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange-primary);
}
.mega-col-title i {
    font-size: 1.1rem;
    color: var(--orange-primary);
}
.mega-col-title span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black-dark);
}

.mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mega-menu-links li {
    margin-bottom: 10px;
    list-style: none;
}
.mega-menu-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.8rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mega-menu-links a i {
    font-size: 0.7rem;
    color: var(--orange-primary);
    width: 18px;
}
.mega-menu-links a:hover {
    color: var(--orange-primary);
    transform: translateX(4px);
}

.mega-featured {
    background: linear-gradient(135deg, var(--orange-light), #FFF3E6);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 16px;
}
.mega-featured-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.mega-featured-content i {
    font-size: 1.5rem;
    color: var(--orange-primary);
}
.mega-featured-content h4 {
    color: var(--black-dark);
    font-size: 0.9rem;
    margin-bottom: 3px;
}
.mega-featured-content p {
    color: var(--gray-600);
    font-size: 0.75rem;
}
.mega-featured-btn {
    background: var(--orange-primary);
    border: none;
    padding: 6px 16px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
    text-decoration: none;
}
.mega-featured-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* ========================================
   ANIMATED DEMO BUTTON
   ======================================== */
.demo-nav-btn {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    padding: 10px 24px !important;
    border-radius: 40px;
    color: white !important;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}
.demo-nav-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}
.demo-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.4);
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-primary));
    animation: none;
}
.demo-nav-btn:hover i { transform: translateX(4px); }
.demo-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.demo-nav-btn:active::before {
    width: 300px;
    height: 300px;
}

/* ========================================
   HERO SLIDESHOW
   ======================================== */
.hero-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.swiper-slide {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    border-radius: 24px;
    padding: 60px 80px 60px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 520px;
}
.hero-content { flex: 1; }
.hero-badge {
    background: var(--orange-light);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-primary);
    margin-bottom: 24px;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--black-dark);
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 500px;
}
.hero-cta {
    background: var(--orange-primary);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}
.hero-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.hero-image-placeholder {
    flex: 0.7;
    background: linear-gradient(145deg, var(--orange-light), #FFF3E6);
    border-radius: 28px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid var(--orange-primary);
}
.hero-image-placeholder i {
    font-size: 4rem;
    color: var(--orange-primary);
    margin-bottom: 16px;
}
.hero-image-placeholder p {
    font-weight: 500;
    color: var(--gray-700);
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
    color: var(--orange-primary);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--orange-primary);
    box-shadow: 0 6px 20px rgba(249,115,22,0.3);
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after { color: white; }

/* Pagination */
.swiper-pagination-bullet {
    background: var(--gray-400);
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: var(--orange-primary);
    opacity: 1;
}

/* Custom Pagination */
.hero-pagination {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 20;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
}
.pagination-wrapper {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
}
.pagination-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 40px;
    transition: all 0.3s ease;
}
.pagination-item:hover { background: var(--orange-light); }
.pagination-item.active { background: var(--orange-primary); }
.pagination-item.active .pagination-dot { background: white; }
.pagination-item.active .pagination-label { color: white; }
.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-primary);
    transition: all 0.3s;
}
.pagination-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.3s;
}

/* Explore in 3D Button */
.explore-3d-wrapper {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
}
.explore-3d-button {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(249,115,22,0.3);
    animation: pulseGlow 2s infinite;
}
.explore-3d-button i {
    font-size: 1rem;
    transition: transform 0.3s;
}
.explore-3d-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
    animation: none;
}
.explore-3d-button:hover i { transform: translateX(3px) rotate(5deg); }
.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.explore-3d-button:hover .button-glow { left: 100%; }

/* ========================================
   SECTION TITLES & HEADERS
   ======================================== */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 16px;
}
.section-title span { color: var(--orange-primary); }
.section-sub {
    color: var(--gray-600);
    max-width: 600px;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ========================================
   FEATURE CARDS
   ======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.4s;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 35px rgba(249,115,22,0.12);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--black-dark);
}
.feature-card p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Read More Links */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 0;
    color: var(--orange-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    margin-top: auto;
}
.read-more-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.read-more-link:hover {
    color: var(--orange-dark);
    gap: 12px;
}
.read-more-link:hover i { transform: translateX(4px); }

/* ========================================
   USE CASE GALLERY
   ======================================== */
.usecase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.usecase-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s;
    border: 1px solid var(--gray-200);
}
.usecase-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.usecase-image {
    height: 200px;
    background: linear-gradient(145deg, var(--orange-light), #FFF0E0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--orange-primary);
}
.usecase-content { padding: 24px; }
.usecase-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--black-dark);
}
.usecase-content p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
    position: relative;
}
.pricing-card:hover {
    transform: scale(1.02);
    border-color: var(--orange-primary);
}
.pricing-card.popular {
    border: 2px solid var(--orange-primary);
    box-shadow: 0 8px 25px rgba(249,115,22,0.15);
}
.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-primary);
    margin: 20px 0;
}
.price small {
    font-size: 0.9rem;
    color: var(--gray-600);
}
.feature-list {
    list-style: none;
    margin: 25px 0;
}
.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    gap: 10px;
    align-items: center;
}
.feature-list i { color: var(--orange-primary); }

/* ========================================
   DEMO BOOKING SECTION
   ======================================== */
.booking-section {
    background: var(--white);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-200);
}
.booking-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.calendar-ui {
    flex: 1;
    min-width: 260px;
}
.booking-form-ui { flex: 1; }

.date-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}
.date-option {
    background: var(--gray-100);
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}
.date-option.selected {
    background: var(--orange-primary);
    color: white;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    margin-bottom: 16px;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
}

/* ========================================
   CPT SECTION
   ======================================== */
.cpt-section {
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    border-radius: 32px;
    padding: 60px;
    margin: 40px 0;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
    border: none;
    font-size: 1.2rem;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.4);
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black-dark);
    color: var(--gray-400);
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 2px solid var(--orange-primary);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}
.cookie-consent.show { transform: translateY(0); }
.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.cookie-text {
    flex: 2;
    font-size: 0.9rem;
    line-height: 1.5;
}
.cookie-text i {
    color: var(--orange-primary);
    margin-right: 8px;
    font-size: 1.1rem;
}
.cookie-text a {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 500;
}
.cookie-text a:hover { text-decoration: underline; }
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: var(--orange-primary);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookie-btn-accept:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid var(--gray-600);
    padding: 10px 24px;
    border-radius: 8px;
    color: var(--gray-400);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--orange-primary);
    color: white;
}

.cookie-btn-settings {
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookie-btn-settings:hover { color: var(--orange-primary); }

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--black-dark);
    color: var(--gray-400);
    margin-top: 20px;
}
.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}
.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange-primary);
    border-radius: 3px;
}
.footer-description {
    margin: 20px 0;
    line-height: 1.6;
    font-size: 0.9rem;
}
.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--orange-primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}
.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--orange-primary);
    transform: translateY(-3px);
}

.office-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.office-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.office-item i {
    font-size: 1.2rem;
    color: var(--orange-primary);
    margin-top: 3px;
    min-width: 20px;
}
.office-item strong {
    color: white;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}
.office-item p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--gray-400);
}
.office-item .office-phone {
    font-size: 0.75rem;
    color: var(--orange-primary);
    font-weight: 500;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.3);
}
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}
.footer-legal a:hover { color: var(--orange-primary); }

/* ========================================
   LIGHTBOX POPUP
   ======================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1300px;
    height: 85%;
    background: #0A0C14;
    border-radius: 24px;
    overflow: hidden;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(249,115,22,0.3);
}
.lightbox-container.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.lightbox-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #0A0C14;
    padding: 0;
}
.lightbox-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.lightbox-iframe { display: none; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
}
.lightbox-close:hover {
    background: var(--orange-primary);
    transform: rotate(90deg);
    border-color: var(--orange-primary);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10003;
}
.lightbox-loading i {
    font-size: 3rem;
    color: var(--orange-primary);
    animation: spin 1s linear infinite;
}
.lightbox-loading p {
    margin-top: 15px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--orange-light), transparent);
    opacity: 0.4;
    pointer-events: none;
}
.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle at bottom left, var(--orange-light), transparent);
    opacity: 0.3;
    pointer-events: none;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}
.step-card {
    flex: 1;
    min-width: 220px;
    background: var(--white);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(249,115,22,0.15);
}
.step-card:hover .step-icon {
    background: var(--orange-primary);
    color: white;
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--orange-primary);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(249,115,22,0.3);
    transition: all 0.3s;
}
.step-card:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(249,115,22,0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}
.step-icon i {
    font-size: 3rem;
    padding-top:10px;
    color: var(--orange-primary);
    transition: all 0.4s ease;
}
.step-card:hover .step-icon i { color: white; }

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.step-description {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9rem;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-primary), transparent);
    transform: translateY(-50%);
}
.step-card:last-child .step-connector { display: none; }

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 20px 0;
    background: linear-gradient(135deg, var(--black-dark) 0%, #333333 100%);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(249,115,22,0.1), transparent 70%);
    pointer-events: none;
}
.stats-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(249,115,22,0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.stats-title span {
    color: var(--orange-primary);
    position: relative;
    display: inline-block;
}
.stats-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary), transparent);
}
.stats-subtitle {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.stat-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s;
}
.stat-card:hover::before { left: 100%; }
.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.stat-card:hover .stat-icon {
    background: var(--orange-primary);
    transform: scale(1.1);
}
.stat-card:hover .stat-icon i { color: white; }

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(249,115,22,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.stat-icon i {
    font-size: 2rem;
    color: var(--orange-primary);
    transition: all 0.3s ease;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange-primary);
    line-height: 1;
}
.stat-symbol {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-primary);
}
.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}
.stat-description {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ========================================
   TESTIMONIAL & LOGO CAROUSEL
   ======================================== */
.testimonial-section {
    padding: 10px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--orange-light), transparent);
    opacity: 0.4;
    pointer-events: none;
}

.testimonial-wrapper {
    margin-bottom: 10px;
    margin-top: 40px;
}
.testimonial-header {
    text-align: center;
    margin-bottom: 20px;
}
.testimonial-carousel {
    position: relative;
    padding: 10px 10px;
}
.testimonial-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    margin: 10px;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(249,115,22,0.12);
}

.quote-icon { margin-bottom: 20px; }
.quote-icon i {
    font-size: 3rem;
    color: var(--orange-primary);
    opacity: 0.6;
}
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 30px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.author-avatar i {
    font-size: 3rem;
    color: var(--orange-primary);
}
.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 4px;
}
.author-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.rating i {
    font-size: 0.8rem;
    color: #FFB800;
    margin-right: 2px;
}

.testimonial-swiper-button-next,
.testimonial-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}
.testimonial-swiper-button-next { right: 0; }
.testimonial-swiper-button-prev { left: 0; }
.testimonial-swiper-button-next i,
.testimonial-swiper-button-prev i {
    font-size: 1rem;
    color: var(--orange-primary);
}
.testimonial-swiper-button-next:hover,
.testimonial-swiper-button-prev:hover {
    background: var(--orange-primary);
}
.testimonial-swiper-button-next:hover i,
.testimonial-swiper-button-prev:hover i { color: white; }

.testimonial-swiper-pagination {
    position: relative;
    margin-top: 30px;
}
.testimonial-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-400);
    opacity: 0.5;
}
.testimonial-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--orange-primary);
    opacity: 1;
}

/* Integrations Section */
.integrations-section {
    text-align: center;
    margin-top: 40px;
}
.integrations-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.integrations-header p {
    color: var(--gray-600);
    margin-bottom: 40px;
}

/* Logo Crawler */
.logo-crawler-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}
.logo-crawler-wrapper::before,
.logo-crawler-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-crawler-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}
.logo-crawler-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--white), transparent);
}
.logo-crawler {
    overflow: hidden;
    white-space: nowrap;
}
.logo-track {
    display: inline-flex;
    animation: scrollLogos 25s linear infinite;
    gap: 40px;
}
.logo-crawler:hover .logo-track { animation-play-state: paused; }

.logo-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gray-100);
    border-radius: 16px;
    transition: all 0.3s;
    min-width: 140px;
}
.logo-item:hover {
    transform: scale(1.05);
    background: var(--orange-light);
    border-color: var(--orange-primary);
}
.logo-icon i {
    font-size: 2rem;
    color: var(--orange-primary);
}
.logo-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ========================================
   POWERING AFTERMARKET EXCELLENCE
   ======================================== */
.excellence-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}
.excellence-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(249,115,22,0.03), transparent);
    border-radius: 50%;
    pointer-events: none;
}
.excellence-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle at bottom right, rgba(249,115,22,0.05), transparent);
    pointer-events: none;
}

.excellence-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.excellence-video {
    flex: 1;
    min-width: 300px;
}
.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.video-placeholder {
    position: relative;
    cursor: pointer;
}
.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.video-container:hover .video-thumbnail { transform: scale(1.02); }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--orange-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.play-btn i {
    font-size: 1.8rem;
    color: white;
    margin-left: 5px;
}
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--orange-dark);
    box-shadow: 0 8px 30px rgba(249,115,22,0.5);
}

.video-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 2;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-modal.active {
    display: block;
    opacity: 1;
}
.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}
.video-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    height: 60%;
    background: var(--black-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--orange-primary);
}
.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--orange-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    color: white;
}
.video-modal-close:hover {
    transform: rotate(90deg);
    background: var(--orange-dark);
}
.video-wrapper {
    width: 100%;
    height: 100%;
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.excellence-content {
    flex: 1;
    min-width: 300px;
}
.excellence-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.excellence-title span {
    color: var(--orange-primary);
    position: relative;
    display: inline-block;
}
.excellence-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary), transparent);
}
.excellence-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.excellence-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}
.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--orange-primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.feature-check i {
    font-size: 1.5rem;
    color: var(--orange-primary);
}
.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 4px;
}
.feature-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.excellence-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   PLATFORM OVERVIEW PAGE
   ======================================== */
.page-hero {
    padding: 10px 0 40px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.page-hero-content {
    flex: 1;
    min-width: 300px;
}
.page-breadcrumb {
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 20px;
}
.page-breadcrumb a {
    color: var(--orange-primary);
    text-decoration: none;
}
.page-breadcrumb i {
    font-size: 0.6rem;
    margin: 0 10px;
    color: var(--gray-400);
}
.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--black-dark);
    margin-bottom: 20px;
}
.page-hero h1 span { color: var(--orange-primary); }
.page-hero-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.page-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.page-hero-visual {
    flex: 0.8;
    min-width: 250px;
}
.platform-visual-placeholder {
    background: linear-gradient(145deg, var(--orange-light), #FFF3E6);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid var(--orange-primary);
}
.platform-visual-placeholder i {
    display: block;
    margin-bottom: 15px;
}

/* Platform Overview Sections */
.platform-overview { background: var(--gray-100); padding: 80px 0; }
.platform-architecture { background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 50%); padding: 80px 0; }
.why-choose-vam { background: var(--orange-light); padding: 80px 0; }
.starter-offers { padding: 40px 0; }
.final-cta { padding: 60px 0; background: var(--black-dark); }

/* Platform Modules */
.platform-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.module-featured {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--black-dark) 0%, #333333 100%);
    border: 1px solid var(--orange-primary);
    border-radius: 24px;
    padding: 40px;
}
.module-featured-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.module-featured-icon {
    flex: 0 0 80px;
    height: 80px;
    background: rgba(249,115,22,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.module-featured-icon i {
    font-size: 2.5rem;
    color: var(--orange-primary);
}
.module-featured-text {
    flex: 1;
    min-width: 250px;
}
.module-featured-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.module-featured-text p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}
.module-featured-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.module-featured-features span {
    color: var(--gray-300);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.module-featured-features i { color: var(--orange-primary); }

.module-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.module-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.module-icon i {
    font-size: 1.8rem;
    color: var(--orange-primary);
}
.module-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.module-card p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
}
.module-features {
    list-style: none;
}
.module-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.module-features i {
    color: var(--orange-primary);
    font-size: 0.8rem;
}

/* Architecture Grid */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.architecture-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.architecture-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
.architecture-card i {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
    display: block;
}
.architecture-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 8px;
}
.architecture-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.why-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
.why-card i {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
}
.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.offer-card {
    background: var(--orange-light);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--orange-primary);
    transition: all 0.3s;
    text-align: center;
}
.offer-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    background: var(--white);
}
.offer-card i {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 0px;
    display: block;
}
.offer-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 10px;
    margin-top: 10px;
}
.offer-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.cta-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.cta-box h2 span { color: var(--orange-primary); }
.cta-box p {
    color: var(--gray-400);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-box .btn-outline {
    border-color: var(--gray-600);
    color: var(--gray-400);
}
.cta-box .btn-outline:hover {
    background: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
}

/* ========================================
   DIGITAL ASSETS PAGE
   ======================================== */
.digital-assets-hero {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}
.digital-overview {
    background: var(--white);
    padding: 80px 0;
}
.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--gray-100);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
.stat-item .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 8px;
}
.stat-item .stat-label {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.digital-modules {
    background: var(--gray-100);
    padding: 80px 0;
}
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.digital-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.digital-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.digital-card .module-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.digital-card .module-icon i {
    font-size: 1.8rem;
    color: var(--orange-primary);
}
.digital-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.digital-card p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}
.digital-card .read-more-link { margin-top: 16px; }

.data-pipeline {
    background: var(--white);
    padding: 80px 0;
}
.pipeline-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}
.pipeline-step {
    text-align: center;
    padding: 25px 20px;
    background: var(--gray-100);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    min-width: 180px;
    flex: 1;
    transition: all 0.3s;
}
.pipeline-step:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
.pipeline-step .step-icon i {
    font-size: 2rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
    display: block;
}
.pipeline-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 6px;
}
.pipeline-step p {
    font-size: 0.85rem;
    color: var(--gray-600);
}
.pipeline-arrow i {
    font-size: 1.5rem;
    color: var(--orange-primary);
}

.why-digital {
    background: var(--orange-light);
    padding: 80px 0;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
.value-card i {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
    display: block;
}
.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ========================================
   GETTING STARTED SECTION
   ======================================== */
.getting-started {
    background: var(--gray-100);
    padding: 40px 0;
}
.getting-started-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.getting-started-card {
    background: var(--orange-light);
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid var(--orange-primary);
    transition: all 0.3s;
    text-align: center;
}
.getting-started-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    background: var(--white);
}
.getting-started-card:hover .gs-icon {
    background: var(--orange-primary);
}
.getting-started-card:hover .gs-icon i { color: white; }

.gs-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s;
}
.gs-icon i {
    font-size: 2rem;
    color: var(--orange-primary);
    transition: all 0.3s;
}
.getting-started-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.getting-started-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
}
.gs-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}
.gs-features li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}
.gs-features li i {
    color: var(--orange-primary);
    font-size: 0.7rem;
}
.getting-started-card .read-more-link { font-size: 0.9rem; }

/* ========================================
   COMMERCE & OPERATIONS PAGE
   ======================================== */
.commerce-hero {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}
.commerce-overview {
    background: var(--white);
    padding: 80px 0;
}
.commerce-modules {
    background: var(--gray-100);
    padding: 80px 0;
}
.commerce-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.commerce-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.commerce-card .module-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.commerce-card .module-icon i {
    font-size: 1.8rem;
    color: var(--orange-primary);
}
.commerce-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.commerce-card p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}
.commerce-card .read-more-link { margin-top: 16px; }

.commerce-workflow {
    background: var(--white);
    padding: 80px 0;
}
.why-commerce {
    background: var(--orange-light);
    padding: 80px 0;
}

/* ========================================
   USE CASE PAGES (Shared Styles)
   ======================================== */
.usecase-hero {
    background: linear-gradient(145deg, var(--black-dark) 0%, #333333 100%);
    color: var(--white);
    padding: 10px 0 60px;
    position: relative;
    overflow: hidden;
}
.usecase-hero .page-hero-content h1 { color: var(--white); }
.usecase-hero .page-hero-description { color: var(--gray-400); }
.usecase-hero .page-breadcrumb a { color: var(--orange-primary); }
.usecase-hero .page-breadcrumb { color: var(--gray-400); }
.usecase-hero .page-breadcrumb i { color: var(--gray-600); }
.usecase-hero .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
.usecase-hero .btn-outline:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.problem-box, .solution-box {
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
}
.problem-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.solution-box {
    background: var(--orange-primary);
    color: var(--white);
}
.problem-box h3, .solution-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.problem-box ul, .solution-box ul {
    list-style: none;
    padding: 0;
}
.problem-box ul li, .solution-box ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.problem-box ul li:last-child, .solution-box ul li:last-child { border-bottom: none; }
.problem-box ul li i {
    color: #ff6b6b;
    width: 20px;
}
.solution-box ul li i {
    color: var(--white);
    width: 20px;
}

.usecase-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 40px 0 30px;
}
.usecase-tab {
    padding: 10px 24px;
    border-radius: 40px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
    font-size: 0.9rem;
}
.usecase-tab.active, .usecase-tab:hover {
    background: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
}

.usecase-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.usecase-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.usecase-detail-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.usecase-detail-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.usecase-detail-card .card-icon i {
    font-size: 1.8rem;
    color: var(--orange-primary);
}
.usecase-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.usecase-detail-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.usecase-detail-card .card-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.usecase-detail-card .card-meta span {
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--gray-100);
    color: var(--gray-700);
}

.asset-journey,
.service-journey,
.commerce-journey {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}
.asset-journey { grid-template-columns: repeat(5, 1fr); }
.service-journey { grid-template-columns: repeat(4, 1fr); }
.commerce-journey { grid-template-columns: repeat(4, 1fr); }

.journey-step {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.journey-step:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
.journey-step .step-icon {
    font-size: 2rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
    display: block;
}
.journey-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 4px;
}
.journey-step p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.preview-interact, .health-status, .commerce-preview, .manual-preview, .service-preview, .dealer-preview, .erp-preview {
    color: #FFF;
    font-size: 12px;
    margin-top: 7px;
}

/* ========================================
   PRICING PAGE
   ======================================== */
.pricing-hero {
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
    color: var(--white);
    padding: 40px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
}
.pricing-hero .container { position: relative; z-index: 2; }
.pricing-hero .page-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #FFF;
}
.pricing-hero .page-breadcrumb a { color: var(--orange-primary); text-decoration: none; }
.pricing-hero .page-breadcrumb i {
    color: var(--gray-600);
    margin: 0 8px;
    font-size: 0.6rem;
}
.pricing-hero .badge-top {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--orange-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(249,115,22,0.2);
}
.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-hero h1 span {
    background: linear-gradient(135deg, var(--orange-primary), #ff9a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-hero p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.pricing-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.pricing-hero .hero-stats .stat { text-align: center; }
.pricing-hero .hero-stats .stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-primary);
    display: block;
}
.pricing-hero .hero-stats .stat .label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Billing Toggle */
.pricing-toggle-wrapper {
    background: var(--white);
    padding: 25px 0 25px;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 80px;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.pricing-toggle .toggle-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-500);
    transition: color 0.3s;
    cursor: pointer;
}
.pricing-toggle .toggle-label.active { color: var(--black-dark); }
.pricing-toggle .toggle-label .save-badge {
    background: var(--orange-light);
    color: var(--orange-primary);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-switch {
    position: relative;
    width: 64px;
    height: 34px;
    background: var(--gray-200);
    border-radius: 34px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}
.toggle-switch.active {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
}
.toggle-switch .toggle-dot {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.toggle-switch.active .toggle-dot { left: 33px; }

.pricing-section {
    background: var(--gray-100);
    padding: 60px 0 80px;
    position: relative;
}
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.pricing-card {
    background: var(--white);
    border-radius: 28px;
    padding: 36px 30px 30px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gray-200), var(--gray-200));
    transition: all 0.4s;
}
.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.08);
    border-color: var(--orange-primary);
}
.pricing-card:hover::before {
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-dark));
}

.pricing-card.popular {
    border: 2px solid var(--orange-primary);
    box-shadow: 0 8px 30px rgba(249,115,22,0.12);
    transform: scale(1.02);
}
.pricing-card.popular::before {
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-dark));
}
.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-12px);
    box-shadow: 0 30px 50px rgba(249,115,22,0.18);
}

.pricing-card .popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-card .plan-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s;
}
.pricing-card:hover .plan-icon { background: var(--orange-primary); }
.pricing-card:hover .plan-icon i { color: white; }
.pricing-card .plan-icon i {
    font-size: 1.6rem;
    color: var(--orange-primary);
    transition: all 0.3s;
}

.pricing-card .plan-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 6px;
}
.pricing-card .plan-subtitle {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.pricing-card .price-wrapper {
    margin: 2px 0 10px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.pricing-card .price-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black-dark);
    line-height: 1;
}
.pricing-card .price-main .currency {
    font-size: 1.4rem;
    color: var(--orange-primary);
}
.pricing-card .price-main .period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}
.pricing-card .price-annual {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 4px;
}
.pricing-card .price-annual strong {
    color: var(--orange-primary);
    font-weight: 700;
}

.pricing-card .offer-badge {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 4px 0 2px;
}
.pricing-card .offer-valid {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.pricing-card .features-list {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
    flex: 1;
}
.pricing-card .features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-50);
}
.pricing-card .features-list li:last-child { border-bottom: none; }
.pricing-card .features-list li i.fa-check {
    color: var(--orange-primary);
    font-size: 0.75rem;
    width: 18px;
    flex-shrink: 0;
}
.pricing-card .features-list li .feature-note {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-left: 4px;
}

.pricing-card .plan-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}
.pricing-card .plan-actions .btn-primary,
.pricing-card .plan-actions .btn-outline {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 12px;
}
.pricing-card .plan-actions .btn-outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}
.pricing-card .plan-actions .btn-outline:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}
.pricing-card .plan-actions .btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    border: none;
    color: white;
}
.pricing-card .plan-actions .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(249,115,22,0.35);
    transform: translateY(-2px);
}

/* Comparison Table */
.comparison-section {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}
.comparison-section .section-header { margin-bottom: 50px; }
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 700px;
}
.comparison-table thead {
    background: linear-gradient(135deg, var(--black-dark), #333333);
}
.comparison-table th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td {
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-700);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table td .check {
    color: var(--orange-primary);
    font-size: 1.2rem;
}
.comparison-table td .cross {
    color: var(--gray-300);
    font-size: 1rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--gray-50); }
.comparison-table td:first-child { font-weight: 500; }

/* FAQ Section */
.faq-section {
    background: var(--gray-100);
    padding: 40px 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}
.faq-item {
    background: var(--white);
    padding: 28px 30px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.faq-item:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.faq-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-item h4 i {
    color: var(--orange-primary);
    font-size: 1.1rem;
}
.faq-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-left: 32px;
}

/* CTA Section - Premium */
.final-cta-premium {
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.final-cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.06), transparent 70%);
    pointer-events: none;
}
.final-cta-premium .cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.final-cta-premium .cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.final-cta-premium .cta-box h2 span { color: var(--orange-primary); }
.final-cta-premium .cta-box p {
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.final-cta-premium .cta-box .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.final-cta-premium .cta-box .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.final-cta-premium .cta-box .btn-outline:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
}

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-hero {
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
    color: var(--white);
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
    pointer-events: none;
}
.blog-hero .container { position: relative; z-index: 2; }
.blog-hero .page-breadcrumb { margin-bottom: 20px; }
.blog-hero .page-breadcrumb a { color: var(--orange-primary); text-decoration: none; }
.blog-hero .page-breadcrumb i {
    color: var(--gray-600);
    margin: 0 8px;
    font-size: 0.6rem;
}
.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.blog-hero h1 span { color: var(--orange-primary); }
.blog-hero p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.blog-filters {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 80px;
    z-index: 40;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.blog-filters .filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.blog-filters .filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}
.blog-filters .filter-btn:hover,
.blog-filters .filter-btn.active {
    background: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
}

.blog-grid-section {
    background: var(--gray-100);
    padding: 60px 0 80px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--orange-primary);
}
.blog-card .blog-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.blog-card .blog-image .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card .blog-image .blog-date {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
}
.blog-card .blog-content { padding: 24px; }
.blog-card .blog-content .blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.blog-card .blog-content .blog-meta i {
    margin-right: 4px;
    color: var(--orange-primary);
}
.blog-card .blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-card .blog-content h3 a {
    color: var(--black-dark);
    text-decoration: none;
    transition: color 0.3s;
}
.blog-card .blog-content h3 a:hover { color: var(--orange-primary); }
.blog-card .blog-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card .blog-content .read-more {
    color: var(--orange-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.blog-card .blog-content .read-more:hover { gap: 12px; }

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}
.blog-pagination .page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}
.blog-pagination .page-link:hover,
.blog-pagination .page-link.active {
    background: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
}

.blog-sidebar {
    position: sticky;
    top: 160px;
}
.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-primary);
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
}
.sidebar-widget ul li a:hover { color: var(--orange-primary); }
.sidebar-widget .search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
}
.sidebar-widget .search-input:focus {
    outline: none;
    border-color: var(--orange-primary);
}
.sidebar-widget .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sidebar-widget .tags a {
    padding: 4px 14px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s;
}
.sidebar-widget .tags a:hover {
    background: var(--orange-primary);
    color: white;
}

/* ========================================
   BLOG DETAIL
   ======================================== */
.blog-detail-hero {
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
    color: var(--white);
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}
.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
    pointer-events: none;
}
.blog-detail-hero .container { position: relative; z-index: 2; }
.blog-detail-hero .page-breadcrumb {
    margin-bottom: 20px;
    color: #FFF;
}
.blog-detail-hero .page-breadcrumb a { color: var(--orange-primary); text-decoration: none; }
.blog-detail-hero .page-breadcrumb i {
    color: var(--gray-600);
    margin: 0 8px;
    font-size: 0.6rem;
}
.blog-detail-hero .blog-meta-top {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.blog-detail-hero .blog-meta-top span {
    font-size: 0.85rem;
    color: var(--gray-400);
}
.blog-detail-hero .blog-meta-top .category-badge {
    background: var(--orange-primary);
    color: white;
    padding: 2px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-detail-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.blog-detail-hero h1 span { color: var(--orange-primary); }
.blog-detail-hero .blog-meta-bottom {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--gray-400);
}
.blog-detail-hero .blog-meta-bottom i {
    margin-right: 6px;
    color: var(--orange-primary);
}

.blog-detail-section {
    padding: 60px 0 80px;
    background: var(--gray-100);
}
.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.blog-detail-content {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--gray-200);
}
.blog-detail-content .featured-image {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-bottom: 30px;
}
.blog-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black-dark);
    margin: 30px 0 16px;
}
.blog-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-dark);
    margin: 24px 0 12px;
}
.blog-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.blog-detail-content ul {
    margin: 16px 0 24px 20px;
}
.blog-detail-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 8px;
}
.blog-detail-content ul li strong { color: var(--black-dark); }

.blog-detail-content .share-section {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.blog-detail-content .share-section span {
    font-weight: 600;
    color: var(--black-dark);
}
.blog-detail-content .share-section .share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s;
    text-decoration: none;
}
.blog-detail-content .share-section .share-btn:hover {
    background: var(--orange-primary);
    color: white;
}

.related-posts {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-200);
}
.related-posts h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.related-item {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}
.related-item:hover {
    border-color: var(--orange-primary);
    transform: translateY(-4px);
}
.related-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.related-item h4 a {
    color: var(--black-dark);
    text-decoration: none;
}
.related-item h4 a:hover { color: var(--orange-primary); }
.related-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
    color: var(--white);
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
    pointer-events: none;
}
.contact-hero .container { position: relative; z-index: 2; }
.contact-hero .page-breadcrumb { margin-bottom: 20px; }
.contact-hero .page-breadcrumb a { color: var(--orange-primary); text-decoration: none; }
.contact-hero .page-breadcrumb i {
    color: var(--gray-600);
    margin: 0 8px;
    font-size: 0.6rem;
}
.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.contact-hero h1 span { color: var(--orange-primary); }
.contact-hero p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 60px 0 80px;
    background: var(--gray-100);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.contact-form-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 8px;
}
.contact-form-wrapper .form-subtitle {
    color: var(--gray-600);
    margin-bottom: 24px;
}
.contact-form-wrapper .form-group { margin-bottom: 20px; }
.contact-form-wrapper .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.contact-form-wrapper .form-group label .required { color: #ff6b6b; }
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: var(--gray-50);
}
.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus,
.contact-form-wrapper .form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
    background: var(--white);
}
.contact-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form-wrapper .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0 24px;
}
.contact-form-wrapper .form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--orange-primary);
}
.contact-form-wrapper .form-checkbox label {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}
.contact-form-wrapper .form-checkbox label a {
    color: var(--orange-primary);
    text-decoration: none;
}
.contact-form-wrapper .form-checkbox label a:hover { text-decoration: underline; }
.contact-form-wrapper .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--orange-primary);
}
.contact-info-card .card-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.contact-info-card .card-icon i {
    font-size: 1.6rem;
    color: var(--orange-primary);
}
.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 4px;
}
.contact-info-card a {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 500;
}
.contact-info-card a:hover { text-decoration: underline; }

.offices-section-contact {
    padding: 60px 0 80px;
    background: var(--white);
}
.offices-section-contact .section-header { margin-bottom: 40px; }
.offices-grid-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.office-card-contact {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-align: center;
}
.office-card-contact:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.office-card-contact .office-flag {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}
.office-card-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 8px;
}
.office-card-contact p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.office-card-contact .office-phone {
    color: var(--orange-primary);
    font-weight: 600;
    margin-top: 8px;
    display: block;
}

.map-section {
    padding: 0 0 60px;
    background: var(--white);
}
.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 400px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1.1rem;
}
.map-container i {
    font-size: 2rem;
    color: var(--orange-primary);
    margin-right: 12px;
}

/* ========================================
   DOWNLOAD CPT PAGE
   ======================================== */
.download-section {
    padding: 60px 0 80px;
    background: var(--gray-100);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}
.download-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.download-content-left h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.download-content-left h1 span { color: var(--orange-primary); }
.download-content-left .subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}
.download-content-left .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}
.download-content-left .features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.download-content-left .features-list .feature-item i {
    color: var(--orange-primary);
    font-size: 1rem;
    width: 20px;
}
.download-content-left .version-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}
.download-content-left .version-badge i { margin-right: 6px; }

.download-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.download-form-wrapper .form-header {
    text-align: center;
    margin-bottom: 24px;
}
.download-form-wrapper .form-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-dark);
}
.download-form-wrapper .form-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 4px;
}
.download-form-wrapper .form-group { margin-bottom: 16px; }
.download-form-wrapper .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gray-700);
    margin-bottom: 4px;
}
.download-form-wrapper .form-group label .required { color: #ff6b6b; }
.download-form-wrapper .form-group input,
.download-form-wrapper .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: var(--gray-50);
}
.download-form-wrapper .form-group input:focus,
.download-form-wrapper .form-group select:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
    background: var(--white);
}
.download-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.download-form-wrapper .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 4px;
}
.download-form-wrapper .btn-primary i { margin-right: 8px; }
.download-form-wrapper .form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 12px;
}
.download-form-wrapper .form-note i {
    color: var(--orange-primary);
    margin-right: 4px;
}
.download-form-wrapper .form-note a {
    color: var(--orange-primary);
    text-decoration: none;
}
.download-form-wrapper .security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-500);
}
.download-form-wrapper .security-badge i { color: #22c55e; }

/* ========================================
   PRIVACY, TERMS, COOKIE, DISCLAIMER PAGES
   ======================================== */
.privacy-hero,
.terms-hero,
.cookie-hero,
.disclaimer-hero {
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
    color: var(--white);
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.privacy-hero::before,
.terms-hero::before,
.cookie-hero::before,
.disclaimer-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
    pointer-events: none;
}
.privacy-hero .container,
.terms-hero .container,
.cookie-hero .container,
.disclaimer-hero .container { position: relative; z-index: 2; }
.privacy-hero .page-breadcrumb,
.terms-hero .page-breadcrumb,
.cookie-hero .page-breadcrumb,
.disclaimer-hero .page-breadcrumb {
    margin-bottom: 20px;
    color: #FFF;
}
.privacy-hero .page-breadcrumb a,
.terms-hero .page-breadcrumb a,
.cookie-hero .page-breadcrumb a,
.disclaimer-hero .page-breadcrumb a {
    color: var(--orange-primary);
    text-decoration: none;
}
.privacy-hero .page-breadcrumb i,
.terms-hero .page-breadcrumb i,
.cookie-hero .page-breadcrumb i,
.disclaimer-hero .page-breadcrumb i {
    color: var(--gray-600);
    margin: 0 8px;
    font-size: 0.6rem;
}
.privacy-hero .badge-top,
.terms-hero .badge-top,
.cookie-hero .badge-top,
.disclaimer-hero .badge-top {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--orange-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(249,115,22,0.2);
}
.privacy-hero h1,
.terms-hero h1,
.cookie-hero h1,
.disclaimer-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.privacy-hero h1 span,
.terms-hero h1 span,
.cookie-hero h1 span,
.disclaimer-hero h1 span { color: var(--orange-primary); }
.privacy-hero p,
.terms-hero p,
.cookie-hero p,
.disclaimer-hero p {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacy-content,
.terms-content,
.cookie-content,
.disclaimer-content {
    padding: 60px 0 80px;
    background: var(--gray-100);
}
.privacy-wrapper,
.terms-wrapper,
.cookie-wrapper,
.disclaimer-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.privacy-wrapper .last-updated,
.terms-wrapper .last-updated,
.cookie-wrapper .last-updated,
.disclaimer-wrapper .last-updated {
    font-size: 0.85rem;
    color: var(--gray-500);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.privacy-wrapper .last-updated i,
.terms-wrapper .last-updated i,
.cookie-wrapper .last-updated i,
.disclaimer-wrapper .last-updated i { color: var(--orange-primary); }

.privacy-wrapper h2,
.terms-wrapper h2,
.cookie-wrapper h2,
.disclaimer-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-dark);
    margin: 30px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange-light);
}
.privacy-wrapper h2:first-of-type,
.terms-wrapper h2:first-of-type,
.cookie-wrapper h2:first-of-type,
.disclaimer-wrapper h2:first-of-type { margin-top: 0; }
.privacy-wrapper h3,
.terms-wrapper h3,
.cookie-wrapper h3,
.disclaimer-wrapper h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black-dark);
    margin: 24px 0 12px;
}
.privacy-wrapper p,
.terms-wrapper p,
.cookie-wrapper p,
.disclaimer-wrapper p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.privacy-wrapper ul,
.terms-wrapper ul,
.cookie-wrapper ul,
.disclaimer-wrapper ul {
    margin: 12px 0 20px 20px;
}
.privacy-wrapper ul li,
.terms-wrapper ul li,
.cookie-wrapper ul li,
.disclaimer-wrapper ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 8px;
}
.privacy-wrapper ul li strong,
.terms-wrapper ul li strong,
.cookie-wrapper ul li strong,
.disclaimer-wrapper ul li strong { color: var(--black-dark); }

.privacy-wrapper .highlight-box,
.terms-wrapper .highlight-box,
.cookie-wrapper .highlight-box,
.disclaimer-wrapper .highlight-box {
    background: var(--orange-light);
    border-left: 4px solid var(--orange-primary);
    padding: 20px 24px;
    border-radius: 12px;
    margin: 20px 0;
}
.privacy-wrapper .highlight-box p,
.terms-wrapper .highlight-box p,
.cookie-wrapper .highlight-box p,
.disclaimer-wrapper .highlight-box p {
    margin-bottom: 0;
    color: var(--gray-700);
}
.privacy-wrapper .highlight-box i,
.terms-wrapper .highlight-box i,
.cookie-wrapper .highlight-box i,
.disclaimer-wrapper .highlight-box i {
    color: var(--orange-primary);
    margin-right: 8px;
}

/* TOC Wrapper */
.toc-wrapper {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 24px 30px;
    margin-bottom: 30px;
}
.toc-wrapper h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 12px;
}
.toc-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}
.toc-wrapper ul li {
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.toc-wrapper ul li a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s;
}
.toc-wrapper ul li a:hover { color: var(--orange-primary); }

/* Cookie Table */
.cookie-table-wrap {
    overflow-x: auto;
    margin: 20px 0 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.cookie-table thead {
    background: var(--black-dark);
    color: white;
}
.cookie-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
}
.cookie-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tbody tr:hover { background: var(--gray-50); }
.cookie-table .badge-cookie {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}
.cookie-table .badge-cookie.essential {
    background: #dcfce7;
    color: #16a34a;
}
.cookie-table .badge-cookie.analytics {
    background: #fef3c7;
    color: #d97706;
}
.cookie-table .badge-cookie.functional {
    background: #dbeafe;
    color: #2563eb;
}
.cookie-table .badge-cookie.targeting {
    background: #fce4ec;
    color: #dc2626;
}

/* ========================================
   FEATURES PAGE
   ======================================== */
.features-hero {
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
    color: var(--white);
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.features-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
    pointer-events: none;
}
.features-hero .container { position: relative; z-index: 2; }
.features-hero .page-breadcrumb { margin-bottom: 20px; }
.features-hero .page-breadcrumb a { color: var(--orange-primary); text-decoration: none; }
.features-hero .page-breadcrumb i {
    color: var(--gray-600);
    margin: 0 8px;
    font-size: 0.6rem;
}
.features-hero .badge-top {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--orange-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(249,115,22,0.2);
}
.features-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.features-hero h1 span { color: var(--orange-primary); }
.features-hero p {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-categories {
    padding: 60px 0 80px;
    background: var(--gray-100);
}
.category-section { margin-bottom: 60px; }
.category-section:last-child { margin-bottom: 0; }

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-light);
}
.category-header .category-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.category-header .category-icon i {
    font-size: 1.4rem;
    color: var(--orange-primary);
}
.category-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black-dark);
}
.category-header .feature-count {
    font-size: 0.8rem;
    color: var(--gray-500);
    background: var(--gray-200);
    padding: 2px 12px;
    border-radius: 20px;
    margin-left: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-item {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.feature-item .feature-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.feature-item .feature-icon-wrap i {
    font-size: 1.2rem;
    color: var(--orange-primary);
}
.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 6px;
}
.feature-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}
.feature-item .feature-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    margin-top: auto;
}
.feature-item .feature-link:hover { gap: 10px; }

.features-stats {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}
.features-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.features-stats .stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange-primary);
    display: block;
}
.features-stats .stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.cta-features-section {
    padding: 60px 0;
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 100%);
    text-align: center;
}
.cta-features-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-features-section .cta-content h2 span { color: var(--orange-primary); }
.cta-features-section .cta-content p {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.cta-features-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-features-section .cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.cta-features-section .cta-buttons .btn-outline:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}

/* ========================================
   USE CASES PAGE
   ======================================== */
.usecases-hero {
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
    color: var(--white);
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.usecases-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
    pointer-events: none;
}
.usecases-hero .container { position: relative; z-index: 2; }
.usecases-hero .page-breadcrumb {
    margin-bottom: 20px;
    color: #FFFFFF;
}
.usecases-hero .page-breadcrumb a { color: var(--orange-primary); text-decoration: none; }
.usecases-hero .page-breadcrumb i {
    color: var(--gray-600);
    margin: 0 8px;
    font-size: 0.6rem;
}
.usecases-hero .badge-top {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--orange-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(249,115,22,0.2);
}
.usecases-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.usecases-hero h1 span { color: var(--orange-primary); }
.usecases-hero p {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.filter-section {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 80px;
    z-index: 40;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover {
    background: var(--orange-light);
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}
.filter-btn.active {
    background: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
}

.usecases-grid-section {
    padding: 60px 0 80px;
    background: var(--gray-100);
}
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.usecase-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--orange-primary);
}
.usecase-card .usecase-icon {
    padding: 24px 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.usecase-card .usecase-icon .icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.usecase-card .usecase-icon .icon-wrap i {
    font-size: 1.4rem;
    color: var(--orange-primary);
}
.usecase-card .usecase-icon .category-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange-primary);
    background: var(--orange-light);
    padding: 2px 12px;
    border-radius: 20px;
}
.usecase-card .usecase-body {
    padding: 16px 24px 24px;
}
.usecase-card .usecase-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 8px;
}
.usecase-card .usecase-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.usecase-card .usecase-body .usecase-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.usecase-card .usecase-body .usecase-meta span {
    font-size: 0.7rem;
    padding: 2px 12px;
    border-radius: 20px;
    background: var(--gray-100);
    color: var(--gray-600);
}
.usecase-card .usecase-body .read-more-link {
    color: var(--orange-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.85rem;
}
.usecase-card .usecase-body .read-more-link:hover { gap: 12px; }

.usecases-stats {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}
.usecases-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.usecases-stats .stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange-primary);
    display: block;
}
.usecases-stats .stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.cta-usecases-section {
    padding: 60px 0;
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 100%);
    text-align: center;
}
.cta-usecases-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-usecases-section .cta-content h2 span { color: var(--orange-primary); }
.cta-usecases-section .cta-content p {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.cta-usecases-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-usecases-section .cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.cta-usecases-section .cta-buttons .btn-outline:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}

/* ========================================
   PLATFORM DEMO PAGE
   ======================================== */
.demo-short-section {
    padding: 60px 0 80px;
    background: var(--gray-100);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}
.demo-short-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.demo-content-left h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.demo-content-left h1 span { color: var(--orange-primary); }
.demo-content-left .subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 30px;
}
.demo-content-left .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}
.demo-content-left .features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.demo-content-left .features-list .feature-item i {
    color: var(--orange-primary);
    font-size: 1rem;
    width: 20px;
}
.demo-content-left .trust-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}
.demo-content-left .trust-badge span {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.demo-content-left .trust-badge .avatars { display: flex; }
.demo-content-left .trust-badge .avatars .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 2px solid var(--white);
    margin-right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gray-600);
}
.demo-content-left .trust-badge .avatars .avatar:last-child {
    background: var(--orange-primary);
    color: white;
}

.demo-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.demo-form-wrapper .form-header {
    text-align: center;
    margin-bottom: 24px;
}
.demo-form-wrapper .form-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-dark);
}
.demo-form-wrapper .form-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 4px;
}
.demo-form-wrapper .form-group { margin-bottom: 16px; }
.demo-form-wrapper .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gray-700);
    margin-bottom: 4px;
}
.demo-form-wrapper .form-group label .required { color: #ff6b6b; }
.demo-form-wrapper .form-group input,
.demo-form-wrapper .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: var(--gray-50);
}
.demo-form-wrapper .form-group input:focus,
.demo-form-wrapper .form-group select:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
    background: var(--white);
}
.demo-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.demo-form-wrapper .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 4px;
}
.demo-form-wrapper .form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 12px;
}
.demo-form-wrapper .form-note a {
    color: var(--orange-primary);
    text-decoration: none;
}

/* ========================================
   404 PAGE
   ======================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.error-page::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.06), transparent 70%);
    pointer-events: none;
}
.error-page .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
.error-code {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--orange-primary);
    text-shadow: 0 0 60px rgba(249,115,22,0.15);
    margin-bottom: 10px;
    letter-spacing: -4px;
}
.error-code .code-0 {
    display: inline-block;
    animation: floatZero 4s ease-in-out infinite;
}
.error-code .code-0:nth-child(2) { animation-delay: 0.5s; }
.error-code .code-0:nth-child(3) { animation-delay: 1s; }
.error-icon {
    font-size: 4rem;
    color: var(--orange-primary);
    margin-bottom: 16px;
    display: block;
    opacity: 0.6;
}
.error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.error-title span { color: var(--orange-primary); }
.error-description {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.error-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto 30px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.error-search input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.error-search input::placeholder { color: var(--gray-500); }
.error-search input:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: rgba(255,255,255,0.08);
}
.error-search button {
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--orange-primary);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 0.95rem;
}
.error-search button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}
.error-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.error-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.06);
}
.error-links a:hover {
    color: var(--orange-primary);
    border-color: var(--orange-primary);
}
.error-links a i { margin-right: 6px; }
.error-home-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    transition: all 0.3s;
    margin-top: 10px;
    font-size: 1rem;
}
.error-home-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.35);
}
.error-home-link i {
    font-size: 1rem;
    transition: transform 0.3s;
}
.error-home-link:hover i { transform: translateX(-4px); }

/* ========================================
   CATALOGUE HERO (Shared for Solution Pages)
   ======================================== */
.catalogue-hero {
    background: linear-gradient(160deg, #0A0C14 0%, #333333 40%, #222222 100%);
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}
.catalogue-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
    pointer-events: none;
}
.catalogue-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.catalogue-hero .hero-badge {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--orange-primary);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(249,115,22,0.2);
}
.catalogue-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.catalogue-hero h1 span { color: var(--orange-primary); }
.catalogue-hero .hero-description {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 30px;
}
.catalogue-hero .hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}
.catalogue-hero .hero-stats .stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-primary);
    display: block;
}
.catalogue-hero .hero-stats .stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.catalogue-hero .hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.catalogue-hero .hero-3d-preview {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.catalogue-hero .hero-3d-preview .preview-icon {
    font-size: 5rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
    animation: float3d 3s ease-in-out infinite;
}
.catalogue-hero .hero-3d-preview h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.catalogue-hero .hero-3d-preview .preview-label {
    color: var(--gray-400);
    font-size: 0.85rem;
}
.catalogue-hero .hero-3d-preview .preview-interact {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}
.catalogue-hero .hero-3d-preview .preview-interact span {
    color: var(--gray-500);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.catalogue-hero .hero-3d-preview .preview-interact i { color: var(--orange-primary); }

/* Capabilities Section (Shared) */
.capabilities-section {
    padding: 80px 0;
    background: var(--white);
}
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.capability-card {
    background: var(--gray-100);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.capability-card:hover::before { opacity: 1; }
.capability-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.capability-card .card-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--orange-primary);
    background: var(--orange-light);
    padding: 2px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}
.capability-card .card-icon {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 16px;
    display: block;
}
.capability-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 8px;
}
.capability-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.capability-card .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}
.capability-card .feature-list li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}
.capability-card .feature-list li i {
    color: var(--orange-primary);
    font-size: 0.7rem;
}

/* How It Works Catalogue (Shared) */
.how-it-works-catalogue {
    padding: 80px 0;
    background: var(--gray-100);
}
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.workflow-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
}
.workflow-step:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
.workflow-step .step-number {
    display: inline-block;
    background: var(--orange-primary);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.workflow-step .step-icon {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 12px;
    display: block;
}
.workflow-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 6px;
}
.workflow-step p {
    font-size: 0.85rem;
    color: var(--gray-600);
}
.workflow-step .step-connector {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 20px;
    height: 2px;
    background: var(--orange-primary);
    transform: translateY(-50%);
}
.workflow-step:last-child .step-connector { display: none; }

/* Benefits Section (Shared) */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.benefit-item:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.benefit-item .benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-item .benefit-icon i {
    font-size: 1.4rem;
    color: var(--orange-primary);
}
.benefit-item .benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 4px;
}
.benefit-item .benefit-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* CTA Catalogue Section (Shared) */
.cta-catalogue-section {
    padding: 60px 0;
    background: linear-gradient(160deg, var(--black-dark) 0%, #333333 100%);
    text-align: center;
}
.cta-catalogue-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-catalogue-section .cta-content h2 span { color: var(--orange-primary); }
.cta-catalogue-section .cta-content p {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.cta-catalogue-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-catalogue-section .cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.cta-catalogue-section .cta-buttons .btn-outline:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}
/* ========================================
   MOBILE MENU STYLES - CORRECTED
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black-dark);
    cursor: pointer;
    padding: 8px;
}

/* Mobile Menu Overlay - Behind Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Menu - On Top of Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-600);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links > li > a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--black-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
}

/* Mobile Accordion */
.mobile-accordion {
    border-bottom: 1px solid var(--gray-200);
}

.mobile-accordion-btn {
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    text-align: left;
    font-weight: 500;
    color: var(--black-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.mobile-accordion-btn i {
    transition: transform 0.3s;
}

.mobile-accordion.active .mobile-accordion-btn i {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    display: none;
    padding: 10px 0 20px 15px;
}

.mobile-accordion.active .mobile-accordion-content {
    display: block;
}

/* Mobile Submenu */
.mobile-submenu {
    margin-bottom: 20px;
}

.mobile-submenu strong {
    display: block;
    color: var(--orange-primary);
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.mobile-submenu a:hover {
    color: var(--orange-primary);
}

/* Mobile Demo Button */
.demo-nav-btn-mobile {
    display: block;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white !important;
    padding: 14px 24px;
    border-radius: 40px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}

.demo-nav-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.4);
}
/* ========================================
   RESPONSIVE - CONSOLIDATED
   ======================================== */

/* Tablet & Desktop (1024px and below) */
@media (max-width: 1024px) {
    .nav-wrapper { display: none; }
    .mobile-menu-toggle { display: block; }
    .nav-bar { justify-content: space-between; }
    .container { padding: 0 20px; }
    section { padding: 60px 0; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .steps-container { gap: 20px; }
    .step-card { padding: 30px 20px; }
    .step-connector { width: 20px; right: -20px; }
    .stats-grid { gap: 20px; }
    .stat-card { padding: 30px 20px; }
    .stat-number { font-size: 2.8rem; }
    .stat-symbol { font-size: 1.6rem; }
    .stat-icon { width: 60px; height: 60px; }
    .stat-icon i { font-size: 1.6rem; }
    .stat-label { font-size: 1rem; }
    
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-12px); }
    
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .usecases-grid { grid-template-columns: repeat(2, 1fr); }
    .usecases-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .features-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    .overview-stats { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .getting-started-grid { grid-template-columns: repeat(2, 1fr); }
    .architecture-grid, .offers-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .commerce-modules .modules-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-wrapper { grid-template-columns: 1fr; }
    .offices-grid-contact { grid-template-columns: repeat(2, 1fr); }
    .download-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .download-content-left h1 { font-size: 2.2rem; }
    .demo-short-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .demo-content-left h1 { font-size: 2.2rem; }
    .blog-detail-wrapper { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
}

/* Mega Menu (1100px and below) */
@media (max-width: 1100px) {
    .mega-menu-features,
    .mega-menu-usecases {
        width: 85vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Tablet (900px and below) */
@media (max-width: 900px) {
    .mega-menu-usecases .mega-row,
    .mega-menu-features .mega-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title { font-size: 2rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .steps-container {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }
    .step-card { width: 100%; }
    .step-connector { display: none; }
    .how-it-works { padding: 60px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .stats-title { font-size: 2rem; }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .mega-menu { display: none; }
    .booking-flex { flex-direction: column; }
    .cpt-section { padding: 30px; }
    .feature-grid { grid-template-columns: 1fr; }
    .usecase-gallery { grid-template-columns: 1fr; }
    .pricing-grid { 
        grid-template-columns: 1fr; 
        max-width: 500px; 
        margin: 0 auto; 
    }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-12px); }
    .hero-slider .swiper-slide {
        padding: 40px 25px;
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-badge { font-size: 0.7rem; }
    .hero-pagination { top: 15px; right: 15px; }
    .pagination-wrapper { padding: 5px 12px; gap: 10px; }
    .pagination-label { font-size: 0.7rem; }
    .pagination-item { padding: 4px 8px; }
    .explore-3d-button { padding: 8px 18px; font-size: 0.8rem; }
    .swiper-button-prev, .swiper-button-next { width: 35px; height: 35px; }
    .swiper-button-prev:after, .swiper-button-next:after { font-size: 14px; }
    
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 1rem; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-flex { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .lightbox-container { width: 95%; height: 90%; border-radius: 16px; }
    .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 1rem; }
    
    .testimonial-carousel { padding: 20px 30px; }
    .testimonial-card { padding: 25px; }
    .testimonial-text { font-size: 0.95rem; }
    .testimonial-swiper-button-next,
    .testimonial-swiper-button-prev { width: 35px; height: 35px; }
    .integrations-header h3 { font-size: 1.4rem; }
    .logo-item { min-width: 120px; padding: 12px 18px; }
    .logo-icon i { font-size: 1.5rem; }
    .logo-item span { font-size: 0.75rem; }
    
    .excellence-section { padding: 60px 0; }
    .play-btn { width: 60px; height: 60px; }
    .play-btn i { font-size: 1.3rem; }
    .video-modal-container { width: 95%; height: 50%; }
    .video-modal-close { top: -40px; right: 0; }
    .excellence-title { font-size: 1.6rem; }
    .feature-item { padding: 12px; }
    
    .page-hero h1 { font-size: 2rem; }
    .page-hero .container { flex-direction: column; text-align: center; }
    .page-hero-buttons { justify-content: center; }
    .page-hero-description { margin: 0 auto 30px; }
    .platform-modules { grid-template-columns: 1fr; }
    .module-featured { grid-column: span 1; }
    .module-featured-content { flex-direction: column; text-align: center; }
    .module-featured-features { justify-content: center; }
    .architecture-grid, .offers-grid, .why-grid { grid-template-columns: 1fr; }
    .cta-box h2 { font-size: 1.6rem; }
    
    .overview-stats { grid-template-columns: 1fr 1fr; }
    .modules-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .getting-started-grid { grid-template-columns: 1fr; max-width: 500px; margin: 30px auto 0; }
    .getting-started-card { padding: 25px 20px; }
    .commerce-modules .modules-grid { grid-template-columns: 1fr; }
    
    .usecase-hero { padding: 60px 0 40px; text-align: center; }
    .usecase-hero .page-hero-buttons { justify-content: center; }
    .problem-box, .solution-box { padding: 25px; }
    .problem-box h3, .solution-box h3 { font-size: 1.4rem; }
    .usecase-tabs { justify-content: center; }
    .usecase-detail-grid { grid-template-columns: 1fr; }
    .asset-journey { grid-template-columns: 1fr 1fr; }
    .service-journey { grid-template-columns: 1fr 1fr; }
    .commerce-journey { grid-template-columns: 1fr 1fr; }
    
    .pricing-hero { padding: 60px 0 40px; }
    .pricing-hero h1 { font-size: 2.2rem; }
    .pricing-hero .hero-stats { gap: 30px; }
    .pricing-hero .hero-stats .stat .number { font-size: 1.5rem; }
    .pricing-toggle-wrapper { top: 70px; padding: 20px 0 30px; }
    .pricing-toggle { flex-wrap: wrap; gap: 12px; }
    .pricing-toggle .toggle-label { font-size: 0.85rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item p { margin-left: 0; }
    .final-cta-premium .cta-box h2 { font-size: 1.8rem; }
    .comparison-table th, .comparison-table td { padding: 10px 14px; font-size: 0.8rem; }
    
    .blog-hero h1 { font-size: 2rem; }
    .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .blog-filters .filter-group { gap: 8px; }
    .blog-filters .filter-btn { font-size: 0.75rem; padding: 6px 14px; }
    .blog-sidebar { position: static; margin-top: 30px; }
    .blog-detail-hero h1 { font-size: 1.8rem; }
    .blog-detail-content { padding: 24px; }
    .blog-detail-content .featured-image { height: 200px; }
    .related-grid { grid-template-columns: 1fr; }
    .blog-detail-hero .blog-meta-top { gap: 12px; }
    
    .contact-hero h1 { font-size: 2rem; }
    .contact-form-wrapper { padding: 24px; }
    .contact-form-wrapper .form-row { grid-template-columns: 1fr; }
    .offices-grid-contact { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .map-container { height: 250px; }
    .contact-info-card { padding: 24px; }
    
    .download-section { padding: 40px 0 60px; }
    .download-content-left h1 { font-size: 1.8rem; }
    .download-content-left .features-list { grid-template-columns: 1fr; }
    .download-form-wrapper { padding: 24px; }
    .download-form-wrapper .form-row { grid-template-columns: 1fr; }
    .demo-short-section { padding: 40px 0 60px; }
    .demo-content-left h1 { font-size: 1.8rem; }
    .demo-content-left .features-list { grid-template-columns: 1fr; }
    .demo-form-wrapper { padding: 24px; }
    .demo-form-wrapper .form-row { grid-template-columns: 1fr; }
    .demo-content-left .trust-badge { flex-wrap: wrap; }
    
    .usecases-hero h1 { font-size: 2rem; }
    .usecases-grid { grid-template-columns: 1fr; }
    .usecases-stats .stats-grid { grid-template-columns: 1fr 1fr; }
    .usecases-stats .stat-item .stat-number { font-size: 1.6rem; }
    .filter-group { gap: 8px; }
    .filter-btn { font-size: 0.75rem; padding: 6px 14px; }
    
    .features-hero h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .features-stats .stats-grid { grid-template-columns: 1fr 1fr; }
    .features-stats .stat-item .stat-number { font-size: 1.6rem; }
    .category-header .feature-count { display: none; }
    
    .privacy-hero h1, .terms-hero h1, .cookie-hero h1, .disclaimer-hero h1 { font-size: 2rem; }
    .privacy-wrapper, .terms-wrapper, .cookie-wrapper, .disclaimer-wrapper { padding: 24px; }
    .privacy-wrapper h2, .terms-wrapper h2, .cookie-wrapper h2, .disclaimer-wrapper h2 { font-size: 1.3rem; }
    .toc-wrapper ul { grid-template-columns: 1fr; }
    .privacy-hero, .terms-hero, .cookie-hero, .disclaimer-hero { padding: 60px 0 40px; }
    .cookie-table th, .cookie-table td { padding: 10px 14px; font-size: 0.8rem; }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .pagination-label { display: none; }
    .pagination-wrapper { padding: 5px 8px; gap: 5px; }
    .pagination-item { padding: 4px; }
    .hero-content h1 { font-size: 1.8rem; }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .section-title { font-size: 1.6rem; }
    .btn-primary, .btn-outline { padding: 10px 20px; font-size: 0.9rem; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-image-placeholder { padding: 25px; }
    .feature-card { padding: 20px; }
    .pricing-card { padding: 20px; }
    .price { font-size: 1.8rem; }
    .booking-section { padding: 25px; }
    .date-selector { grid-template-columns: 1fr; }
    
    .step-card { padding: 25px 20px; }
    .step-number { width: 38px; height: 38px; font-size: 1rem; top: -12px; left: 15px; }
    .step-icon { width: 65px; height: 65px; }
    .step-icon i { font-size: 1.8rem; }
    .step-title { font-size: 1.1rem; }
    .section-title { font-size: 1.6rem; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .stats-section { padding: 60px 0; }
    .stats-title { font-size: 1.6rem; }
    .stats-subtitle { font-size: 0.9rem; }
    .stat-card { padding: 25px 20px; }
    .stat-number { font-size: 2.5rem; }
    
    .testimonial-carousel { padding: 20px 15px; }
    .testimonial-swiper-button-next,
    .testimonial-swiper-button-prev { display: none; }
    .logo-item { min-width: 100px; padding: 10px 15px; }
    
    .excellence-buttons { flex-direction: column; }
    .excellence-buttons button { width: 100%; }
    .play-btn { width: 50px; height: 50px; }
    .play-btn i { font-size: 1rem; }
    
    .offices-grid-contact { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 16px; }
    .contact-info-card .card-icon { width: 44px; height: 44px; }
    .contact-info-card .card-icon i { font-size: 1.2rem; }
    
    .download-form-wrapper { padding: 16px; }
    .download-content-left h1 { font-size: 1.5rem; }
    .download-content-left .version-badge { font-size: 0.7rem; }
    .demo-form-wrapper { padding: 16px; }
    .demo-content-left h1 { font-size: 1.5rem; }
    
    .pricing-card .plan-actions { flex-direction: column; }
    .pricing-card .plan-actions .btn-primary,
    .pricing-card .plan-actions .btn-outline { width: 100%; }
    .pricing-hero h1 { font-size: 1.8rem; }
    .comparison-table th, .comparison-table td { padding: 8px 10px; font-size: 0.7rem; }
    .cookie-table th, .cookie-table td { padding: 8px 10px; font-size: 0.7rem; }
    .privacy-wrapper, .terms-wrapper, .cookie-wrapper, .disclaimer-wrapper { padding: 16px; }
    .privacy-wrapper h2, .terms-wrapper h2, .cookie-wrapper h2, .disclaimer-wrapper h2 { font-size: 1.1rem; }
    .privacy-wrapper p, .privacy-wrapper ul li, .terms-wrapper p, .terms-wrapper ul li,
    .cookie-wrapper p, .cookie-wrapper ul li, .disclaimer-wrapper p, .disclaimer-wrapper ul li { font-size: 0.88rem; }
    .toc-wrapper { padding: 16px 18px; }
    .usecases-stats .stats-grid { grid-template-columns: 1fr; }
    .usecase-card .usecase-icon { flex-direction: column; align-items: flex-start; }
    .features-stats .stats-grid { grid-template-columns: 1fr; }
    .category-header h2 { font-size: 1.3rem; }
    .error-code { font-size: 3.5rem; }
    .error-title { font-size: 1.4rem; }
    .error-home-link { padding: 12px 24px; font-size: 0.9rem; }
    .asset-journey { grid-template-columns: 1fr; }
    .service-journey { grid-template-columns: 1fr; }
    .commerce-journey { grid-template-columns: 1fr; }
}

/* ========================================
   CATALOGUE HERO RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .catalogue-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .catalogue-hero h1 { font-size: 2.8rem; }
    .catalogue-hero .hero-stats { justify-content: center; }
    .catalogue-hero .hero-cta-group { justify-content: center; }
    .workflow-steps { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .pipeline-steps { flex-direction: column; max-width: 500px; margin: 40px auto 0; }
    .pipeline-arrow { transform: rotate(90deg); }
    .workflow-steps { flex-direction: column; max-width: 500px; margin: 40px auto 0; }
    .workflow-arrow { transform: rotate(90deg); }
    .usecase-hero { padding: 60px 0 40px; text-align: center; }
}

@media (max-width: 768px) {
    .catalogue-hero { padding: 60px 0 40px; }
    .catalogue-hero h1 { font-size: 2rem; }
    .catalogue-hero .hero-stats { gap: 20px; flex-wrap: wrap; }
    .catalogue-hero .hero-stats .stat-item .stat-number { font-size: 1.4rem; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .workflow-steps { grid-template-columns: 1fr; max-width: 400px; margin: 30px auto 0; }
    .workflow-step .step-connector { display: none; }
    .cta-catalogue-section .cta-content h2 { font-size: 1.8rem; }
    .cta-catalogue-section .cta-buttons { flex-direction: column; align-items: center; }
}



  /* Quick Form Styles - Short Version */
    .quick-form-card {
        background: linear-gradient(145deg, #FFF8F0, #FFEDD5) !important;
        border: 2px solid var(--orange-primary) !important;
        border-radius: 20px !important;
        padding: 24px !important;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 380px;
    }
    .quick-form-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(249,115,22,0.05), transparent);
        pointer-events: none;
    }
    .quick-form-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(249,115,22,0.15);
    }
    .quick-form-card .form-header {
        text-align: center;
        margin-bottom: 12px;
        flex-shrink: 0;
    }
    .quick-form-card .form-header .form-icon {
        width: 48px;
        height: 48px;
        background: var(--orange-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        box-shadow: 0 4px 15px rgba(249,115,22,0.25);
    }
    .quick-form-card .form-header .form-icon i {
        font-size: 1.4rem;
        color: white;
    }
    .quick-form-card .form-header h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 2px;
    }
    .quick-form-card .form-header p {
        font-size: 0.7rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }
    .quick-form-card .form-badge {
        display: inline-block;
        background: var(--orange-primary);
        color: white;
        font-size: 0.5rem;
        font-weight: 700;
        padding: 2px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }
    .quick-form-card .form-group {
        margin-bottom: 8px;
        flex-shrink: 0;
    }
    .quick-form-card .form-group input,
    .quick-form-card .form-group textarea,
    .quick-form-card .form-group select {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        font-family: inherit;
        font-size: 0.8rem;
        transition: all 0.3s;
        background: var(--white);
        color: var(--gray-700);
    }
    .quick-form-card .form-group input:focus,
    .quick-form-card .form-group textarea:focus,
    .quick-form-card .form-group select:focus {
        outline: none;
        border-color: var(--orange-primary);
        box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
    }
    .quick-form-card .form-group textarea {
        resize: vertical;
        min-height: 50px;
        max-height: 80px;
    }
    .quick-form-card .form-group input::placeholder,
    .quick-form-card .form-group textarea::placeholder {
        color: var(--gray-400);
        font-size: 0.75rem;
    }
    .quick-form-card .btn-primary {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
        border: none;
        color: white;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-shrink: 0;
        margin-top: 4px;
    }
    .quick-form-card .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(249,115,22,0.35);
    }
    .quick-form-card .btn-primary i {
        font-size: 0.8rem;
    }
    .quick-form-card .form-note {
        text-align: center;
        font-size: 0.6rem;
        color: var(--gray-400);
        margin-top: 6px;
        flex-shrink: 0;
    }
    .quick-form-card .form-note i {
        color: var(--orange-primary);
        margin-right: 4px;
    }

    .quick-form-success {
        display: none;
        text-align: center;
        padding: 10px;
        flex: 1;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .quick-form-success.active {
        display: flex;
        animation: fadeIn 0.5s ease;
    }
    .quick-form-success .success-icon {
        font-size: 2.5rem;
        color: #22c55e;
        margin-bottom: 8px;
        display: block;
    }
    .quick-form-success h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 4px;
    }
    .quick-form-success p {
        font-size: 0.75rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    
      /* Hide form elements when success active */
    .quick-form-card .form-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .quick-form-card .form-content.hidden {
        display: none;
    }
 
    @media (max-width: 768px) { 
        .quick-form-card {
            min-height: auto;
        }
    }
    
    
    
        /* ========================================
       PLATFORM OVERVIEW PAGE STYLES
       ======================================== */

    /* Hero Section */
    .page-hero {
        padding: 10px 0 40px;
        background: var(--white);
        position: relative;
        overflow: hidden;
    }
    .page-hero .container {
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }
    .page-hero-content {
        flex: 1;
        min-width: 300px;
    }
    .page-breadcrumb {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 20px;
    }
    .page-breadcrumb a {
        color: var(--orange-primary);
        text-decoration: none;
    }
    .page-breadcrumb i {
        font-size: 0.6rem;
        margin: 0 10px;
        color: var(--gray-400);
    }
    .page-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
        color: var(--black-dark);
        margin-bottom: 20px;
    }
    .page-hero h1 span {
        color: var(--orange-primary);
    }
    .page-hero-description {
        font-size: 1.1rem;
        color: var(--gray-600);
        max-width: 600px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    .page-hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .page-hero-visual {
        flex: 0.8;
        min-width: 250px;
    }
    .platform-visual-placeholder {
        background: linear-gradient(145deg, var(--orange-light), #FFF3E6);
        border-radius: 24px;
        padding: 60px 40px;
        text-align: center;
        border: 2px solid var(--orange-primary);
    }
    .platform-visual-placeholder i {
        display: block;
        margin-bottom: 15px;
    }

    /* Platform Overview Sections */
    .platform-overview {
        background: var(--gray-100);
        padding: 80px 0;
    }
    .platform-architecture {
        background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 50%);
        padding: 80px 0;
    }
    .why-choose-vam {
        background: var(--orange-light);
        padding: 80px 0;
    }
    .starter-offers {
        padding: 40px 0;
    }
    .final-cta {
        padding: 60px 0;
        background: var(--black-dark);
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    .section-badge {
        display: inline-block;
        background: var(--orange-light);
        color: var(--orange-primary);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 16px;
    }
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 12px;
    }
    .section-title span {
        color: var(--orange-primary);
    }
    .section-subtitle {
        color: var(--gray-600);
        font-size: 1.1rem;
    }

    /* Platform Modules - 3x3 Grid */
    .platform-modules {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    /* Featured Module */
    .module-featured {
        grid-column: span 3;
        background: linear-gradient(135deg, var(--black-dark) 0%, #333333 100%);
        border: 1px solid var(--orange-primary);
        border-radius: 24px;
        padding: 40px;
        transition: all 0.3s ease;
    }
    .module-featured:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .module-featured-content {
        display: flex;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
    }
    .module-featured-icon {
        flex: 0 0 80px;
        height: 80px;
        background: rgba(249,115,22,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .module-featured-icon i {
        font-size: 2.5rem;
        color: var(--orange-primary);
    }
    .module-featured-text {
        flex: 1;
        min-width: 250px;
    }
    .module-featured-text h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 12px;
    }
    .module-featured-text p {
        color: var(--gray-400);
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .module-featured-features {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .module-featured-features span {
        color: var(--gray-300);
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .module-featured-features i {
        color: var(--orange-primary);
    }

    /* Regular Module Cards */
    .module-card {
        background: var(--white);
        border-radius: 20px;
        padding: 32px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s ease;
    }
    .module-card:hover {
        transform: translateY(-8px);
        border-color: var(--orange-primary);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .module-icon {
        width: 60px;
        height: 60px;
        background: var(--orange-light);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .module-icon i {
        font-size: 1.8rem;
        color: var(--orange-primary);
    }
    .module-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 12px;
    }
    .module-card p {
        color: var(--gray-600);
        line-height: 1.5;
        margin-bottom: 16px;
    }
    .module-features {
        list-style: none;
        padding: 0;
    }
    .module-features li {
        padding: 6px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--gray-700);
    }
    .module-features i {
        color: var(--orange-primary);
        font-size: 0.8rem;
    }

    /* Architecture Grid */
    .architecture-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    .architecture-card {
        background: var(--white);
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }
    .architecture-card:hover {
        transform: translateY(-5px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .architecture-card i {
        font-size: 2.5rem;
        color: var(--orange-primary);
        margin-bottom: 15px;
        display: block;
    }
    .architecture-card h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .architecture-card p {
        font-size: 0.85rem;
        color: var(--gray-600);
    }

    /* Why Choose Grid */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    .why-card {
        text-align: center;
        padding: 30px 20px;
        background: var(--white);
        border-radius: 20px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }
    .why-card:hover {
        transform: translateY(-5px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .why-card i {
        font-size: 2.5rem;
        color: var(--orange-primary);
        margin-bottom: 15px;
    }
    .why-card h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .why-card p {
        font-size: 0.9rem;
        color: var(--gray-600);
    }

    /* Starter Offers Grid */
    .offers-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    .offer-card {
        background: var(--orange-light);
        padding: 28px;
        border-radius: 20px;
        border: 1px solid var(--orange-primary);
        transition: all 0.3s;
        text-align: center;
    }
    .offer-card:hover {
        transform: translateY(-5px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
        background: var(--white);
    }
    .offer-card i {
        font-size: 2.5rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .offer-card h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 10px;
    }
    .offer-card p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .offer-card .read-more-link {
        font-size: 0.85rem;
        color: var(--orange-primary);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s;
    }
    .offer-card .read-more-link:hover {
        gap: 10px;
    }

    /* Final CTA */
    .cta-box {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }
    .cta-box h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
    }
    .cta-box h2 span {
        color: var(--orange-primary);
    }
    .cta-box p {
        color: var(--gray-400);
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .cta-box .btn-outline {
        border-color: var(--gray-600);
        color: var(--gray-400);
    }
    .cta-box .btn-outline:hover {
        background: var(--orange-primary);
        color: white;
        border-color: var(--orange-primary);
    }

    /* Audience Cards */
    .audience-card {
        background: var(--white);
        padding: 32px;
        border-radius: 20px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
        text-align: center;
    }
    .audience-card:hover {
        transform: translateY(-8px);
        border-color: var(--orange-primary);
        box-shadow: 0 20px 35px rgba(249,115,22,0.12);
    }
    .audience-card .audience-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }
    .audience-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 12px;
    }
    .audience-card p {
        color: var(--gray-600);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Adoption Ladder */
    .adoption-step {
        text-align: center;
        padding: 24px 16px;
        background: var(--gray-100);
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }
    .adoption-step:hover {
        transform: translateY(-5px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .adoption-step .step-number {
        display: inline-block;
        background: var(--orange-primary);
        color: white;
        padding: 2px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .adoption-step .step-icon {
        font-size: 2.5rem;
        color: var(--orange-primary);
        margin-bottom: 10px;
    }
    .adoption-step h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 6px;
    }
    .adoption-step p {
        font-size: 0.8rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }

    /* Measurement Grid */
    .measure-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .measure-item {
        background: var(--gray-100);
        padding: 24px;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        text-align: center;
        transition: all 0.3s;
    }
    .measure-item:hover {
        border-color: var(--orange-primary);
        transform: translateY(-4px);
    }
    .measure-item i {
        font-size: 2rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .measure-item h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 6px;
    }
    .measure-item p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }

    /* Integration Tags */
    .integration-tags {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .integration-tags span {
        background: var(--white);
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        color: var(--gray-700);
        border: 1px solid var(--gray-200);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .platform-modules {
            grid-template-columns: repeat(2, 1fr);
        }
        .module-featured {
            grid-column: span 2;
        }
        .architecture-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .offers-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .measure-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .page-hero .container {
            flex-direction: column;
            text-align: center;
        }
        .page-hero-description {
            margin-left: auto;
            margin-right: auto;
        }
        .page-hero-buttons {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .page-hero h1 {
            font-size: 2rem;
        }
        .platform-modules {
            grid-template-columns: 1fr;
        }
        .module-featured {
            grid-column: span 1;
        }
        .module-featured-content {
            flex-direction: column;
            text-align: center;
        }
        .module-featured-features {
            justify-content: center;
        }
        .architecture-grid {
            grid-template-columns: 1fr;
        }
        .offers-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 30px auto 0;
        }
        .why-grid {
            grid-template-columns: 1fr;
        }
        .measure-grid {
            grid-template-columns: 1fr;
        }
        .final-cta .cta-box h2 {
            font-size: 1.8rem;
        }
        .final-cta .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        .page-hero .platform-visual-placeholder {
            padding: 30px;
        }
        .integration-tags {
            gap: 12px;
        }
        .integration-tags span {
            font-size: 0.8rem;
            padding: 6px 14px;
        }
        .adoption-ladder-grid {
            grid-template-columns: 1fr !important;
            max-width: 400px;
            margin: 0 auto;
        }
        .audience-grid {
            grid-template-columns: 1fr !important;
            max-width: 400px;
            margin: 0 auto;
        }
    }

    @media (max-width: 480px) {
        .page-hero h1 {
            font-size: 1.6rem;
        }
        .page-hero .platform-visual-placeholder {
            padding: 20px;
        }
        .page-hero .platform-visual-placeholder i {
            font-size: 3rem;
        }
    }
    
    
    
        /* ========================================
       DIGITAL ASSET FOUNDATION - UPDATED STYLES
       ======================================== */
    
    /* Hero Section */
    .digital-hero {
        background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
        color: var(--white);
        padding: 60px 0 50px;
        position: relative;
        overflow: hidden;
    }
    .digital-hero::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 50%;
        height: 150%;
        background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
        pointer-events: none;
    }
    .digital-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }
    .digital-hero .page-breadcrumb {
        margin-bottom: 16px;
    }
    .digital-hero .page-breadcrumb a {
        color: var(--orange-primary);
        text-decoration: none;
    }
    .digital-hero .page-breadcrumb i {
        color: var(--gray-600);
        margin: 0 8px;
        font-size: 0.6rem;
    }
    .digital-hero .badge-top {
        display: inline-block;
        background: rgba(249,115,22,0.15);
        color: var(--orange-primary);
        padding: 4px 16px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 14px;
        border: 1px solid rgba(249,115,22,0.2);
    }
    .digital-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .digital-hero h1 span {
        color: var(--orange-primary);
    }
    .digital-hero .hero-description {
        font-size: 1rem;
        color: var(--gray-400);
        max-width: 600px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .digital-hero .hero-cta-group {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .digital-hero .hero-visual {
        flex: 0.8;
        min-width: 250px;
        background: rgba(255,255,255,0.03);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(255,255,255,0.06);
        text-align: center;
    }
    .digital-hero .hero-visual i {
        font-size: 4rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .digital-hero .hero-visual p {
        color: var(--gray-400);
        font-size: 0.85rem;
    }

    /* Overview Stats */
    .digital-overview {
        background: var(--white);
        padding: 60px 0;
    }
    .overview-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .stat-item {
        text-align: center;
        padding: 24px 16px;
        background: var(--gray-100);
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }
    .stat-item:hover {
        transform: translateY(-4px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .stat-item .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--orange-primary);
        margin-bottom: 6px;
    }
    .stat-item .stat-label {
        font-size: 0.9rem;
        color: var(--gray-700);
        font-weight: 500;
    }

    /* Digital Modules */
    .digital-modules {
        background: var(--gray-100);
        padding: 60px 0;
    }
    .modules-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 30px;
    }
    .digital-card {
        background: var(--white);
        border-radius: 20px;
        padding: 28px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .digital-card:hover {
        transform: translateY(-6px);
        border-color: var(--orange-primary);
        box-shadow: 0 16px 32px rgba(0,0,0,0.06);
    }
    .digital-card .module-icon {
        width: 52px;
        height: 52px;
        background: var(--orange-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
    .digital-card .module-icon i {
        font-size: 1.5rem;
        color: var(--orange-primary);
    }
    .digital-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 10px;
    }
    .digital-card p {
        color: var(--gray-600);
        line-height: 1.5;
        margin-bottom: 14px;
        flex: 1;
        font-size: 0.9rem;
    }
    .digital-card .module-features {
        list-style: none;
        padding: 0;
        margin-top: 4px;
    }
    .digital-card .module-features li {
        padding: 4px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        color: var(--gray-700);
    }
    .digital-card .module-features li i {
        color: var(--orange-primary);
        font-size: 0.6rem;
    }

    /* Data Pipeline */
    .data-pipeline {
        background: var(--white);
        padding: 60px 0;
    }
    .pipeline-steps {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 30px;
    }
    .pipeline-step {
        text-align: center;
        padding: 20px 18px;
        background: var(--gray-100);
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        min-width: 160px;
        flex: 1;
        transition: all 0.3s;
    }
    .pipeline-step:hover {
        transform: translateY(-4px);
        border-color: var(--orange-primary);
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }
    .pipeline-step .step-number {
        display: inline-block;
        background: var(--orange-primary);
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 2px 10px;
        border-radius: 20px;
        margin-bottom: 8px;
    }
    .pipeline-step .step-icon i {
        font-size: 2rem;
        color: var(--orange-primary);
        margin-bottom: 8px;
        display: block;
    }
    .pipeline-step h4 {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 4px;
    }
    .pipeline-step p {
        font-size: 0.75rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }
    .pipeline-arrow i {
        font-size: 1.2rem;
        color: var(--orange-primary);
    }

    /* Why Digital Assets Matter */
    .why-digital {
        background: var(--orange-light);
        padding: 60px 0;
    }
    .value-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .value-card {
        text-align: center;
        padding: 24px 16px;
        background: var(--white);
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }
    .value-card:hover {
        transform: translateY(-4px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .value-card i {
        font-size: 2.2rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .value-card h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 6px;
    }
    .value-card p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }

    /* Getting Started */
    .getting-started {
        background: var(--gray-100);
        padding: 60px 0;
    }
    .getting-started-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .getting-started-card {
        background: var(--white);
        padding: 24px 20px;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
        text-align: center;
    }
    .getting-started-card:hover {
        transform: translateY(-6px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .getting-started-card .gs-icon {
        width: 56px;
        height: 56px;
        background: var(--orange-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        transition: all 0.3s;
    }
    .getting-started-card:hover .gs-icon {
        background: var(--orange-primary);
    }
    .getting-started-card:hover .gs-icon i {
        color: white;
    }
    .getting-started-card .gs-icon i {
        font-size: 1.5rem;
        color: var(--orange-primary);
        transition: all 0.3s;
    }
    .getting-started-card h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .getting-started-card p {
        font-size: 0.85rem;
        color: var(--gray-600);
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .getting-started-card .gs-features {
        list-style: none;
        text-align: left;
        padding: 0;
        margin-bottom: 14px;
    }
    .getting-started-card .gs-features li {
        padding: 3px 0;
        font-size: 0.8rem;
        color: var(--gray-700);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .getting-started-card .gs-features li i {
        color: var(--orange-primary);
        font-size: 0.6rem;
    }
    .getting-started-card .read-more-link {
        font-size: 0.85rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 0;
        background: linear-gradient(160deg, var(--black-dark) 0%, #333333 100%);
        text-align: center;
    }
    .final-cta .cta-content h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 16px;
    }
    .final-cta .cta-content h2 span {
        color: var(--orange-primary);
    }
    .final-cta .cta-content p {
        color: var(--gray-400);
        font-size: 1rem;
        max-width: 700px;
        margin: 0 auto 28px;
        line-height: 1.6;
    }
    .final-cta .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .final-cta .cta-buttons .btn-outline {
        border-color: rgba(255,255,255,0.2);
        color: var(--white);
    }
    .final-cta .cta-buttons .btn-outline:hover {
        background: var(--orange-primary);
        border-color: var(--orange-primary);
        color: white;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .section-badge {
        display: inline-block;
        background: var(--orange-light);
        color: var(--orange-primary);
        padding: 4px 14px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .section-title span {
        color: var(--orange-primary);
    }
    .section-subtitle {
        color: var(--gray-600);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .digital-hero .container {
            flex-direction: column;
            text-align: center;
        }
        .digital-hero .hero-description {
            margin-left: auto;
            margin-right: auto;
        }
        .digital-hero .hero-cta-group {
            justify-content: center;
        }
        .modules-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .getting-started-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .value-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .overview-stats {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .pipeline-steps {
            flex-direction: column;
            max-width: 400px;
            margin: 30px auto 0;
        }
        .pipeline-arrow {
            transform: rotate(90deg);
        }
    }

    @media (max-width: 768px) {
        .digital-hero h1 {
            font-size: 2rem;
        }
        .modules-grid {
            grid-template-columns: 1fr;
        }
        .getting-started-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }
        .value-grid {
            grid-template-columns: 1fr;
        }
        .overview-stats {
            grid-template-columns: 1fr 1fr;
        }
        .stat-item .stat-number {
            font-size: 2rem;
        }
        .final-cta .cta-content h2 {
            font-size: 1.6rem;
        }
        .final-cta .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        .digital-hero .hero-visual {
            padding: 24px;
        }
        .digital-hero .hero-visual i {
            font-size: 3rem;
        }
    }

    @media (max-width: 480px) {
        .digital-hero h1 {
            font-size: 1.6rem;
        }
        .overview-stats {
            grid-template-columns: 1fr;
        }
        .pipeline-step {
            padding: 16px;
        }
    }
    
    
      /* ========================================
       EQUIPMENT OEM SOLUTIONS - ENHANCED STYLES
       ======================================== */
    
    /* Hero Section */
    .oem-hero {
        background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
        color: var(--white);
        padding: 60px 0 50px;
        position: relative;
        overflow: hidden;
    }
    .oem-hero::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 50%;
        height: 150%;
        background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
        pointer-events: none;
    }
    .oem-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }
    .oem-hero .page-breadcrumb {
        margin-bottom: 16px;
    }
    .oem-hero .page-breadcrumb a {
        color: var(--orange-primary);
        text-decoration: none;
    }
    .oem-hero .page-breadcrumb i {
        color: var(--gray-600);
        margin: 0 8px;
        font-size: 0.6rem;
    }
    .oem-hero .badge-top {
        display: inline-block;
        background: rgba(249,115,22,0.15);
        color: var(--orange-primary);
        padding: 4px 16px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 14px;
        border: 1px solid rgba(249,115,22,0.2);
    }
    .oem-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .oem-hero h1 span {
        color: var(--orange-primary);
    }
    .oem-hero .hero-description {
        font-size: 1rem;
        color: var(--gray-400);
        max-width: 600px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .oem-hero .hero-cta-group {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .oem-hero .hero-visual {
        flex: 0.8;
        min-width: 250px;
        background: rgba(255,255,255,0.03);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(255,255,255,0.06);
        text-align: center;
    }
    .oem-hero .hero-visual i {
        font-size: 4rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .oem-hero .hero-visual p {
        color: var(--gray-400);
        font-size: 0.85rem;
    }

    /* OEM Stats Bar */
    .oem-stats-bar {
        background: var(--white);
        padding: 30px 0;
        border-bottom: 1px solid var(--gray-200);
    }
    .oem-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }
    .oem-stat-item .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--orange-primary);
        display: block;
        line-height: 1.2;
    }
    .oem-stat-item .stat-label {
        font-size: 0.85rem;
        color: var(--gray-600);
    }

    /* Problem / Solution Section - Enhanced */
    .oem-problem-solution {
        padding: 60px 0;
        background: var(--gray-100);
    }
    .problem-solution-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 30px;
    }
    .problem-box,
    .solution-box {
        padding: 36px 32px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    .problem-box {
        background: var(--white);
        border: 1px solid var(--gray-200);
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
    .problem-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .solution-box {
        background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
        color: var(--white);
        box-shadow: 0 4px 20px rgba(249,115,22,0.2);
    }
    .solution-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(249,115,22,0.3);
    }
    .problem-box h3,
    .solution-box h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .problem-box h3 i {
        color: #ff6b6b;
    }
    .solution-box h3 i {
        color: white;
    }
    .problem-box ul,
    .solution-box ul {
        list-style: none;
        padding: 0;
    }
    .problem-box ul li,
    .solution-box ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .problem-box ul li:last-child,
    .solution-box ul li:last-child {
        border-bottom: none;
    }
    .problem-box ul li i {
        color: #ff6b6b;
        width: 20px;
        flex-shrink: 0;
    }
    .solution-box ul li i {
        color: white;
        width: 20px;
        flex-shrink: 0;
    }
    .solution-box ul li {
        color: rgba(255,255,255,0.9);
    }

    /* Use Case Cards - Enhanced Grid */
    .oem-usecases {
        padding: 60px 0;
        background: var(--white);
    }
    .usecase-grid-enhanced {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 30px;
    }
    .usecase-card-enhanced {
        background: var(--white);
        border-radius: 20px;
        padding: 28px;
        border: 1px solid var(--gray-200);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .usecase-card-enhanced:hover {
        transform: translateY(-8px);
        border-color: var(--orange-primary);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .usecase-card-enhanced .card-number {
        position: absolute;
        top: -12px;
        right: 20px;
        background: var(--orange-primary);
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 2px 12px;
        border-radius: 20px;
        letter-spacing: 0.5px;
    }
    .usecase-card-enhanced .card-icon {
        width: 52px;
        height: 52px;
        background: var(--orange-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
    .usecase-card-enhanced .card-icon i {
        font-size: 1.5rem;
        color: var(--orange-primary);
    }
    .usecase-card-enhanced .card-meta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    .usecase-card-enhanced .card-meta span {
        font-size: 0.6rem;
        padding: 2px 10px;
        border-radius: 20px;
        background: var(--gray-100);
        color: var(--gray-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .usecase-card-enhanced h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 10px;
    }
    .usecase-card-enhanced p {
        font-size: 0.9rem;
        color: var(--gray-600);
        line-height: 1.6;
        margin-bottom: 16px;
        flex: 1;
    }
    .usecase-card-enhanced .read-more-link {
        margin-top: auto;
    }

    /* Business Impact - Enhanced */
    .oem-impact {
        padding: 60px 0;
        background: var(--orange-light);
    }
    .impact-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .impact-card {
        text-align: center;
        padding: 28px 20px;
        background: var(--white);
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }
    .impact-card:hover {
        transform: translateY(-5px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .impact-card i {
        font-size: 2.2rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .impact-card .impact-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--orange-primary);
        display: block;
    }
    .impact-card h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin: 6px 0 4px;
    }
    .impact-card p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }

    /* Getting Started - Enhanced */
    .oem-getting-started {
        padding: 60px 0;
        background: var(--gray-100);
    }
    .getting-started-grid-enhanced {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .gs-card-enhanced {
        background: var(--white);
        padding: 24px 20px;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
        text-align: center;
    }
    .gs-card-enhanced:hover {
        transform: translateY(-6px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .gs-card-enhanced .gs-icon {
        width: 56px;
        height: 56px;
        background: var(--orange-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        transition: all 0.3s;
    }
    .gs-card-enhanced:hover .gs-icon {
        background: var(--orange-primary);
    }
    .gs-card-enhanced:hover .gs-icon i {
        color: white;
    }
    .gs-card-enhanced .gs-icon i {
        font-size: 1.5rem;
        color: var(--orange-primary);
        transition: all 0.3s;
    }
    .gs-card-enhanced h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .gs-card-enhanced p {
        font-size: 0.85rem;
        color: var(--gray-600);
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .gs-card-enhanced .gs-features {
        list-style: none;
        text-align: left;
        padding: 0;
        margin-bottom: 14px;
    }
    .gs-card-enhanced .gs-features li {
        padding: 3px 0;
        font-size: 0.8rem;
        color: var(--gray-700);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .gs-card-enhanced .gs-features li i {
        color: var(--orange-primary);
        font-size: 0.6rem;
    }
    .gs-card-enhanced .read-more-link {
        font-size: 0.85rem;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .section-badge {
        display: inline-block;
        background: var(--orange-light);
        color: var(--orange-primary);
        padding: 4px 14px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .section-title span {
        color: var(--orange-primary);
    }
    .section-subtitle {
        color: var(--gray-600);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .oem-hero .container {
            flex-direction: column;
            text-align: center;
        }
        .oem-hero .hero-description {
            margin-left: auto;
            margin-right: auto;
        }
        .oem-hero .hero-cta-group {
            justify-content: center;
        }
        .usecase-grid-enhanced {
            grid-template-columns: repeat(2, 1fr);
        }
        .getting-started-grid-enhanced {
            grid-template-columns: repeat(2, 1fr);
        }
        .oem-stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .impact-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .oem-hero h1 {
            font-size: 2rem;
        }
        .problem-solution-grid {
            grid-template-columns: 1fr;
        }
        .usecase-grid-enhanced {
            grid-template-columns: 1fr;
        }
        .getting-started-grid-enhanced {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }
        .oem-stats-grid {
            grid-template-columns: 1fr 1fr;
        }
        .impact-grid {
            grid-template-columns: 1fr;
        }
        .oem-hero .hero-visual {
            padding: 24px;
        }
        .oem-hero .hero-visual i {
            font-size: 3rem;
        }
        .oem-stat-item .stat-number {
            font-size: 1.8rem;
        }
        .section-title {
            font-size: 1.8rem;
        }
        .final-cta .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .oem-hero h1 {
            font-size: 1.6rem;
        }
        .oem-stats-grid {
            grid-template-columns: 1fr;
        }
        .problem-box,
        .solution-box {
            padding: 24px 20px;
        }
        .usecase-card-enhanced {
            padding: 20px;
        }
        .impact-card {
            padding: 20px;
        }
        .gs-card-enhanced {
            padding: 18px 16px;
        }
    }
    
       /* ========================================
       OWNER-OPERATOR SOLUTIONS - ENHANCED STYLES
       ======================================== */
    
    /* Hero Section */
    .oo-hero {
        background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
        color: var(--white);
        padding: 60px 0 50px;
        position: relative;
        overflow: hidden;
    }
    .oo-hero::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 50%;
        height: 150%;
        background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
        pointer-events: none;
    }
    .oo-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }
    .oo-hero .page-breadcrumb {
        margin-bottom: 16px;
    }
    .oo-hero .page-breadcrumb a {
        color: var(--orange-primary);
        text-decoration: none;
    }
    .oo-hero .page-breadcrumb i {
        color: var(--gray-600);
        margin: 0 8px;
        font-size: 0.6rem;
    }
    .oo-hero .badge-top {
        display: inline-block;
        background: rgba(249,115,22,0.15);
        color: var(--orange-primary);
        padding: 4px 16px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 14px;
        border: 1px solid rgba(249,115,22,0.2);
    }
    .oo-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .oo-hero h1 span {
        color: var(--orange-primary);
    }
    .oo-hero .hero-description {
        font-size: 1rem;
        color: var(--gray-400);
        max-width: 600px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .oo-hero .hero-cta-group {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .oo-hero .hero-visual {
        flex: 0.8;
        min-width: 250px;
        background: rgba(255,255,255,0.03);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(255,255,255,0.06);
        text-align: center;
    }
    .oo-hero .hero-visual i {
        font-size: 4rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .oo-hero .hero-visual p {
        color: var(--gray-400);
        font-size: 0.85rem;
    }

    /* Stats Bar */
    .oo-stats-bar {
        background: var(--white);
        padding: 30px 0;
        border-bottom: 1px solid var(--gray-200);
    }
    .oo-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }
    .oo-stat-item .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--orange-primary);
        display: block;
        line-height: 1.2;
    }
    .oo-stat-item .stat-label {
        font-size: 0.85rem;
        color: var(--gray-600);
    }

    /* Problem / Solution Section */
    .oo-problem-solution {
        padding: 60px 0;
        background: var(--gray-100);
    }
    .problem-solution-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 30px;
    }
    .problem-box,
    .solution-box {
        padding: 36px 32px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    .problem-box {
        background: var(--white);
        border: 1px solid var(--gray-200);
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
    .problem-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .solution-box {
        background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
        color: var(--white);
        box-shadow: 0 4px 20px rgba(249,115,22,0.2);
    }
    .solution-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(249,115,22,0.3);
    }
    .problem-box h3,
    .solution-box h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .problem-box h3 i {
        color: #ff6b6b;
    }
    .solution-box h3 i {
        color: white;
    }
    .problem-box ul,
    .solution-box ul {
        list-style: none;
        padding: 0;
    }
    .problem-box ul li,
    .solution-box ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .problem-box ul li:last-child,
    .solution-box ul li:last-child {
        border-bottom: none;
    }
    .problem-box ul li i {
        color: #ff6b6b;
        width: 20px;
        flex-shrink: 0;
    }
    .solution-box ul li i {
        color: white;
        width: 20px;
        flex-shrink: 0;
    }
    .solution-box ul li {
        color: rgba(255,255,255,0.9);
    }

    /* Use Case Cards */
    .oo-usecases {
        padding: 60px 0;
        background: var(--white);
    }
    .usecase-grid-enhanced {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 30px;
    }
    .usecase-card-enhanced {
        background: var(--white);
        border-radius: 20px;
        padding: 28px;
        border: 1px solid var(--gray-200);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .usecase-card-enhanced:hover {
        transform: translateY(-8px);
        border-color: var(--orange-primary);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .usecase-card-enhanced .card-number {
        position: absolute;
        top: -12px;
        right: 20px;
        background: var(--orange-primary);
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 2px 12px;
        border-radius: 20px;
        letter-spacing: 0.5px;
    }
    .usecase-card-enhanced .card-icon {
        width: 52px;
        height: 52px;
        background: var(--orange-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
    .usecase-card-enhanced .card-icon i {
        font-size: 1.5rem;
        color: var(--orange-primary);
    }
    .usecase-card-enhanced .card-meta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    .usecase-card-enhanced .card-meta span {
        font-size: 0.6rem;
        padding: 2px 10px;
        border-radius: 20px;
        background: var(--gray-100);
        color: var(--gray-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .usecase-card-enhanced h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 10px;
    }
    .usecase-card-enhanced p {
        font-size: 0.9rem;
        color: var(--gray-600);
        line-height: 1.6;
        margin-bottom: 16px;
        flex: 1;
    }
    .usecase-card-enhanced .read-more-link {
        margin-top: auto;
    }

    /* Business Impact */
    .oo-impact {
        padding: 60px 0;
        background: var(--orange-light);
    }
    .impact-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .impact-card {
        text-align: center;
        padding: 28px 20px;
        background: var(--white);
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }
    .impact-card:hover {
        transform: translateY(-5px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .impact-card i {
        font-size: 2.2rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .impact-card .impact-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--orange-primary);
        display: block;
    }
    .impact-card h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin: 6px 0 4px;
    }
    .impact-card p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }

    /* Getting Started */
    .oo-getting-started {
        padding: 60px 0;
        background: var(--gray-100);
    }
    .getting-started-grid-enhanced {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .gs-card-enhanced {
        background: var(--white);
        padding: 24px 20px;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
        text-align: center;
    }
    .gs-card-enhanced:hover {
        transform: translateY(-6px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .gs-card-enhanced .gs-icon {
        width: 56px;
        height: 56px;
        background: var(--orange-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        transition: all 0.3s;
    }
    .gs-card-enhanced:hover .gs-icon {
        background: var(--orange-primary);
    }
    .gs-card-enhanced:hover .gs-icon i {
        color: white;
    }
    .gs-card-enhanced .gs-icon i {
        font-size: 1.5rem;
        color: var(--orange-primary);
        transition: all 0.3s;
    }
    .gs-card-enhanced h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .gs-card-enhanced p {
        font-size: 0.85rem;
        color: var(--gray-600);
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .gs-card-enhanced .gs-features {
        list-style: none;
        text-align: left;
        padding: 0;
        margin-bottom: 14px;
    }
    .gs-card-enhanced .gs-features li {
        padding: 3px 0;
        font-size: 0.8rem;
        color: var(--gray-700);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .gs-card-enhanced .gs-features li i {
        color: var(--orange-primary);
        font-size: 0.6rem;
    }
    .gs-card-enhanced .read-more-link {
        font-size: 0.85rem;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .section-badge {
        display: inline-block;
        background: var(--orange-light);
        color: var(--orange-primary);
        padding: 4px 14px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .section-title span {
        color: var(--orange-primary);
    }
    .section-subtitle {
        color: var(--gray-600);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .oo-hero .container {
            flex-direction: column;
            text-align: center;
        }
        .oo-hero .hero-description {
            margin-left: auto;
            margin-right: auto;
        }
        .oo-hero .hero-cta-group {
            justify-content: center;
        }
        .usecase-grid-enhanced {
            grid-template-columns: repeat(2, 1fr);
        }
        .getting-started-grid-enhanced {
            grid-template-columns: repeat(2, 1fr);
        }
        .oo-stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .impact-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .oo-hero h1 {
            font-size: 2rem;
        }
        .problem-solution-grid {
            grid-template-columns: 1fr;
        }
        .usecase-grid-enhanced {
            grid-template-columns: 1fr;
        }
        .getting-started-grid-enhanced {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }
        .oo-stats-grid {
            grid-template-columns: 1fr 1fr;
        }
        .impact-grid {
            grid-template-columns: 1fr;
        }
        .oo-hero .hero-visual {
            padding: 24px;
        }
        .oo-hero .hero-visual i {
            font-size: 3rem;
        }
        .oo-stat-item .stat-number {
            font-size: 1.8rem;
        }
        .section-title {
            font-size: 1.8rem;
        }
        .final-cta .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .oo-hero h1 {
            font-size: 1.6rem;
        }
        .oo-stats-grid {
            grid-template-columns: 1fr;
        }
        .problem-box,
        .solution-box {
            padding: 24px 20px;
        }
        .usecase-card-enhanced {
            padding: 20px;
        }
        .impact-card {
            padding: 20px;
        }
        .gs-card-enhanced {
            padding: 18px 16px;
        }
    }
    
    
    
    /* ========================================
       DEALERS & SERVICE NETWORKS - ENHANCED STYLES
       ======================================== */
    
    /* Hero Section */
    .ds-hero {
        background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
        color: var(--white);
        padding: 60px 0 50px;
        position: relative;
        overflow: hidden;
    }
    .ds-hero::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 50%;
        height: 150%;
        background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
        pointer-events: none;
    }
    .ds-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }
    .ds-hero .page-breadcrumb {
        margin-bottom: 16px;
    }
    .ds-hero .page-breadcrumb a {
        color: var(--orange-primary);
        text-decoration: none;
    }
    .ds-hero .page-breadcrumb i {
        color: var(--gray-600);
        margin: 0 8px;
        font-size: 0.6rem;
    }
    .ds-hero .badge-top {
        display: inline-block;
        background: rgba(249,115,22,0.15);
        color: var(--orange-primary);
        padding: 4px 16px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 14px;
        border: 1px solid rgba(249,115,22,0.2);
    }
    .ds-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .ds-hero h1 span {
        color: var(--orange-primary);
    }
    .ds-hero .hero-description {
        font-size: 1rem;
        color: var(--gray-400);
        max-width: 600px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .ds-hero .hero-cta-group {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .ds-hero .hero-visual {
        flex: 0.8;
        min-width: 250px;
        background: rgba(255,255,255,0.03);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(255,255,255,0.06);
        text-align: center;
    }
    .ds-hero .hero-visual i {
        font-size: 4rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .ds-hero .hero-visual p {
        color: var(--gray-400);
        font-size: 0.85rem;
    }

    /* Stats Bar */
    .ds-stats-bar {
        background: var(--white);
        padding: 30px 0;
        border-bottom: 1px solid var(--gray-200);
    }
    .ds-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }
    .ds-stat-item .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--orange-primary);
        display: block;
        line-height: 1.2;
    }
    .ds-stat-item .stat-label {
        font-size: 0.85rem;
        color: var(--gray-600);
    }

    /* Problem / Solution Section */
    .ds-problem-solution {
        padding: 60px 0;
        background: var(--gray-100);
    }
    .problem-solution-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 30px;
    }
    .problem-box,
    .solution-box {
        padding: 36px 32px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    .problem-box {
        background: var(--white);
        border: 1px solid var(--gray-200);
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
    .problem-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .solution-box {
        background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
        color: var(--white);
        box-shadow: 0 4px 20px rgba(249,115,22,0.2);
    }
    .solution-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(249,115,22,0.3);
    }
    .problem-box h3,
    .solution-box h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .problem-box h3 i {
        color: #ff6b6b;
    }
    .solution-box h3 i {
        color: white;
    }
    .problem-box ul,
    .solution-box ul {
        list-style: none;
        padding: 0;
    }
    .problem-box ul li,
    .solution-box ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .problem-box ul li:last-child,
    .solution-box ul li:last-child {
        border-bottom: none;
    }
    .problem-box ul li i {
        color: #ff6b6b;
        width: 20px;
        flex-shrink: 0;
    }
    .solution-box ul li i {
        color: white;
        width: 20px;
        flex-shrink: 0;
    }
    .solution-box ul li {
        color: rgba(255,255,255,0.9);
    }

    /* Use Case Cards */
    .ds-usecases {
        padding: 60px 0;
        background: var(--white);
    }
    .usecase-grid-enhanced {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 30px;
    }
    .usecase-card-enhanced {
        background: var(--white);
        border-radius: 20px;
        padding: 28px;
        border: 1px solid var(--gray-200);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .usecase-card-enhanced:hover {
        transform: translateY(-8px);
        border-color: var(--orange-primary);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .usecase-card-enhanced .card-number {
        position: absolute;
        top: -12px;
        right: 20px;
        background: var(--orange-primary);
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 2px 12px;
        border-radius: 20px;
        letter-spacing: 0.5px;
    }
    .usecase-card-enhanced .card-icon {
        width: 52px;
        height: 52px;
        background: var(--orange-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
    .usecase-card-enhanced .card-icon i {
        font-size: 1.5rem;
        color: var(--orange-primary);
    }
    .usecase-card-enhanced .card-meta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    .usecase-card-enhanced .card-meta span {
        font-size: 0.6rem;
        padding: 2px 10px;
        border-radius: 20px;
        background: var(--gray-100);
        color: var(--gray-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .usecase-card-enhanced h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 10px;
    }
    .usecase-card-enhanced p {
        font-size: 0.9rem;
        color: var(--gray-600);
        line-height: 1.6;
        margin-bottom: 16px;
        flex: 1;
    }
    .usecase-card-enhanced .read-more-link {
        margin-top: auto;
    }

    /* Business Impact */
    .ds-impact {
        padding: 60px 0;
        background: var(--orange-light);
    }
    .impact-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .impact-card {
        text-align: center;
        padding: 28px 20px;
        background: var(--white);
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }
    .impact-card:hover {
        transform: translateY(-5px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .impact-card i {
        font-size: 2.2rem;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }
    .impact-card .impact-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--orange-primary);
        display: block;
    }
    .impact-card h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin: 6px 0 4px;
    }
    .impact-card p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 0;
    }

    /* Getting Started */
    .ds-getting-started {
        padding: 60px 0;
        background: var(--gray-100);
    }
    .getting-started-grid-enhanced {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 30px;
    }
    .gs-card-enhanced {
        background: var(--white);
        padding: 24px 20px;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
        text-align: center;
    }
    .gs-card-enhanced:hover {
        transform: translateY(-6px);
        border-color: var(--orange-primary);
        box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    }
    .gs-card-enhanced .gs-icon {
        width: 56px;
        height: 56px;
        background: var(--orange-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        transition: all 0.3s;
    }
    .gs-card-enhanced:hover .gs-icon {
        background: var(--orange-primary);
    }
    .gs-card-enhanced:hover .gs-icon i {
        color: white;
    }
    .gs-card-enhanced .gs-icon i {
        font-size: 1.5rem;
        color: var(--orange-primary);
        transition: all 0.3s;
    }
    .gs-card-enhanced h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .gs-card-enhanced p {
        font-size: 0.85rem;
        color: var(--gray-600);
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .gs-card-enhanced .gs-features {
        list-style: none;
        text-align: left;
        padding: 0;
        margin-bottom: 14px;
    }
    .gs-card-enhanced .gs-features li {
        padding: 3px 0;
        font-size: 0.8rem;
        color: var(--gray-700);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .gs-card-enhanced .gs-features li i {
        color: var(--orange-primary);
        font-size: 0.6rem;
    }
    .gs-card-enhanced .read-more-link {
        font-size: 0.85rem;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .section-badge {
        display: inline-block;
        background: var(--orange-light);
        color: var(--orange-primary);
        padding: 4px 14px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 8px;
    }
    .section-title span {
        color: var(--orange-primary);
    }
    .section-subtitle {
        color: var(--gray-600);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .ds-hero .container {
            flex-direction: column;
            text-align: center;
        }
        .ds-hero .hero-description {
            margin-left: auto;
            margin-right: auto;
        }
        .ds-hero .hero-cta-group {
            justify-content: center;
        }
        .usecase-grid-enhanced {
            grid-template-columns: repeat(2, 1fr);
        }
        .getting-started-grid-enhanced {
            grid-template-columns: repeat(2, 1fr);
        }
        .ds-stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .impact-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .ds-hero h1 {
            font-size: 2rem;
        }
        .problem-solution-grid {
            grid-template-columns: 1fr;
        }
        .usecase-grid-enhanced {
            grid-template-columns: 1fr;
        }
        .getting-started-grid-enhanced {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }
        .ds-stats-grid {
            grid-template-columns: 1fr 1fr;
        }
        .impact-grid {
            grid-template-columns: 1fr;
        }
        .ds-hero .hero-visual {
            padding: 24px;
        }
        .ds-hero .hero-visual i {
            font-size: 3rem;
        }
        .ds-stat-item .stat-number {
            font-size: 1.8rem;
        }
        .section-title {
            font-size: 1.8rem;
        }
        .final-cta .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .ds-hero h1 {
            font-size: 1.6rem;
        }
        .ds-stats-grid {
            grid-template-columns: 1fr;
        }
        .problem-box,
        .solution-box {
            padding: 24px 20px;
        }
        .usecase-card-enhanced {
            padding: 20px;
        }
        .impact-card {
            padding: 20px;
        }
        .gs-card-enhanced {
            padding: 18px 16px;
        }
    }
    
    /* ========================================
   SOLUTIONS MEGA MENU - THREE PILLARS + GLOBAL
   ======================================== */
.mega-menu-solutions {
    width: 950px;
    max-width: calc(100vw - 40px);
}

.mega-menu-solutions .mega-row {
    grid-template-columns: repeat(4, 1fr);
}

/* Mega Col with Icon */
.mega-col {
    padding: 8px 4px;
}

.mega-col-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.mega-col-icon i {
    font-size: 1.3rem;
    color: var(--orange-primary);
}

.mega-col:hover .mega-col-icon {
    background: var(--orange-primary);
}

.mega-col:hover .mega-col-icon i {
    color: white;
}

.mega-col-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange-light);
}

.mega-col-title span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black-dark);
}

.mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-links li {
    margin-bottom: 8px;
    list-style: none;
}

.mega-menu-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.8rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-links a i {
    font-size: 0.65rem;
    color: var(--orange-primary);
    width: 16px;
}

.mega-menu-links a:hover {
    color: var(--orange-primary);
    transform: translateX(4px);
}

/* ========================================
   GLOBAL PRESENCE COLUMN
   ======================================== */
.mega-col-global {
    background: linear-gradient(145deg, var(--orange-light), #FFF3E6);
    border-radius: 16px;
    padding: 20px 16px !important;
    border: 1px solid rgba(249,115,22,0.15);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-col-global:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 8px 25px rgba(249,115,22,0.1);
    transform: translateY(-3px);
}

.mega-col-global-content {
    text-align: center;
}

.mega-col-global-image {
    font-size: 2.8rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
    display: block;
}

.mega-col-global h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 4px;
}

.mega-col-global p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.mega-col-global-flags {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
}

.mega-col-global-flags span {
    font-size: 1.6rem;
    transition: transform 0.3s;
    cursor: default;
}

.mega-col-global-flags span:hover {
    transform: scale(1.2);
}

.mega-global-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-primary);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.mega-global-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}

.mega-global-btn i {
    font-size: 0.7rem;
}

/* Mega Featured CTA - Bottom Section */
.mega-featured {
    background: linear-gradient(135deg, var(--orange-light), #FFF3E6);
    border-radius: 12px;
    padding: 18px 24px;
    margin-top: 20px;
    border: 1px solid rgba(249,115,22,0.15);
    transition: all 0.3s;
}

.mega-featured:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 4px 15px rgba(249,115,22,0.08);
}

.mega-featured-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mega-featured-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-featured-icon i {
    font-size: 1.4rem;
    color: white;
}

.mega-featured-text {
    flex: 1;
    min-width: 180px;
}

.mega-featured-text h4 {
    color: var(--black-dark);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.mega-featured-text p {
    color: var(--gray-600);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.mega-featured-btn {
    background: var(--orange-primary);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.mega-featured-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .mega-menu-solutions {
        width: 85vw;
        left: 50%;
        transform: translateX(-50%);
    }
    .mega-menu-solutions .mega-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .mega-col-global {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mega-menu-solutions .mega-row {
        grid-template-columns: 1fr;
    }
    .mega-col-global {
        grid-column: span 1;
    }
    .mega-featured-content {
        flex-direction: column;
        text-align: center;
    }
    .mega-featured-text {
        min-width: auto;
    }
}


/* ========================================
   MOBILE RESPONSIVE FIXES
   ======================================== */

/* Hero Section - Mobile Fix */
@media (max-width: 768px) {
    .swiper-slide {
        padding: 30px 20px !important;
        flex-direction: column !important;
        text-align: center !important;
        min-height: auto !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-content p {
        max-width: 100% !important;
        font-size: 0.9rem !important;
    }
    
    .hero-content .btn-primary,
    .hero-content .btn-outline {
        font-size: 0.85rem !important;
        padding: 10px 20px !important;
    }
    
    .hero-content .btn-outline {
        border-width: 1.5px !important;
    }
    
    .hero-image img {
        max-width: 80% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .hero-pagination {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }
    
    .pagination-wrapper {
        padding: 6px 12px !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .pagination-label {
        font-size: 0.65rem !important;
    }
    
    .pagination-item {
        padding: 4px 8px !important;
    }
    
    .explore-3d-wrapper {
        padding: 4px !important;
    }
    
    .explore-3d-button {
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px !important;
        height: 32px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px !important;
    }
}

/* Persona Cards - Mobile Fix */
@media (max-width: 900px) {
    .persona-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 600px) {
    .persona-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .persona-card {
        border-radius: 16px !important;
    }
    
    .persona-card > div:first-child {
        height: 150px !important;
    }
    
    .persona-card > div:first-child > div:first-child {
        font-size: 0.55rem !important;
        padding: 3px 10px !important;
    }
    
    .persona-card > div:first-child > div:last-child {
        font-size: 3.5rem !important;
    }
    
    .persona-card > div:last-child {
        padding: 20px 16px 16px !important;
    }
    
    .persona-card h3 {
        font-size: 1.1rem !important;
    }
    
    .persona-card p {
        font-size: 0.85rem !important;
    }
}

/* Adoption Ladder - Mobile Fix */
@media (max-width: 900px) {
    .steps-container {
        flex-direction: column !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        gap: 20px !important;
    }
    
    .step-card {
        width: 100% !important;
        min-width: auto !important;
        padding: 24px 20px !important;
    }
    
    .step-connector {
        display: none !important;
    }
    
    .step-number {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 0 auto 12px !important;
    }
}

/* Feature Grid - Mobile Fix */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .feature-card {
        padding: 24px 20px !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
}

/* Excellence Section - Mobile Fix */
@media (max-width: 768px) {
    .excellence-wrapper {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .excellence-video {
        width: 100% !important;
        min-width: auto !important;
    }
    
    .excellence-content {
        text-align: center !important;
        min-width: auto !important;
    }
    
    .excellence-features {
        align-items: center !important;
    }
    
    .feature-item {
        max-width: 100% !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .excellence-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .excellence-buttons .btn-primary,
    .excellence-buttons .btn-outline {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
    }
    
    .play-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    .play-btn i {
        font-size: 1.2rem !important;
    }
}

/* Use Case Gallery - Mobile Fix */
@media (max-width: 768px) {
    .usecase-gallery {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .usecase-card {
        border-radius: 16px !important;
    }
    
    .usecase-image {
        height: 140px !important;
        font-size: 2.5rem !important;
    }
}

/* What We Measure - Mobile Fix */
@media (max-width: 768px) {
    .measure-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* Final CTA - Mobile Fix */
@media (max-width: 768px) {
    .cta-box h2 {
        font-size: 1.4rem !important;
    }
    
    .cta-box p {
        font-size: 0.9rem !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
    }
}

/* Integration Tags - Mobile Fix */
@media (max-width: 600px) {
    .integration-tags {
        gap: 10px !important;
    }
    
    .integration-tags span {
        font-size: 0.75rem !important;
        padding: 4px 12px !important;
    }
}

/* CPT Section - Mobile Fix */
@media (max-width: 768px) {
    .cpt-section {
        padding: 30px 20px !important;
        margin: 20px 0 !important;
    }
    
    .cpt-section h2 {
        font-size: 1.4rem !important;
    }
    
    .cpt-section p {
        font-size: 0.9rem !important;
    }
}

/* General Mobile Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 16px !important;
    }
    
    section {
        padding: 40px 0 !important;
    }
    
    .section-header {
        margin-bottom: 30px !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-badge {
        font-size: 0.7rem !important;
        padding: 4px 12px !important;
    }
}

    /* ========================================
   PERSONA CARDS - RESPONSIVE
   ======================================== */

/* Desktop: 3 columns */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile: 1 column - Full width cards */
@media (max-width: 768px) {
    .persona-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .persona-card {
        border-radius: 16px !important;
    }
    
    .persona-card > div:first-child {
        height: 160px !important;
    }
    
    .persona-card > div:first-child > div:first-child {
        font-size: 0.55rem !important;
        padding: 3px 10px !important;
        top: 12px !important;
        left: 12px !important;
    }
    
    .persona-card > div:first-child > div:last-child {
        font-size: 3.5rem !important;
    }
    
    .persona-card > div:last-child {
        padding: 20px 16px 16px !important;
    }
    
    .persona-card h3 {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
    }
    
    /* HIDE DESCRIPTION ON MOBILE */
    .persona-description {
        display: none !important;
    }
    
    .persona-card .read-more-link {
        font-size: 0.85rem !important;
        margin-top: 4px !important;
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    .persona-grid {
        max-width: 100%;
        gap: 16px;
    }
    
    .persona-card > div:first-child {
        height: 130px !important;
    }
    
    .persona-card > div:first-child > div:first-child {
        font-size: 0.5rem !important;
        padding: 2px 8px !important;
    }
    
    .persona-card > div:first-child > div:last-child {
        font-size: 2.8rem !important;
    }
    
    .persona-card > div:last-child {
        padding: 16px 14px 14px !important;
    }
    
    .persona-card h3 {
        font-size: 1rem !important;
    }
    
    .persona-card .read-more-link {
        font-size: 0.8rem !important;
    }
}



    /* ========================================
       PRICING PAGE - UPDATED STYLES
       ======================================== */
    
    /* Hero Section */
    .pricing-hero {
        background: linear-gradient(160deg, var(--black-dark) 0%, #333333 40%, #222222 100%);
        color: var(--white);
        padding: 60px 0 50px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .pricing-hero::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 60%;
        height: 150%;
        background: radial-gradient(ellipse, rgba(249,115,22,0.10) 0%, transparent 70%);
        pointer-events: none;
    }
    .pricing-hero .container {
        position: relative;
        z-index: 2;
    }
    .pricing-hero .page-breadcrumb {
        margin-bottom: 16px;
        font-size: 0.85rem;
        color: var(--gray-400);
    }
    .pricing-hero .page-breadcrumb a {
        color: var(--orange-primary);
        text-decoration: none;
    }
    .pricing-hero .page-breadcrumb i {
        color: var(--gray-600);
        margin: 0 8px;
        font-size: 0.6rem;
    }
    .pricing-hero .badge-top {
        display: inline-block;
        background: rgba(249,115,22,0.15);
        color: var(--orange-primary);
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 16px;
        border: 1px solid rgba(249,115,22,0.2);
    }
    .pricing-hero h1 {
        font-size: 3.2rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f0f4fe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .pricing-hero h1 span {
        background: linear-gradient(135deg, var(--orange-primary), #ff9a44);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .pricing-hero p {
        font-size: 1.05rem;
        color: var(--gray-400);
        max-width: 600px;
        margin: 0 auto 24px;
        line-height: 1.6;
    }
    .pricing-hero .trust-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }
    .pricing-hero .trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--gray-400);
    }
    .pricing-hero .trust-tick {
        width: 18px;
        height: 18px;
        background: rgba(249,115,22,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--orange-primary);
        font-size: 10px;
        font-weight: 700;
    }

    /* Billing Toggle */
    .pricing-toggle-wrapper {
        background: var(--white);
        padding: 20px 0;
        border-bottom: 1px solid var(--gray-200);
        position: sticky;
        top: 80px;
        z-index: 50;
        box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    }
    .pricing-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .pricing-toggle .toggle-label {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--gray-500);
        transition: color 0.3s;
        cursor: pointer;
    }
    .pricing-toggle .toggle-label.active {
        color: var(--black-dark);
    }
    .pricing-toggle .toggle-label .save-badge {
        background: var(--orange-light);
        color: var(--orange-primary);
        font-size: 0.6rem;
        font-weight: 700;
        padding: 2px 10px;
        border-radius: 20px;
        margin-left: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .toggle-switch {
        position: relative;
        width: 56px;
        height: 30px;
        background: var(--gray-200);
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
    }
    .toggle-switch.active {
        background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    }
    .toggle-switch .toggle-dot {
        position: absolute;
        top: 3px;
        left: 3px;
        width: 24px;
        height: 24px;
        background: white;
        border-radius: 50%;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .toggle-switch.active .toggle-dot {
        left: 29px;
    }

    /* Pricing Cards */
    .pricing-section {
        background: var(--gray-100);
        padding: 50px 0 70px;
        position: relative;
    }
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 10px;
    }

    .pricing-card {
        background: var(--white);
        border-radius: 24px;
        padding: 30px 28px 28px;
        border: 1px solid var(--gray-200);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border-color: var(--orange-primary);
    }
    .pricing-card.popular {
        border: 2px solid var(--orange-primary);
        box-shadow: 0 8px 25px rgba(249,115,22,0.12);
        transform: scale(1.02);
    }
    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-8px);
        box-shadow: 0 20px 40px rgba(249,115,22,0.18);
    }

    .pricing-card .popular-badge {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: var(--orange-primary);
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 6px 0;
        text-align: center;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .no-badge {
        height: 28px;
    }

    .pricing-card .plan-icon {
        width: 48px;
        height: 48px;
        background: var(--orange-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
        transition: all 0.3s;
    }
    .pricing-card:hover .plan-icon {
        background: var(--orange-primary);
    }
    .pricing-card:hover .plan-icon i {
        color: white;
    }
    .pricing-card .plan-icon i {
        font-size: 1.4rem;
        color: var(--orange-primary);
        transition: all 0.3s;
    }

    .pricing-card .plan-tier {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--orange-primary);
        margin-bottom: 2px;
    }
    .pricing-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 6px;
    }
    .pricing-card .plan-desc {
        font-size: 0.8rem;
        color: var(--gray-600);
        line-height: 1.5;
        margin-bottom: 16px;
        flex: 1;
        min-height: 50px;
    }

    .pricing-card .price-wrapper {
        padding: 4px 0;
        border-top: 1px solid var(--gray-100);
        border-bottom: 1px solid var(--gray-100);
        margin-bottom: 12px;
    }
    .pricing-card .price-main {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--black-dark);
        line-height: 1;
    }
    .pricing-card .price-main .currency {
        font-size: 1.2rem;
        color: var(--orange-primary);
    }
    .pricing-card .price-main .period {
        font-size: 0.85rem;
        font-weight: 400;
        color: var(--gray-500);
    }
    .pricing-card .price-annual {
        font-size: 0.85rem;
        color: var(--gray-500);
        margin-top: 2px;
    }
    .pricing-card .price-annual strong {
        color: var(--orange-primary);
        font-weight: 700;
    }
    .pricing-card .price-annual.hidden {
        display: none;
    }

    .pricing-card .gmv-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--orange-light);
        border: 1px solid var(--orange-mid);
        border-radius: 100px;
        padding: 3px 10px;
        font-size: 0.7rem;
        color: var(--orange-primary);
        font-weight: 600;
        margin-top: 8px;
    }
    .pricing-card .roi-note {
        margin-top: 8px;
        background: #F0FAF7;
        border-left: 3px solid #2EBD96;
        border-radius: 0 6px 6px 0;
        padding: 6px 10px;
        font-size: 0.7rem;
        color: #1A7A62;
        line-height: 1.5;
    }

    .pricing-card .plan-actions {
        margin-top: 16px;
    }
    .pricing-card .plan-actions .btn-primary,
    .pricing-card .plan-actions .btn-outline {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 10px;
    }
    .pricing-card .plan-actions .btn-outline {
        background: transparent;
        border: 1.5px solid var(--gray-300);
        color: var(--gray-700);
    }
    .pricing-card .plan-actions .btn-outline:hover {
        background: var(--orange-primary);
        border-color: var(--orange-primary);
        color: white;
    }
    .pricing-card .plan-actions .btn-primary {
        background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
        border: none;
        color: white;
    }
    .pricing-card .plan-actions .btn-primary:hover {
        box-shadow: 0 8px 25px rgba(249,115,22,0.35);
        transform: translateY(-2px);
    }
    .pricing-card .cta-pair {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .pricing-card .secondary-link {
        text-align: center;
        margin-top: 8px;
        font-size: 0.7rem;
        color: var(--gray-500);
    }
    .pricing-card .secondary-link a {
        color: var(--orange-primary);
        text-decoration: none;
    }

    .pricing-card .plan-features {
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid var(--gray-100);
    }
    .pricing-card .features-hdr {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gray-500);
        margin-bottom: 10px;
    }
    .pricing-card .feature {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 6px;
        font-size: 0.8rem;
        color: var(--gray-700);
        line-height: 1.4;
    }
    .pricing-card .feature .f-check {
        width: 16px;
        height: 16px;
        background: var(--orange-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
        font-size: 0.55rem;
        color: var(--orange-primary);
        font-weight: 700;
    }
    .pricing-card .feature.dim .f-check {
        background: var(--gray-100);
        color: var(--gray-400);
    }

    .pricing-card .plan-support {
        background: var(--gray-100);
        padding: 8px 16px;
        font-size: 0.7rem;
        color: var(--gray-500);
        text-align: center;
        line-height: 1.5;
        margin-top: 14px;
        border-radius: 10px;
    }
    .pricing-card .plan-support strong {
        color: var(--black-dark);
        font-weight: 600;
    }

    /* GMV Section */
    .gmv-section {
        background: var(--white);
        border-radius: 24px;
        padding: 28px 32px;
        margin: 40px 0 50px;
        border: 1px solid var(--gray-200);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        align-items: center;
    }
    .gmv-left h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 10px;
    }
    .gmv-left p {
        font-size: 0.9rem;
        color: var(--gray-600);
        line-height: 1.7;
        font-weight: 300;
    }
    .gmv-example {
        background: var(--gray-100);
        border-radius: 14px;
        padding: 18px 20px;
        border: 1px solid var(--gray-200);
    }
    .gmv-eg-label {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gray-500);
        margin-bottom: 10px;
    }
    .gmv-row {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.85rem;
    }
    .gmv-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .gmv-lbl {
        color: var(--gray-600);
    }
    .gmv-val {
        font-weight: 700;
        color: var(--black-dark);
    }
    .gmv-val.strike {
        text-decoration: line-through;
        color: var(--gray-400);
        font-weight: 400;
    }
    .gmv-val.green {
        color: #1A7A62;
    }

    /* Comparison Table */
    .comparison-section {
        background: var(--white);
        padding: 50px 0 60px;
    }
    .comparison-table-wrap {
        overflow-x: auto;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        margin-top: 30px;
    }
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--white);
        min-width: 700px;
        font-size: 0.85rem;
    }
    .comparison-table thead {
        background: var(--black-dark);
        color: white;
    }
    .comparison-table th {
        padding: 14px 18px;
        text-align: center;
        font-weight: 600;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .comparison-table th:first-child {
        text-align: left;
        background: transparent;
    }
    .comparison-table th.hl {
        background: var(--orange-primary);
    }
    .comparison-table th .sub-price {
        font-weight: 400;
        font-size: 0.65rem;
        opacity: 0.7;
        display: block;
        margin-top: 2px;
    }
    .comparison-table td {
        padding: 10px 18px;
        text-align: center;
        border-bottom: 1px solid var(--gray-100);
        color: var(--gray-700);
    }
    .comparison-table td:first-child {
        text-align: left;
        font-weight: 500;
        color: var(--black-dark);
    }
    .comparison-table td.hl {
        background: rgba(249,115,22,0.04);
    }
    .comparison-table tr:last-child td {
        border-bottom: none;
    }
    .comparison-table tr:hover td {
        background: var(--gray-50);
    }
    .comparison-table tr:hover td.hl {
        background: rgba(249,115,22,0.07);
    }
    .comparison-table .yes {
        color: var(--orange-primary);
        font-weight: 700;
        font-size: 1.1rem;
    }
    .comparison-table .no {
        color: #CCC;
        font-size: 1.1rem;
    }
    .comparison-table .part {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--gray-600);
    }
    .comparison-table .cat-row td {
        background: var(--gray-100) !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        color: var(--gray-500) !important;
        padding: 6px 18px !important;
    }

    /* FAQ Section */
    .faq-section {
        background: var(--gray-100);
        padding: 50px 0 60px;
    }
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 1000px;
        margin: 30px auto 0;
    }
    .faq-item {
        background: var(--white);
        padding: 20px 24px;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }
    .faq-item:hover {
        border-color: var(--orange-primary);
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        transform: translateY(-2px);
    }
    .faq-item h4 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--black-dark);
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .faq-item h4 i {
        color: var(--orange-primary);
        font-size: 1rem;
    }
    .faq-item p {
        font-size: 0.85rem;
        color: var(--gray-600);
        line-height: 1.6;
        margin-left: 30px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .pricing-card.popular {
            transform: scale(1);
        }
        .pricing-card.popular:hover {
            transform: translateY(-8px);
        }
        .gmv-section {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }

    @media (max-width: 768px) {
        .pricing-hero h1 {
            font-size: 2.2rem;
        }
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 460px;
            margin: 0 auto;
        }
        .pricing-card.popular {
            transform: scale(1);
        }
        .pricing-card.popular:hover {
            transform: translateY(-8px);
        }
        .pricing-card .cta-pair {
            grid-template-columns: 1fr;
        }
        .faq-grid {
            grid-template-columns: 1fr;
        }
        .faq-item p {
            margin-left: 0;
        }
        .pricing-toggle-wrapper {
            top: 70px;
            padding: 14px 0;
        }
        .pricing-toggle {
            gap: 12px;
        }
        .pricing-toggle .toggle-label {
            font-size: 0.85rem;
        }
        .gmv-section {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .pricing-hero h1 {
            font-size: 1.8rem;
        }
        .pricing-card {
            padding: 20px;
        }
        .pricing-card .price-main {
            font-size: 2.2rem;
        }
        .pricing-card .plan-desc {
            font-size: 0.75rem;
            min-height: auto;
        }
        .comparison-table {
            font-size: 0.75rem;
            min-width: 600px;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 8px 12px;
        }
        .pricing-hero .trust-strip {
            gap: 12px;
        }
        .pricing-hero .trust-item {
            font-size: 11px;
        }
    }
    
    /* ======================================== */
/* EXCELLENCE SECTION - ENHANCED           */
/* ======================================== */
.excellence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}

.excellence-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ======================================== */
/* VIDEO COLUMN                            */
/* ======================================== */
.excellence-video {
    flex: 1;
    min-width: 320px;
    max-width: 55%;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: var(--black-dark);
    aspect-ratio: 16/9;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Overlay Text */
.video-overlay-text {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 30px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-container:hover .video-overlay-text {
    opacity: 1;
}

/* ======================================== */
/* VIDEO CONTROLS                          */
/* ======================================== */
.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.video-controls .video-control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.video-controls .video-control-btn:hover {
    background: var(--orange-primary);
    transform: scale(1.1);
}

.video-controls .video-control-btn i {
    font-size: 0.9rem;
}

/* ======================================== */
/* VIDEO PROGRESS BAR                      */
/* ======================================== */
.video-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 4;
    cursor: pointer;
}

.video-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--orange-primary);
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ======================================== */
/* TEXT COLUMN - BETTER ALIGNMENT          */
/* ======================================== */
.excellence-content {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    padding: 20px 0;
}

.excellence-content .section-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-primary);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.excellence-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.excellence-title span {
    color: var(--orange-primary);
    position: relative;
    display: inline-block;
}

.excellence-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary), transparent);
}

.excellence-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 28px;
    padding-right: 20px;
}

.excellence-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.excellence-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.excellence-features .feature-item:hover {
    transform: translateX(8px);
    border-color: var(--orange-primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.excellence-features .feature-check i {
    font-size: 1.3rem;
    color: var(--orange-primary);
    margin-top: 2px;
}

.excellence-features .feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 2px;
}

.excellence-features .feature-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.excellence-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.excellence-buttons .btn-primary,
.excellence-buttons .btn-outline {
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* ======================================== */
/* RESPONSIVE - TABLET & MOBILE            */
/* ======================================== */
@media (max-width: 1024px) {
    .excellence-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .excellence-video {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
    
    .excellence-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .excellence-description {
        padding-right: 0;
    }
    
    .excellence-features .feature-item {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .excellence-buttons {
        justify-content: center;
    }
    
    .video-controls {
        opacity: 1;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .video-overlay-text {
        bottom: 100px;
    }
}

@media (max-width: 768px) {
    .excellence-section {
        padding: 50px 0;
    }
    
    .excellence-title {
        font-size: 1.8rem;
    }
    
    .video-controls .video-control-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .excellence-features .feature-item {
        padding: 12px 16px;
    }
    
    .excellence-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .excellence-buttons .btn-primary,
    .excellence-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .excellence-title {
        font-size: 1.5rem;
    }
    
    .excellence-features .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .video-overlay-text {
        bottom: 80px;
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    
    .video-controls {
        bottom: 50px;
    }
    
    .video-controls .video-control-btn {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
}


/* ======================================== */
/* PDF POPUP STYLES                        */
/* ======================================== */

/* Overlay */
.pdf-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    padding: 20px;
}

.pdf-popup-overlay.active {
    display: flex;
    animation: fadeInOverlay 0.4s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Popup Container */
.pdf-popup {
    background: var(--white);
    border-radius: 20px;
    max-width: 1100px;
    width: 100%;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.pdf-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    font-size: 1.4rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 50%;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-popup-close:hover {
    background: var(--orange-primary);
    transform: rotate(90deg);
}

/* Popup Header */
.pdf-popup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--orange-light), #FFF0E0);
    border-bottom: 3px solid var(--orange-primary);
    flex-shrink: 0;
}

.pdf-popup-header .pdf-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdf-popup-header .pdf-icon i {
    font-size: 1.4rem;
    color: white;
}

.pdf-popup-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-dark);
    margin: 0;
}

.pdf-popup-header h2 span {
    color: var(--orange-primary);
}

.pdf-popup-header p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
    margin-left: auto;
}

/* PDF Viewer Container */
.pdf-viewer-container {
    flex: 1;
    min-height: 500px;
    height: 70vh;
    position: relative;
    background: var(--gray-100);
}

.pdf-viewer-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* Loading Spinner */
.pdf-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    display: none;
}

.pdf-loading.show {
    display: block;
}

.pdf-loading i {
    font-size: 3rem;
    color: var(--orange-primary);
    animation: spin 1s linear infinite;
}

.pdf-loading p {
    margin-top: 12px;
    color: var(--gray-500);
    font-size: 0.95rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Popup Footer */
.pdf-popup-footer {
    display: flex;
    gap: 14px;
    justify-content: center;
    padding: 16px 24px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.pdf-popup-footer .btn-primary,
.pdf-popup-footer .btn-outline {
    padding: 10px 28px;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pdf-popup-footer .btn-primary {
    background: var(--orange-primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.pdf-popup-footer .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.pdf-popup-footer .btn-outline {
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.pdf-popup-footer .btn-outline:hover {
    background: var(--orange-primary);
    color: white;
}

/* ======================================== */
/* RESPONSIVE STYLES                       */
/* ======================================== */
@media (max-width: 992px) {
    .pdf-popup {
        max-width: 95%;
    }
    
    .pdf-viewer-container {
        min-height: 400px;
        height: 65vh;
    }
}

@media (max-width: 768px) {
    .pdf-popup {
        max-width: 100%;
        max-height: 98vh;
        border-radius: 12px;
        margin: 5px;
    }
    
    .pdf-popup-header {
        flex-wrap: wrap;
        padding: 14px 18px;
        gap: 8px;
    }
    
    .pdf-popup-header p {
        margin-left: 0;
        width: 100%;
        font-size: 0.75rem;
    }
    
    .pdf-popup-header h2 {
        font-size: 1.1rem;
    }
    
    .pdf-viewer-container {
        min-height: 350px;
        height: 55vh;
    }
    
    .pdf-popup-footer {
        flex-wrap: wrap;
        padding: 12px 16px;
    }
    
    .pdf-popup-footer .btn-primary,
    .pdf-popup-footer .btn-outline {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .pdf-popup-close {
        top: 12px;
        right: 14px;
        font-size: 1.2rem;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .pdf-viewer-container {
        min-height: 250px;
        height: 45vh;
    }
    
    .pdf-popup-header .pdf-icon {
        width: 36px;
        height: 36px;
    }
    
    .pdf-popup-header .pdf-icon i {
        font-size: 1.1rem;
    }
    
    .pdf-popup-header h2 {
        font-size: 1rem;
    }
    
    .pdf-popup-footer .btn-primary,
    .pdf-popup-footer .btn-outline {
        font-size: 0.75rem;
        padding: 6px 12px;
        min-width: 100px;
    }
}
    
    