    <style>
        body {
            margin: 0;
            padding: 0;
            background: white;
        }

        /* ============================================ */
        /* HEADER & NAVIGATION FIXES */
        /* ============================================ */
        .container-header {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
        }

        /* Search overlay and expanded search styles from index.html */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            pointer-events: none;
            transition: background 0.3s ease;
            z-index: 999;
        }

        .search-overlay.active {
            background: rgba(0, 0, 0, 0.7);
            pointer-events: all;
        }

        .search-expanded {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 90%;
            max-width: 700px;
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 1000;
        }

        .search-expanded.active {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            pointer-events: all;
        }

        .search-input-wrapper {
            position: relative;
            margin-bottom: 24px;
        }

        .search-input-large {
            width: 100%;
            padding: 20px 60px 20px 24px;
            font-size: 20px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            outline: none;
            transition: all 0.3s;
            font-family: var(--font-primary);
        }

        .search-input-large:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
        }

        .search-icon-large {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            pointer-events: none;
        }

        .search-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border: none;
            background: var(--gray-100);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            font-size: 20px;
            color: var(--gray-600);
        }

        .search-close:hover {
            background: var(--gray-200);
            transform: rotate(90deg);
        }

        .search-suggestions {
            display: grid;
            gap: 12px;
        }

        .search-suggestion-title {
            font-size: 12px;
            font-weight: 700;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .search-suggestion-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--gray-50);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            color: var(--gray-700);
        }

        .search-suggestion-item:hover {
            background: var(--accent);
            color: white;
            transform: translateX(4px);
        }

        .search-suggestion-icon {
            font-size: 20px;
            opacity: 0.6;
        }

        .search-suggestion-text {
            font-size: 14px;
            font-weight: 500;
        }

        /* Hide menu when search is active */
        .nav-menu {
            transition: all 0.3s ease;
        }

        body.search-active .nav-menu {
            opacity: 0;
            pointer-events: none;
        }

        body.search-active .dropdown .btn-search:first-child {
            opacity: 0;
            pointer-events: none;
        }

        /* ============================================ */
        /* FOOTER FIXES */
        /* ============================================ */
        .container-footer {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .footer-description {
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            font-size: 14px;
        }

        /* ============================================ */
        /* SPLIT SCREEN HERO SECTION */
        /* ============================================ */
        .hero-split {
            display: grid;
            grid-template-columns: 1.5fr 2.5fr;
            min-height: 100vh;
            position: relative;
        }

        .hero-left {
            background: #0f172a;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }


        .hero-right {
            display: flex;
            align-items: stretch;
            justify-content: stretch;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 600px;
            color: white;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(243, 156, 18, 0.2);
            border: 1px solid rgba(243, 156, 18, 0.4);
            color: #f39c12;
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 72px;
            font-weight: 900;
            line-height: 0.95;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            margin-bottom: 40px;
        }

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

        .stat-item {
            border-top: 3px solid #f39c12;
            padding-top: 16px;
        }

        .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .stat-value {
            font-size: 36px;
            font-weight: 900;
            color: #f39c12;
            line-height: 1;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .stat-unit {
            font-size: 16px;
            font-weight: 700;
            color: rgba(243, 156, 18, 0.8);
        }

        .hero-price-section {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 40px;
        }

        .hero-price-main {
            font-size: 64px;
            font-weight: 900;
            color: #f39c12;
            line-height: 1;
            margin-bottom: 12px;
        }

        .hero-price-detail {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
        }

        .hero-actions {
            display: flex;
            gap: 16px;
        }

        .btn-hero-order {
            flex: 1;
            background: #f39c12;
            color: #0f172a;
            border: none;
            padding: 22px 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-hero-order:hover {
            background: #e67e22;
            transform: scale(1.05);
            box-shadow: 0 12px 32px rgba(243, 156, 18, 0.4);
        }

        .btn-hero-call {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.2);
            padding: 22px 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-hero-call:hover {
            background: rgba(255,255,255,0.15);
            border-color: white;
        }

        .btn-hero-quote {
            width: 100%;
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(243, 156, 18, 0.3);
            text-align: center;
        }

        .btn-hero-quote:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
        }

        /* Split Image + Description Card (Variation 1) */
        .hero-gallery {
            display: grid;
            grid-template-rows: 1.5fr 1fr;
            height: 100%;
            width: 100%;
            border-radius: 0;
            overflow: hidden;
        }

        .hero-v1-image {
            position: relative;
            overflow: hidden;
            background: #0f172a;
        }

        .hero-v1-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-v1-image img.active {
            opacity: 1;
        }

        .hero-v1-content {
            padding: 50px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, rgba(243, 156, 18, 0.95) 0%, rgba(230, 126, 34, 0.95) 100%);
            position: relative;
            min-height: auto;
        }

        .hero-v1-content::before {
            content: 'DE BOER CONTAINERTRADING';
            position: absolute;
            bottom: 20px;
            right: 30px;
            transform: none;
            font-size: 16px;
            font-weight: 900;
            color: rgba(255,255,255,0.12);
            white-space: nowrap;
            letter-spacing: 3px;
            pointer-events: none;
            z-index: 0;
        }

        .hero-v1-content::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(0,0,0,0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .quality-header {
            text-align: center;
            color: white;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .quality-header h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 0;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0.95;
        }

        .quality-pills {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .quality-pill {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.12);
            color: white;
            padding: 24px 16px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .quality-pill::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(243, 156, 18, 0.4) 0%, rgba(230, 126, 34, 0.4) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .quality-pill::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(243, 156, 18, 0.15), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .quality-pill:hover::after {
            opacity: 0.6;
        }

        .quality-pill.active {
            background: rgba(255,255,255,0.18);
            border-color: rgba(255,255,255,0.3);
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 12px 32px rgba(243, 156, 18, 0.25), 0 0 0 1px rgba(255,255,255,0.1);
        }

        .quality-pill.active::before {
            opacity: 1;
        }

        .quality-pill.active::after {
            opacity: 1;
        }

        .quality-pill:hover:not(.active) {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .quality-pill-grade {
            font-size: 42px;
            font-weight: 900;
            color: rgba(255,255,255,0.4);
            position: relative;
            z-index: 2;
            line-height: 1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .quality-pill.active .quality-pill-grade {
            color: white;
            text-shadow: 0 0 30px rgba(243, 156, 18, 0.6), 0 0 60px rgba(243, 156, 18, 0.3);
            transform: scale(1.05);
        }

        .quality-pill:hover:not(.active) .quality-pill-grade {
            color: rgba(255,255,255,0.65);
        }

        .quality-pill-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }

        .quality-pill.active .quality-pill-label {
            color: rgba(255,255,255,0.95);
            letter-spacing: 2px;
        }

        .quality-pill:hover:not(.active) .quality-pill-label {
            color: rgba(255,255,255,0.7);
        }

        .quality-panel {
            background: rgba(255,255,255,0.97);
            border-radius: 20px;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 1;
            box-shadow: 0 0 0 rgba(0,0,0,0);
        }

        .quality-panel.active {
            max-height: 450px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        }

        .quality-desc-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 3px solid transparent;
            border-image: linear-gradient(90deg, #f39c12 0%, #e67e22 100%) 1;
            position: relative;
        }

        .quality-desc-grade {
            font-size: 56px;
            font-weight: 900;
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .quality-desc-title h4 {
            font-size: 22px;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 6px;
            letter-spacing: -0.5px;
        }

        .quality-desc-title p {
            font-size: 14px;
            color: #6b7280;
            font-weight: 500;
        }

        .quality-desc-content p {
            font-size: 15px;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 24px;
        }

        .quality-desc-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .quality-desc-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 600;
            color: #0f172a;
            padding: 8px 0;
        }

        .quality-desc-feature-icon {
            width: 26px;
            height: 26px;
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(243, 156, 18, 0.25);
        }

        .slideshow-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .dot:hover {
            background: rgba(255,255,255,0.5);
        }

        .dot.active {
            background: white;
            width: 32px;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        /* ============================================ */
        /* DETAILED SPECS SECTION - Two Column Grid */
        /* ============================================ */
        .specs-section {
            padding: 100px 60px;
            background: var(--gray-50);
        }

        .specs-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .section-tag {
            display: inline-block;
            background: #f39c12;
            color: #0f172a;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
        }

        .specs-two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            background: #e5e7eb;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .spec-col-item {
            background: white;
            padding: 32px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .spec-col-item:hover {
            background: #fef3e2;
            transform: scale(1.02);
        }

        .spec-col-label {
            font-size: 14px;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .spec-col-value {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ============================================ */
        /* MODIFICATIONS SECTION */
        /* ============================================ */
        .modifications-section {
            padding: 100px 60px;
            background: #0f172a;
            color: white;
        }

        .modifications-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .modifications-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 80px;
            align-items: center;
        }

        .modifications-text h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 24px;
        }

        .modifications-text p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .modifications-highlight {
            background: rgba(243, 156, 18, 0.1);
            border-left: 4px solid #f39c12;
            padding: 24px;
            border-radius: 8px;
            margin-top: 24px;
        }

        .modifications-highlight strong {
            color: #f39c12;
        }

        .modifications-visual {
            background: rgba(255,255,255,0.05);
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 200px;
        }

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

        .modification-card {
            background: rgba(255,255,255,0.05);
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .modification-card:hover {
            background: rgba(243, 156, 18, 0.1);
            border-color: #f39c12;
            transform: translateY(-4px);
        }

        .modification-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .modification-title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .modification-description {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }

        .modification-price {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-weight: 700;
            color: #f39c12;
        }


        /* ============================================ */
        /* COMPARISON TABLE */
        /* ============================================ */
        .comparison-section {
            padding: 100px 60px;
            background: white;
        }

        .comparison-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            border: 2px solid var(--gray-200);
        }

        .comparison-header {
            display: grid;
            grid-template-columns: 1fr repeat(3, 1fr);
            background: #0f172a;
            color: white;
        }

        .comparison-header-cell {
            padding: 32px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .comparison-header-cell:last-child {
            border-right: none;
        }

        .comparison-header-cell.highlight {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: #0f172a;
        }

        .comparison-type {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .comparison-size {
            font-size: 14px;
            opacity: 0.8;
        }

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

        .comparison-row {
            display: contents;
        }

        .comparison-cell {
            padding: 24px 32px;
            border-right: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .comparison-cell:nth-child(4n+1) {
            justify-content: flex-start;
            font-weight: 600;
            color: #0f172a;
            background: var(--gray-50);
        }

        .comparison-cell.highlight-col {
            background: rgba(243, 156, 18, 0.05);
        }

        /* ============================================ */
        /* FEATURES SECTION */
        /* ============================================ */
        .features-section {
            padding: 100px 60px;
            background: linear-gradient(135deg, #fef3e2 0%, #fdecc8 100%);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
        }

        .features-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(243, 156, 18, 0.1);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid rgba(243, 156, 18, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover {
            border-color: #f39c12;
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(243, 156, 18, 0.25);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 24px;
            box-shadow: 0 8px 24px rgba(243, 156, 18, 0.3);
            transition: all 0.4s;
            position: relative;
            z-index: 1;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 32px rgba(243, 156, 18, 0.4);
        }

        .feature-title {
            font-size: 20px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .feature-description {
            font-size: 14px;
            color: #5a5a5a;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* ============================================ */
        /* RESPONSIVE */
        /* ============================================ */
        @media (max-width: 1200px) {
            .hero-split {
                grid-template-columns: 1fr;
            }

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

            .specs-grid,
            .modifications-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .modifications-intro {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .specs-grid,
            .modifications-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .floating-menu {
                display: none;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            /* Modifications mobile fixes */
            .modifications-section {
                padding: 60px 20px;
            }

            .modifications-intro {
                gap: 30px;
                margin-bottom: 40px;
            }

            .modifications-text h2 {
                font-size: 28px;
            }

            .modifications-text p {
                font-size: 16px;
            }

            .modifications-highlight {
                padding: 16px;
                font-size: 14px;
            }

            .modifications-visual {
                display: none;
            }

            .modification-card {
                padding: 20px;
            }

            .modification-icon {
                font-size: 36px;
                margin-bottom: 12px;
            }

            .modification-title {
                font-size: 18px;
            }
        }

        /* ============================================ */
        /* V3 MAGAZINE STYLE LAYOUT */
        /* ============================================ */
        .v3-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 24px;
        }

        /* Featured Image Header */
        .v3-featured-image {
            position: relative;
            height: 70vh;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .v3-slideshow-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .v3-slideshow-image.active {
            opacity: 1;
        }

        .v3-slideshow-dots {
            position: absolute;
            bottom: 24px;
            right: 60px;
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .v3-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.6);
        }

        .v3-dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        .v3-dot.active {
            background: #F59E0B;
            border-color: #F59E0B;
            box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
        }

        .v3-featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            /* Background is set dynamically via PHP inline style */
            padding: 60px 60px 40px;
            color: white;
        }

        .v3-badge {
            display: inline-block;
            background: #F59E0B;
            color: #0f172a;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .v3-title {
            font-size: 56px;
            font-weight: 900;
            margin: 0 0 16px 0;
            line-height: 1.1;
        }

        .v3-subtitle {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            max-width: 700px;
        }

        /* Content Grid */
        .v3-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }

        /* Main Content Cards */
        .v3-card {
            background: white;
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        .v3-card h2 {
            font-size: 32px;
            font-weight: 900;
            color: #0f172a;
            margin: 0 0 24px 0;
        }

        .v3-card h3 {
            font-size: 24px;
            font-weight: 800;
            color: #0f172a;
            margin: 32px 0 16px 0;
        }

        .v3-card p {
            font-size: 16px;
            line-height: 1.8;
            color: #4b5563;
        }

        /* Specs List */
        .v3-specs-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .v3-spec-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 2px solid #f3f4f6;
        }

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

        .v3-spec-label {
            font-size: 16px;
            font-weight: 600;
            color: #6b7280;
        }

        .v3-spec-value {
            font-size: 24px;
            font-weight: 900;
            color: #F59E0B;
        }

        /* Features Grid */
        .v3-features-grid {
            display: grid;
            gap: 16px;
            margin-top: 24px;
        }

        .v3-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(230, 126, 34, 0.03) 100%);
            border-radius: 12px;
            border-left: 4px solid #F59E0B;
        }

        .v3-feature-icon {
            width: 28px;
            height: 28px;
            background: #F59E0B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .v3-feature-text {
            font-size: 15px;
            font-weight: 600;
            color: #0f172a;
            line-height: 1.6;
        }

        /* Sidebar */
        .v3-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .v3-price-card {
            /* Background is set dynamically via PHP inline style */
            color: white;
            border-radius: 20px;
            padding: 40px 32px;
            box-shadow: 0 12px 40px rgba(15, 23, 42, 0.3);
            position: sticky;
            top: 100px;
        }

        .v3-price-label {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .v3-price {
            font-size: 52px;
            font-weight: 900;
            color: #F59E0B;
            margin: 0 0 8px 0;
            line-height: 1;
        }

        .v3-price-note {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
        }

        .v3-price-divider {
            height: 1px;
            background: rgba(255,255,255,0.1);
            margin: 32px 0;
        }

        .v3-quick-specs {
            display: grid;
            gap: 20px;
        }

        .v3-quick-spec {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .v3-quick-spec-label {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
        }

        .v3-quick-spec-value {
            font-size: 18px;
            font-weight: 800;
            color: white;
        }

        .v3-cta-buttons {
            display: grid;
            gap: 12px;
            margin-top: 32px;
        }

        .v3-btn {
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            text-align: center;
        }

        .v3-btn-primary {
            background: #F59E0B;
            color: #0f172a;
        }

        .v3-btn-primary:hover {
            background: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
        }

        .v3-btn-secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .v3-btn-secondary:hover {
            background: rgba(255,255,255,0.15);
            border-color: white;
        }

        /* Image Gallery */
        .v3-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
            margin-top: 32px;
        }

        .v3-gallery-item {
            aspect-ratio: 4/3;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }

        .v3-gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        }

        .v3-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CTA Banner */
        .v3-cta-banner {
            background: linear-gradient(135deg, #0f172a 0%, #1a202c 100%);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            color: white;
            margin-top: 40px;
        }

        .v3-cta-banner h2 {
            font-size: 42px;
            font-weight: 900;
            margin: 0 0 16px 0;
        }

        .v3-cta-banner p {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            margin: 0 0 32px 0;
        }

        /* Description Section */
        .v3-description-section {
            background: white;
            border-radius: 24px;
            padding: 60px;
            margin: 40px auto 0;
            max-width: 1200px;
            border: 2px solid #e5e7eb;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }

        .v3-description-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .v3-description-header {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 40px;
            padding-bottom: 28px;
            border-bottom: 3px solid #f3f4f6;
        }

        .v3-description-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f39c12;
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
        }

        .v3-description-title {
            flex: 1;
        }

        .v3-description-title h2 {
            font-size: 36px;
            font-weight: 900;
            color: #0f172a;
            margin: 0 0 12px 0;
            line-height: 1.2;
        }

        .v3-description-divider {
            height: 4px;
            background: linear-gradient(90deg, #F59E0B 0%, #e67e22 50%, transparent 100%);
            border-radius: 2px;
            max-width: 200px;
        }

        .v3-description-text {
            margin-bottom: 40px;
        }

        .v3-description-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #4b5563;
            margin: 0 0 20px 0;
        }

        .v3-description-text p:last-child {
            margin-bottom: 0;
        }

        .v3-description-extra {
            background: rgba(245, 158, 11, 0.05);
            border-left: 4px solid #F59E0B;
            border-radius: 12px;
            padding: 24px 28px;
            margin-bottom: 40px;
        }

        .v3-description-extra h3 {
            font-size: 20px;
            font-weight: 800;
            color: #F59E0B;
            margin: 0 0 12px 0;
        }

        .v3-description-extra p {
            font-size: 16px;
            line-height: 1.7;
            color: #1f2937;
            margin: 0;
        }

        .v3-description-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
            padding: 32px;
            background: white;
            border-radius: 16px;
            border: 2px solid #e5e7eb;
        }

        .v3-description-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .v3-description-feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #F59E0B 0%, #e67e22 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
        }

        .v3-description-feature-text {
            flex: 1;
        }

        .v3-description-feature-text strong {
            display: block;
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .v3-description-feature-text span {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
        }

        .v3-description-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .v3-description-cta .v3-btn {
            min-width: 240px;
            font-size: 17px;
            padding: 18px 40px;
            font-weight: 800;
            letter-spacing: 0.3px;
        }

        .v3-description-cta .v3-btn-primary {
            background: linear-gradient(135deg, #F59E0B 0%, #e67e22 100%);
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
        }

        .v3-description-cta .v3-btn-primary:hover {
            box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
            transform: translateY(-3px);
        }

        .v3-description-cta .v3-btn-secondary {
            background: white;
            color: #0f172a;
            border: 2px solid #0f172a;
        }

        .v3-description-cta .v3-btn-secondary:hover {
            background: #0f172a;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
        }

        /* V3 Responsive */
        @media (max-width: 1024px) {
            .v3-grid {
                grid-template-columns: 1fr;
            }

            .v3-price-card {
                position: relative;
                top: 0;
            }

            .v3-title {
                font-size: 38px;
            }

            .v3-featured-overlay {
                padding: 40px 32px 32px;
            }

            .v3-description-features {
                grid-template-columns: 1fr;
            }

            .v3-description-section {
                padding: 48px 32px;
            }

            .v3-description-title h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .v3-card {
                padding: 32px 24px;
            }

            .v3-cta-banner {
                padding: 40px 24px;
            }

            .v3-cta-banner h2 {
                font-size: 32px;
            }

            .v3-container {
                padding: 24px 16px;
            }

            .v3-featured-image {
                height: 50vh;
                border-radius: 16px;
                margin-bottom: 24px;
            }

            .v3-featured-overlay {
                padding: 32px 24px 24px;
            }

            .v3-slideshow-dots {
                right: 24px;
                bottom: 16px;
            }

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

            .v3-subtitle {
                font-size: 16px;
            }

            .v3-description-section {
                padding: 32px 20px;
                border-radius: 16px;
            }

            .v3-description-header {
                gap: 16px;
            }

            .v3-description-icon {
                width: 48px;
                height: 48px;
            }

            .v3-description-title h2 {
                font-size: 26px;
            }

            .v3-description-text p {
                font-size: 16px;
            }

            .v3-description-features {
                padding: 24px 20px;
            }

            .v3-description-cta {
                flex-direction: column;
            }

            .v3-description-cta .v3-btn {
                width: 100%;
                min-width: auto;
            }
        }
