
        /* Base Styles and Variables */
        .pd-tab-desc {
            --primary: #0062e3;
            --primary-dark: #004db8;
            --primary-light: #4d94ff;
            --secondary: #00d2c6;
            --accent: #ff3366;
            --dark: #0a1f44;
            --gray: #556b8b;
            --light-gray: #8798ad;
            --lighter-gray: #edf2f9;
            --off-white: #f5f8fc;
            --white: #ffffff;
            --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            --gradient-primary: linear-gradient(135deg, #0062e3, #00d2c6);
            --gradient-dark: linear-gradient(135deg, #004db8, #00a69d);
            --border-radius-sm: 8px;
            --border-radius: 12px;
            --border-radius-lg: 20px;
            --border-radius-xl: 30px;
            --transition: all 0.3s ease;
            font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            font-size: 19px;
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }
        .pd-tab-desc * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        .pd-tab-desc .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .pd-tab-desc a {
            text-decoration: none;
            color: inherit;
        }
        .pd-tab-desc ul {
            list-style: none;
        }
        .pd-tab-desc img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        /* Strong Text Styling */
        .pd-tab-desc strong {
            font-weight: normal;
            color: var(--primary);
        }
        /* Typography */
        .pd-tab-desc h1,
        .pd-tab-desc h2,
        .pd-tab-desc h3,
        .pd-tab-desc h4,
        .pd-tab-desc h5,
        .pd-tab-desc h6 {
            font-weight: 700;
            line-height: 1.3;
            color: var(--dark);
        }
        /* Hero title: 76px */
        .pd-tab-desc .hero-title {
            font-size: 76px;
        }
        /* Section headers: 60px */
        .pd-tab-desc .section-title {
            font-size: 60px;
        }
        /* Main headings: 46px */
        .pd-tab-desc h2 {
            font-size: 46px;
        }
        /* Sub headings: 40px */
        .pd-tab-desc h3 {
            font-size: 40px;
        }
        /* Card titles: 26px */
        .pd-tab-desc .feature-card h3,
        .pd-tab-desc .function-details h4,
        .pd-tab-desc .product-name {
            font-size: 26px;
        }
        /* Button text: 18px */
        .pd-tab-desc .btn-primary,
        .pd-tab-desc .btn-outline,
        .pd-tab-desc .btn-primary-soft,
        .pd-tab-desc .btn-product,
        .pd-tab-desc .btn-cta-primary,
        .pd-tab-desc .btn-cta-outline {
            font-size: 18px;
        }
        /* Small text: 16px */
        .pd-tab-desc .tag,
        .pd-tab-desc .hero-badge,
        .pd-tab-desc .section-tag,
        .pd-tab-desc .note-content li,
        .pd-tab-desc .footer-copyright {
            font-size: 16px;
        }
        /* Buttons */
        .pd-tab-desc .btn-primary,
        .pd-tab-desc .btn-outline,
        .pd-tab-desc .btn-primary-soft,
        .pd-tab-desc .btn-product,
        .pd-tab-desc .btn-cta-primary,
        .pd-tab-desc .btn-cta-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            border-radius: var(--border-radius);
            padding: 14px 32px;
            transition: var(--transition);
            cursor: pointer;
            font-size: 15px;
            gap: 12px;
        }
        .pd-tab-desc .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 8px 15px rgba(0, 98, 227, 0.2);
            border: none;
        }
        .pd-tab-desc .btn-primary:hover {
            background: var(--gradient-dark);
            box-shadow: 0 12px 20px rgba(0, 98, 227, 0.3);
            transform: translateY(-2px);
        }
        .pd-tab-desc .btn-outline {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary-light);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .pd-tab-desc .btn-outline:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .btn-primary-soft {
            background: rgba(0, 98, 227, 0.1);
            color: var(--primary);
            border: none;
        }
        .pd-tab-desc .btn-primary-soft:hover {
            background: rgba(0, 98, 227, 0.2);
            transform: translateY(-2px);
        }
        /* Hero Section */
        .pd-tab-desc .hero {
            position: relative;
            padding: 100px 0 80px;
            overflow: hidden;
            background: var(--off-white);
        }
        .pd-tab-desc .hero-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .pd-tab-desc .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(0, 98, 227, 0.03) 0%, transparent 70%),
                radial-gradient(circle at 80% 80%, rgba(0, 210, 198, 0.03) 0%, transparent 70%);
        }
        .pd-tab-desc .hero-glow-1 {
            position: absolute;
            top: -150px;
            right: -100px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 98, 227, 0.1) 0%, transparent 70%);
            filter: blur(60px);
        }
        .pd-tab-desc .hero-glow-2 {
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 210, 198, 0.1) 0%, transparent 70%);
            filter: blur(60px);
        }
        .pd-tab-desc .hero-content {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .pd-tab-desc .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 98, 227, 0.08);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 24px;
        }
        .pd-tab-desc .hero-title {
            font-size: 48px;
            margin-bottom: 12px;
            color: var(--dark);
            line-height: 1.2;
        }
        .pd-tab-desc .hero-subtitle {
            display: block;
            font-size: 18px;
            color: var(--primary);
            margin-top: 5px;
        }
        .pd-tab-desc .hero-description {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 32px;
            max-width: 500px;
        }
        .pd-tab-desc .hero-cta-group {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }
        .pd-tab-desc .compatibility-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .pd-tab-desc .tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: var(--white);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--gray);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .pd-tab-desc .product-display {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }
        .pd-tab-desc .product-image-wrapper {
            position: relative;
            background: var(--white);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--box-shadow);
            padding: 40px;
            margin-bottom: 30px;
            overflow: hidden;
        }
        .pd-tab-desc .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            z-index: 10;
        }
        .pd-tab-desc .product-image {
            position: relative;
            z-index: 5;
            transition: var(--transition);
        }
        .pd-tab-desc .product-image:hover {
            transform: scale(1.03);
        }
        .pd-tab-desc .product-360-viewer {
            position: relative;
            width: 100%;
            max-width: 480px;
            margin: 0 auto;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }
        .pd-tab-desc .product-360-viewer::before {
            content: '';
            display: block;
            padding-top: 100%;
        }
        .pd-tab-desc .product-360-viewer iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .pd-tab-desc .product-reflections {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
            z-index: 2;
        }
        .pd-tab-desc .product-controls {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .pd-tab-desc .product-control-item {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .pd-tab-desc .product-control-item.active {
            border-color: var(--primary-light);
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.15);
            transform: translateY(-5px);
        }
        .pd-tab-desc .product-control-item:hover:not(.active) {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        }
        .pd-tab-desc .control-icon {
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 10px;
        }
        .pd-tab-desc .control-info h4 {
            font-size: 14px;
            margin-bottom: 4px;
        }
        .pd-tab-desc .control-info p {
            font-size: 12px;
            color: var(--light-gray);
        }
        .pd-tab-desc .hero-bottom-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 2;
            line-height: 0;
        }
        /* Brands Section */
        .pd-tab-desc .brands-section {
            padding: 40px 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .pd-tab-desc .brands-title {
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            color: var(--light-gray);
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .pd-tab-desc .brands-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }
        .pd-tab-desc .brands-track {
            display: flex;
            animation: brandScroll 20s linear infinite;
        }
        @keyframes brandScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        .pd-tab-desc .brand-logo {
            flex: 0 0 auto;
            width: 120px;
            height: 60px;
            margin: 0 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.7;
            transition: var(--transition);
        }
        .pd-tab-desc .brand-logo:hover {
            opacity: 1;
        }
        .pd-tab-desc .brand-logo img {
            max-width: 100%;
            max-height: 40px;
            transition: var(--transition);
        }
        /* Section Headers */
        .pd-tab-desc .section-header {
            margin-bottom: 60px;
            max-width: 800px;
        }
        .pd-tab-desc .section-header.center-aligned {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        .pd-tab-desc .section-tag {
            display: inline-block;
            background: rgba(0, 98, 227, 0.08);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 13px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .pd-tab-desc .section-title {
            font-size: 36px;
            margin-bottom: 16px;
            color: var(--dark);
        }
        .pd-tab-desc .section-title span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        .pd-tab-desc .section-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(0, 98, 227, 0.1);
            z-index: -1;
            border-radius: 4px;
        }
        .pd-tab-desc .section-subtitle {
            font-size: 18px;
            color: var(--gray);
        }
        /* Features Section */
        .pd-tab-desc .features-section {
            padding: 100px 0;
            background: var(--white);
        }
        .pd-tab-desc .features-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            align-items: center;
        }
        .pd-tab-desc .features-gallery-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .pd-tab-desc .main-feature-image {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--box-shadow);
            padding: 20px;
            overflow: hidden;
        }
        .pd-tab-desc #feature-gallery-image {
            width: 100%;
            border-radius: var(--border-radius);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .pd-tab-desc #feature-gallery-image:hover {
            transform: scale(1.05);
        }
        .pd-tab-desc .feature-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        .pd-tab-desc .feature-thumb {
            width: 100%;
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .pd-tab-desc .feature-thumb:hover {
            border-color: var(--primary-light);
            transform: translateY(-3px);
        }
        .pd-tab-desc .feature-thumb.active {
            border-color: var(--primary);
            box-shadow: 0 6px 15px rgba(0, 98, 227, 0.2);
        }
        .pd-tab-desc .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .pd-tab-desc .feature-card {
            background: var(--off-white);
            padding: 25px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid transparent;
            text-align: center;
        }
        .pd-tab-desc .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow);
            border-color: var(--lighter-gray);
            background: var(--white);
        }
        .pd-tab-desc .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 15px;
            box-shadow: 0 8px 15px rgba(0, 98, 227, 0.2);
            margin-left: auto;
            margin-right: auto;
        }
        .pd-tab-desc .feature-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .pd-tab-desc .feature-card p {
            color: var(--gray);
            font-size: 14px;
        }
        /* MultiEcuScan Software Info Section */
        .pd-tab-desc .software-info-section {
            padding: 60px 0;
            background-color: #FFFFFF;
        }
        .pd-tab-desc .software-info-section .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        .pd-tab-desc .software-info-section .section-badge {
            display: inline-block;
            background: rgba(30, 136, 229, 0.1);
            color: #1E88E5;
            border-radius: 100px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(30, 136, 229, 0.2);
        }
        .pd-tab-desc .software-info-section .section-title {
            font-size: 40px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .pd-tab-desc .software-info-section .section-title span {
            color: var(--primary);
        }
        .pd-tab-desc .software-info-section .section-subtitle {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-light);
        }
        .pd-tab-desc .software-info-content-area {
            text-align: center;
            max-width: 800px;
            margin: 40px auto 0 auto;
        }
        .pd-tab-desc .info-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1E88E5, #26C6DA);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
            box-shadow: 0 10px 20px rgba(30, 136, 229, 0.3);
        }
        .pd-tab-desc .info-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        .pd-tab-desc .info-text {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 15px;
        }
        .pd-tab-desc .info-text strong {
            color: var(--primary);
            font-weight: 600;
        }
        .pd-tab-desc .software-download-prompt {
            background-color: #FFFFFF;
            padding: 25px 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 780px;
            margin: 40px auto 0 auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary);
        }
        .pd-tab-desc .software-access-icon {
            color: var(--primary);
            font-size: 30px;
            margin-bottom: 15px;
        }
        .pd-tab-desc .software-access-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }
        .pd-tab-desc .software-access-text {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }
        .pd-tab-desc .btn-software-access {
            background: linear-gradient(135deg, #1E88E5, #26C6DA);
            color: white;
            padding: 12px 28px;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
            border: none;
            cursor: pointer;
        }
        .pd-tab-desc .btn-software-access:hover {
            background: linear-gradient(135deg, #1976D2, #00ACC1);
            box-shadow: 0 6px 18px rgba(30, 136, 229, 0.4);
            transform: translateY(-1px);
        }
        .pd-tab-desc .bonus-content {
            margin-top: 40px;
            padding: 20px;
            background: rgba(0, 98, 227, 0.05);
            border-radius: var(--border-radius);
            text-align: center;
        }
        .pd-tab-desc .bonus-content .bonus-icon {
            color: var(--accent);
            margin-bottom: 10px;
            display: inline-block;
            font-size: 24px;
        }
        .pd-tab-desc .bonus-content h4 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .pd-tab-desc .bonus-content p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto;
        }
        .pd-tab-desc .bonus-content p strong {
            font-weight: 600;
            color: var(--primary);
        }
        /* Software Comparison Grid */
        .pd-tab-desc .software-comparison-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .pd-tab-desc .software-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--lighter-gray);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .pd-tab-desc .software-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 98, 227, 0.15);
        }
        .pd-tab-desc .software-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            z-index: 10;
        }
        .pd-tab-desc .software-badge.premium {
            background: linear-gradient(135deg, #28a745, #20c997);
        }
        .pd-tab-desc .software-image {
            width: 100%;
            height: 250px;
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 25px;
            border: 2px solid var(--lighter-gray);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .pd-tab-desc .software-interface-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: var(--transition);
        }
        .pd-tab-desc .software-interface-img:hover {
            transform: scale(1.05);
        }
        .pd-tab-desc .software-content {
            text-align: center;
        }
        .pd-tab-desc .software-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .software-icon.premium {
            background: linear-gradient(135deg, #28a745, #20c997);
            box-shadow: 0 8px 20px rgba(40, 167, 69, 0.25);
        }
        .pd-tab-desc .software-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .pd-tab-desc .software-description {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .pd-tab-desc .software-features {
            list-style: none;
            margin-bottom: 25px;
            text-align: center;
        }
        .pd-tab-desc .software-features li {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--gray);
        }
        .pd-tab-desc .software-features li i {
            color: var(--primary);
            font-size: 12px;
            width: 16px;
        }
        .pd-tab-desc .btn-software-download {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(0, 98, 227, 0.3);
            border: none;
            cursor: pointer;
        }
        .pd-tab-desc .btn-software-download:hover {
            background: var(--gradient-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0, 98, 227, 0.4);
        }
        .pd-tab-desc .btn-software-download.premium {
            background: linear-gradient(135deg, #28a745, #20c997);
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        }
        .pd-tab-desc .btn-software-download.premium:hover {
            background: linear-gradient(135deg, #218838, #1ea085);
            box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
        }
        /* Mobile Responsive for Software Grid */
        @media (max-width: 768px) {
            .pd-tab-desc .software-comparison-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            .pd-tab-desc .software-card {
                padding: 20px;
                margin: 0 auto;
                max-width: 400px;
            }
            .pd-tab-desc .software-image {
                height: 180px;
                margin-bottom: 20px;
                border-radius: var(--border-radius);
            }
            .pd-tab-desc .software-interface-img {
                object-fit: contain;
                object-position: center;
            }
            .pd-tab-desc .software-title {
                font-size: 18px;
                line-height: 1.4;
            }
            .pd-tab-desc .software-description {
                font-size: 14px;
                line-height: 1.5;
            }
            .pd-tab-desc .software-badge {
                top: 15px;
                right: 15px;
                padding: 4px 8px;
                font-size: 11px;
            }
        }
        /* Extra Mobile Responsive for Very Small Screens */
        @media (max-width: 480px) {
            .pd-tab-desc .software-comparison-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 0 5px;
            }
            .pd-tab-desc .software-card {
                padding: 15px;
                margin: 0 auto;
                max-width: 350px;
            }
            .pd-tab-desc .software-image {
                height: 160px;
                margin-bottom: 15px;
                border-radius: 8px;
            }
            .pd-tab-desc .software-interface-img {
                object-fit: cover;
                object-position: center top;
                border-radius: 8px;
            }
            .pd-tab-desc .software-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
                margin-bottom: 15px;
            }
            .pd-tab-desc .software-title {
                font-size: 16px;
                line-height: 1.3;
                margin-bottom: 12px;
            }
            .pd-tab-desc .software-description {
                font-size: 13px;
                line-height: 1.4;
                margin-bottom: 15px;
            }
            .pd-tab-desc .software-features {
                margin-bottom: 20px;
                text-align: center;
            }
            .pd-tab-desc .software-features li {
                font-size: 13px;
                margin-bottom: 8px;
                line-height: 1.3;
            }
            .pd-tab-desc .btn-software-download {
                padding: 10px 20px;
                font-size: 13px;
                width: 100%;
                justify-content: center;
            }
            .pd-tab-desc .software-badge {
                top: 10px;
                right: 10px;
                padding: 3px 6px;
                font-size: 10px;
            }
        }
        /* Landscape Mobile Responsive */
        @media (max-width: 768px) and (orientation: landscape) {
            .pd-tab-desc .software-comparison-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                max-width: 700px;
                margin: 0 auto;
            }
            .pd-tab-desc .software-card {
                padding: 15px;
            }
            .pd-tab-desc .software-image {
                height: 120px;
                margin-bottom: 15px;
            }
            .pd-tab-desc .software-title {
                font-size: 16px;
            }
            .pd-tab-desc .software-description {
                font-size: 12px;
                margin-bottom: 10px;
            }
            .pd-tab-desc .software-features li {
                font-size: 12px;
                margin-bottom: 6px;
            }
            .pd-tab-desc .btn-software-download {
                padding: 8px 16px;
                font-size: 12px;
            }
        }
        /* Diagnostic Functions Section */
        .pd-tab-desc .diagnostic-functions {
            padding: 100px 0;
            background: var(--off-white);
        }
        .pd-tab-desc .functions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .pd-tab-desc .function-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
            padding: 30px;
            background: var(--white);
            border-radius: var(--border-radius-lg);
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            border: 1px solid transparent;
        }
        .pd-tab-desc .function-item:hover {
            transform: translateY(-10px);
            border-color: var(--primary-light);
        }
        .pd-tab-desc .function-icon {
            width: 70px;
            height: 70px;
            min-width: 70px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 10px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .function-details h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .pd-tab-desc .function-details p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.6;
        }
        .pd-tab-desc .tab-note {
            background: rgba(255, 51, 102, 0.1);
            border-left: 4px solid var(--accent);
            padding: 15px 20px;
            margin-top: 30px;
            border-radius: var(--border-radius-sm);
        }
        .pd-tab-desc .tab-note p {
            color: var(--gray);
            font-size: 14px;
            font-style: italic;
        }
        /* Products Range Section */
        .pd-tab-desc .products-range {
            padding: 100px 0;
            background: var(--white);
        }
        .pd-tab-desc .products-comparison {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .pd-tab-desc .product-card {
            background: var(--off-white);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            position: relative;
            transition: var(--transition);
            overflow: hidden;
            border: 1px solid transparent;
        }
        .pd-tab-desc .product-card.featured {
            background: var(--white);
            box-shadow: var(--box-shadow);
            border-color: var(--lighter-gray);
            transform: scale(1.05);
        }
        .pd-tab-desc .product-card:not(.featured):hover {
            background: var(--white);
            transform: translateY(-10px);
            box-shadow: var(--box-shadow);
            border-color: var(--lighter-gray);
        }
        .pd-tab-desc .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            z-index: 10;
        }
        .pd-tab-desc .product-image {
            text-align: center;
            margin-bottom: 20px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pd-tab-desc .product-image img {
            max-height: 100%;
        }
        .pd-tab-desc .product-name {
            font-size: 22px;
            margin-bottom: 10px;
            text-align: center;
        }
        .pd-tab-desc .product-description {
            color: var(--gray);
            margin-bottom: 25px;
            font-size: 15px;
            text-align: center;
        }
        .pd-tab-desc .product-features {
            margin-bottom: 30px;
        }
        .pd-tab-desc .product-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .pd-tab-desc .product-features li i {
            color: var(--primary);
        }
        .pd-tab-desc .product-features li.feature-disabled {
            color: var(--light-gray);
        }
        .pd-tab-desc .product-features li.feature-disabled i {
            color: var(--light-gray);
        }
        .pd-tab-desc .btn-product {
            width: 100%;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
        }
        .pd-tab-desc .btn-product:hover {
            background: var(--gradient-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 98, 227, 0.2);
        }
        .pd-tab-desc .btn-product.secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary-light);
        }
        .pd-tab-desc .btn-product.secondary:hover {
            background: rgba(0, 98, 227, 0.05);
            box-shadow: none;
        }
        /* Testimonials Section */
        .pd-tab-desc .testimonials-section {
            padding: 100px 0;
            background: var(--off-white);
        }
        .pd-tab-desc .testimonials-carousel {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        .pd-tab-desc .testimonial-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        .pd-tab-desc .testimonial-card:hover {
            transform: translateY(-10px);
        }
        .pd-tab-desc .testimonial-rating {
            color: #FFB400;
            font-size: 16px;
            margin-bottom: 20px;
        }
        .pd-tab-desc .testimonial-text {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
            font-style: italic;
        }
        .pd-tab-desc .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .pd-tab-desc .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }
        .pd-tab-desc .author-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }
        .pd-tab-desc .author-info p {
            font-size: 14px;
            color: var(--light-gray);
        }
        .pd-tab-desc .testimonials-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .pd-tab-desc .control-prev,
        .pd-tab-desc .control-next {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--lighter-gray);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }
        .pd-tab-desc .control-prev:hover,
        .pd-tab-desc .control-next:hover {
            background: var(--primary);
            color: var(--white);
        }
        .pd-tab-desc .control-dots {
            display: flex;
            gap: 8px;
        }
        .pd-tab-desc .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--lighter-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .pd-tab-desc .dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }
        /* Installation Section */
        .pd-tab-desc .installation-section {
            padding: 100px 0;
            background: var(--off-white);
        }
        .pd-tab-desc .installation-content {
            margin-top: 40px;
        }
        .pd-tab-desc .installation-layout {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }
        .pd-tab-desc .installation-video-section {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }
        .pd-tab-desc .video-container {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 20px;
            box-shadow: var(--box-shadow);
            margin-bottom: 20px;
        }
        .pd-tab-desc .video-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(0, 98, 227, 0.05);
            border-radius: var(--border-radius);
            text-align: center;
        }
        .pd-tab-desc .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: var(--border-radius);
        }
        .pd-tab-desc .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: var(--border-radius);
        }
        .pd-tab-desc .video-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            flex-shrink: 0;
        }
        .pd-tab-desc .video-details h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }
        .pd-tab-desc .video-details p {
            font-size: 14px;
            color: var(--gray);
            margin: 0;
        }
        .pd-tab-desc .steps-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .pd-tab-desc .steps-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            margin: 0 auto 20px;
            box-shadow: 0 8px 15px rgba(0, 98, 227, 0.2);
        }
        .pd-tab-desc .steps-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        .pd-tab-desc .steps-header p {
            font-size: 16px;
            color: var(--gray);
        }
        .pd-tab-desc .installation-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
        }
        .pd-tab-desc .installation-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 60px;
            right: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 1;
            border-radius: 2px;
        }
        .pd-tab-desc .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
            background: var(--white);
            padding: 30px 20px;
            border-radius: var(--border-radius-lg);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid transparent;
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }
        .pd-tab-desc .step-item:hover {
            border-color: var(--primary-light);
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0, 98, 227, 0.2);
        }
        .pd-tab-desc .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 24px;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.3);
            border: 4px solid var(--white);
        }
        .pd-tab-desc .step-content h4 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--dark);
            line-height: 1.3;
        }
        .pd-tab-desc .step-content p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.5;
            margin: 0;
        }
        .pd-tab-desc .installation-notes {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--primary);
        }
        .pd-tab-desc .note-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            text-align: center;
        }
        .pd-tab-desc .note-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 22px;
            flex-shrink: 0;
        }
        .pd-tab-desc .note-header h4 {
            font-size: 22px;
            color: var(--dark);
            margin: 0;
            font-weight: 700;
        }
        .pd-tab-desc .note-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .pd-tab-desc .note-item {
            background: var(--white);
            padding: 25px 20px;
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--lighter-gray);
            transition: var(--transition);
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }
        .pd-tab-desc .note-item:hover {
            background: var(--white);
            border-color: var(--primary-light);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 98, 227, 0.15);
        }
        .pd-tab-desc .note-item-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .pd-tab-desc .note-item i {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .note-item h5 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin: 0;
        }
        .pd-tab-desc .note-item p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
            margin: 0;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .pd-tab-desc .note-item strong {
            color: var(--primary);
            font-weight: 600;
        }
        .pd-tab-desc .note-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .pd-tab-desc .note-list li {
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray);
        }
        .pd-tab-desc .note-list li strong {
            color: var(--primary);
            font-weight: 600;
        }
        .pd-tab-desc .professional-note {
            margin-top: 25px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(0, 98, 227, 0.08), rgba(0, 210, 198, 0.08));
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 2px 10px rgba(0, 98, 227, 0.08);
        }
        .pd-tab-desc .professional-note .note-icon-wrapper {
            flex-shrink: 0;
        }
        .pd-tab-desc .professional-note .note-icon-wrapper i {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .professional-note .note-content-wrapper h5 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        .pd-tab-desc .professional-note .note-content-wrapper p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
            margin: 0;
        }
        .pd-tab-desc .professional-note .note-content-wrapper p strong {
            color: var(--primary);
            font-weight: 600;
        }
        /* Two Column Installation Layout */
        .pd-tab-desc .installation-two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: flex-start;
        }
        .pd-tab-desc .installation-steps-column {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--lighter-gray);
        }
        .pd-tab-desc .installation-tips-column {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--box-shadow);
            border: 1px solid var(--lighter-gray);
        }
        .pd-tab-desc .installation-steps-vertical {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .pd-tab-desc .step-item-vertical {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: var(--off-white);
            border-radius: var(--border-radius);
            border: 1px solid transparent;
            transition: var(--transition);
            position: relative;
        }
        .pd-tab-desc .step-item-vertical:hover {
            background: var(--white);
            border-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.15);
        }
        .pd-tab-desc .step-item-vertical::after {
            content: '';
            position: absolute;
            left: 45px;
            bottom: -25px;
            width: 2px;
            height: 25px;
            background: linear-gradient(180deg, var(--primary), transparent);
            z-index: 1;
        }
        .pd-tab-desc .step-item-vertical:last-child::after {
            display: none;
        }
        .pd-tab-desc .step-number-vertical {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 8px 15px rgba(0, 98, 227, 0.25);
            border: 3px solid var(--white);
            position: relative;
            z-index: 2;
        }
        .pd-tab-desc .step-content-vertical h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
            line-height: 1.3;
        }
        .pd-tab-desc .step-content-vertical p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.6;
            margin: 0;
        }
        /* Mobile Responsive for Two Column Layout */
        @media (max-width: 991px) {
            .pd-tab-desc .installation-two-column {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        /* Enhanced Mobile Optimization for Installation */
        @media (max-width: 768px) {
            .pd-tab-desc .installation-steps-column,
            .pd-tab-desc .installation-tips-column {
                padding: 20px;
            }
            .pd-tab-desc .step-item-vertical {
                padding: 20px 15px;
                gap: 15px;
            }
            .pd-tab-desc .step-number-vertical {
                width: 45px;
                height: 45px;
                font-size: 18px;
                flex-shrink: 0;
            }
            .pd-tab-desc .step-content-vertical h4 {
                font-size: 16px;
                margin-bottom: 8px;
            }
            .pd-tab-desc .step-content-vertical p {
                font-size: 14px;
                line-height: 1.5;
            }
            .pd-tab-desc .installation-notes {
                padding: 20px;
            }
            .pd-tab-desc .note-header h4 {
                font-size: 18px;
            }
            .pd-tab-desc .note-list li {
                font-size: 14px;
                margin-bottom: 12px;
            }
            .pd-tab-desc .professional-note {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
                text-align: center;
            }
            .pd-tab-desc .professional-note .note-content-wrapper h5 {
                font-size: 16px;
            }
            .pd-tab-desc .professional-note .note-content-wrapper p {
                font-size: 14px;
            }
        }
        @media (max-width: 480px) {
            .pd-tab-desc .installation-steps-column,
            .pd-tab-desc .installation-tips-column {
                padding: 15px;
            }
            .pd-tab-desc .step-item-vertical {
                padding: 15px 10px;
                gap: 12px;
            }
            .pd-tab-desc .step-number-vertical {
                width: 40px;
                height: 40px;
                font-size: 16px;
                border: 2px solid var(--white);
            }
            .pd-tab-desc .step-content-vertical h4 {
                font-size: 15px;
                margin-bottom: 6px;
            }
            .pd-tab-desc .step-content-vertical p {
                font-size: 13px;
            }
            .pd-tab-desc .installation-notes {
                padding: 15px;
            }
            .pd-tab-desc .note-header {
                gap: 10px;
                margin-bottom: 20px;
            }
            .pd-tab-desc .note-header h4 {
                font-size: 16px;
            }
            .pd-tab-desc .note-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .pd-tab-desc .note-list li {
                font-size: 13px;
                margin-bottom: 10px;
                line-height: 1.4;
            }
            .pd-tab-desc .professional-note {
                padding: 15px;
                gap: 12px;
            }
            .pd-tab-desc .professional-note .note-icon-wrapper i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            .pd-tab-desc .professional-note .note-content-wrapper h5 {
                font-size: 15px;
                margin-bottom: 8px;
            }
            .pd-tab-desc .professional-note .note-content-wrapper p {
                font-size: 13px;
                line-height: 1.5;
            }
        }
        .pd-tab-desc .installation-support {
            margin-top: 50px;
        }
        .pd-tab-desc .support-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            text-align: center;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--lighter-gray);
        }
        .pd-tab-desc .support-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 28px;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .support-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        .pd-tab-desc .support-content p {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 30px;
        }
        .pd-tab-desc .support-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        .pd-tab-desc .btn-support {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
            border: none;
            cursor: pointer;
        }
        .pd-tab-desc .btn-support:not(.whatsapp) {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(0, 98, 227, 0.3);
        }
        .pd-tab-desc .btn-support.whatsapp {
            background: #25D366;
            color: var(--white);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }
        .pd-tab-desc .btn-support:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }
        /* FAQ Section */
        .pd-tab-desc .faq-section {
            padding: 100px 0;
            background: var(--white);
        }
        .pd-tab-desc .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .pd-tab-desc .faq-item {
            background: var(--off-white);
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .pd-tab-desc .faq-item.active {
            background: var(--white);
            box-shadow: var(--box-shadow);
            border-color: var(--lighter-gray);
        }
        .pd-tab-desc .faq-question {
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }
        .pd-tab-desc .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
        }
        .pd-tab-desc .faq-toggle {
            background: transparent;
            border: none;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--primary);
            font-size: 16px;
        }
        .pd-tab-desc .faq-toggle .fa-minus {
            display: none;
        }
        .pd-tab-desc .faq-item.active .faq-toggle .fa-plus {
            display: none;
        }
        .pd-tab-desc .faq-item.active .faq-toggle .fa-minus {
            display: block;
        }
        .pd-tab-desc .faq-answer {
            padding: 0 30px 20px;
            display: none;
        }
        .pd-tab-desc .faq-item.active .faq-answer {
            display: block;
        }
        .pd-tab-desc .faq-answer p {
            color: var(--gray);
            line-height: 1.7;
        }
        /* Call to Action Section */
        .pd-tab-desc .cta-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .pd-tab-desc .cta-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://otoeko.com/wp-content/uploads/2023/10/autocom-cta-bg.webp');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        .pd-tab-desc .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 98, 227, 0.9), rgba(0, 210, 198, 0.8));
            z-index: 2;
        }
        .pd-tab-desc .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            color: var(--white);
        }
        .pd-tab-desc .cta-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--white);
        }
        .pd-tab-desc .cta-content h2 span {
            border-bottom: 3px solid var(--white);
        }
        .pd-tab-desc .cta-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        .pd-tab-desc .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        .pd-tab-desc .btn-cta-primary {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
            border: none;
        }
        .pd-tab-desc .btn-cta-primary:hover {
            background: var(--off-white);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
        }
        .pd-tab-desc .btn-cta-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        .pd-tab-desc .btn-cta-outline:hover {
            border-color: var(--white);
            transform: translateY(-3px);
        }
        /* Footer */
        .pd-tab-desc .product-footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
        }
        .pd-tab-desc .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .pd-tab-desc .footer-logo {
            max-width: 150px;
        }
        .pd-tab-desc .footer-contact {
            display: flex;
            gap: 30px;
        }
        .pd-tab-desc .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
        }
        .pd-tab-desc .footer-middle {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .pd-tab-desc .footer-middle p {
            color: rgba(255, 255, 255, 0.6);
            max-width: 800px;
            line-height: 1.7;
        }
        .pd-tab-desc .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .pd-tab-desc .footer-social {
            display: flex;
            gap: 15px;
        }
        .pd-tab-desc .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .pd-tab-desc .social-icon:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .pd-tab-desc .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        /* Product Showcase Section */
        .pd-tab-desc .product-showcase-section {
            padding: 100px 0;
            background: var(--white);
        }
        .pd-tab-desc .showcase-content {
            margin-top: 40px;
        }
        .pd-tab-desc .showcase-main-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: stretch;
            margin-bottom: 80px;
        }
        /* Sol Taraf - 360° Video ve Teknik Özellikler */
        .pd-tab-desc .showcase-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .pd-tab-desc .video-360-container {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 20px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--lighter-gray);
        }
        .pd-tab-desc .video-360-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(0, 98, 227, 0.05);
            border-radius: var(--border-radius);
            text-align: center;
        }
        .pd-tab-desc .video-360-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            flex-shrink: 0;
            animation: rotate360 3s linear infinite;
        }
        @keyframes rotate360 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .pd-tab-desc .video-360-details h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }
        .pd-tab-desc .video-360-details p {
            font-size: 14px;
            color: var(--gray);
            margin: 0;
        }
        .pd-tab-desc .video-360-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: var(--border-radius);
        }
        .pd-tab-desc .video-360-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: var(--border-radius);
        }
        /* Teknik Özellikler Kartı */
        .pd-tab-desc .tech-specs-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--lighter-gray);
        }
        .pd-tab-desc .tech-specs-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--lighter-gray);
            text-align: center;
        }
        .pd-tab-desc .specs-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 22px;
            flex-shrink: 0;
        }
        .pd-tab-desc .tech-specs-header h4 {
            font-size: 20px;
            color: var(--dark);
            margin: 0;
            text-align: center;
        }
        .pd-tab-desc .specs-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .pd-tab-desc .spec-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: var(--off-white);
            border-radius: var(--border-radius);
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .pd-tab-desc .spec-item:hover {
            background: var(--white);
            border-color: var(--primary-light);
        }
        .pd-tab-desc .spec-label {
            font-size: 14px;
            color: var(--gray);
            font-weight: 500;
        }
        .pd-tab-desc .spec-value {
            font-size: 14px;
            color: var(--dark);
            font-weight: 600;
        }
        /* Sağ Taraf - Ürün Avantajları ve Paket İçeriği */
        .pd-tab-desc .showcase-right {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .pd-tab-desc .product-advantages {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--lighter-gray);
        }
        .pd-tab-desc .advantages-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .pd-tab-desc .advantages-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .advantages-header h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        .pd-tab-desc .advantages-header p {
            font-size: 15px;
            color: var(--gray);
            margin: 0;
        }
        .pd-tab-desc .advantages-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .pd-tab-desc .advantage-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: var(--off-white);
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid transparent;
            text-align: center;
        }
        .pd-tab-desc .advantage-item:hover {
            background: var(--white);
            border-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.15);
        }
        .pd-tab-desc .advantage-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 6px 12px rgba(0, 98, 227, 0.2);
        }
        .pd-tab-desc .advantage-content h5 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--dark);
            line-height: 1.3;
            text-align: center;
        }
        .pd-tab-desc .advantage-content p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.5;
            margin: 0;
            text-align: center;
        }
        /* Paket İçeriği */
        .pd-tab-desc .package-contents {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--lighter-gray);
        }
        .pd-tab-desc .package-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--lighter-gray);
        }
        .pd-tab-desc .package-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 22px;
            flex-shrink: 0;
        }
        .pd-tab-desc .package-header h4 {
            font-size: 20px;
            color: var(--dark);
            margin: 0;
        }
        .pd-tab-desc .package-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .pd-tab-desc .package-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--off-white);
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .pd-tab-desc .package-item:hover {
            background: var(--white);
            border-color: var(--primary-light);
        }
        .pd-tab-desc .item-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            flex-shrink: 0;
        }
        .pd-tab-desc .item-details h6 {
            font-size: 15px;
            margin-bottom: 5px;
            color: var(--dark);
            line-height: 1.3;
        }
        .pd-tab-desc .item-details p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.4;
            margin: 0;
        }
        /* Kullanıcı Deneyimleri */
        .pd-tab-desc .user-experiences {
            padding: 50px 30px;
            background: var(--off-white);
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--lighter-gray);
        }
        .pd-tab-desc .experiences-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .pd-tab-desc .experiences-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .experiences-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        .pd-tab-desc .experiences-header p {
            font-size: 16px;
            color: var(--gray);
            margin: 0;
        }
        .pd-tab-desc .experiences-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .pd-tab-desc .experience-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .pd-tab-desc .experience-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 98, 227, 0.15);
            border-color: var(--primary-light);
        }
        .pd-tab-desc .experience-rating {
            color: #FFB400;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
        }
        .pd-tab-desc .experience-content {
            margin-bottom: 20px;
        }
        .pd-tab-desc .experience-content p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
            font-style: italic;
            text-align: center;
            margin: 0;
        }
        .pd-tab-desc .experience-user {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center;
        }
        .pd-tab-desc .user-avatar {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            flex-shrink: 0;
        }
        .pd-tab-desc .user-info h6 {
            font-size: 14px;
            margin-bottom: 2px;
            color: var(--dark);
        }
        .pd-tab-desc .user-info p {
            font-size: 12px;
            color: var(--light-gray);
            margin: 0;
        }
        /* Mobile Responsive for Product Showcase */
        @media (max-width: 991px) {
            .pd-tab-desc .showcase-main-area {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .pd-tab-desc .experiences-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .pd-tab-desc .product-showcase-section {
                padding: 60px 0;
            }
            .pd-tab-desc .experiences-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .pd-tab-desc .showcase-left,
            .pd-tab-desc .showcase-right {
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .pd-tab-desc .video-360-container,
            .pd-tab-desc .tech-specs-card,
            .pd-tab-desc .product-advantages,
            .pd-tab-desc .package-contents {
                padding: 20px;
            }
            .pd-tab-desc .experience-card {
                padding: 20px;
            }
            .pd-tab-desc .advantages-list {
                gap: 15px;
            }
            .pd-tab-desc .advantage-item {
                padding: 15px;
            }
        }
        /* Contact Section */
        .pd-tab-desc .contact-section {
            padding: 100px 0;
            background: var(--off-white);
        }
        .pd-tab-desc .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .pd-tab-desc .contact-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .pd-tab-desc .contact-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-light);
        }
        .pd-tab-desc .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 28px;
            color: var(--white);
        }
        .pd-tab-desc .contact-icon.phone {
            background: var(--gradient-primary);
            box-shadow: 0 10px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .contact-icon.email {
            background: var(--gradient-primary);
            box-shadow: 0 10px 20px rgba(0, 98, 227, 0.25);
        }
        .pd-tab-desc .contact-icon.whatsapp {
            background: #25D366;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
        }
        .pd-tab-desc .contact-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        .pd-tab-desc .contact-card p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 30px;
            min-height: 72px; /* To align buttons */
        }
        .pd-tab-desc .contact-button {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            font-size: 15px;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }
        .pd-tab-desc .contact-button.phone-btn {
            background: var(--primary);
            color: var(--white);
        }
        .pd-tab-desc .contact-button.email-btn {
            background: var(--primary);
            color: var(--white);
        }
        .pd-tab-desc .contact-button.whatsapp-btn {
            background: #25D366;
            color: var(--white);
        }
        .pd-tab-desc .contact-button:hover {
            transform: translateY(-3px);
            filter: brightness(1.1);
        }
        /* Responsive Design */
        @media (max-width: 1200px) {
            .pd-tab-desc .container {
                padding: 0 40px;
            }
            .pd-tab-desc .hero-title {
                font-size: 42px;
            }
            .pd-tab-desc .products-comparison {
                gap: 20px;
            }
        }
        @media (max-width: 991px) {
            .pd-tab-desc .contact-grid {
                grid-template-columns: 1fr;
            }
            .pd-tab-desc .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .pd-tab-desc .hero-left {
                text-align: center;
            }
            .pd-tab-desc .hero-description {
                margin-left: auto;
                margin-right: auto;
            }
            .pd-tab-desc .hero-cta-group {
                justify-content: center;
            }
            .pd-tab-desc .compatibility-tags {
                justify-content: center;
            }
            .pd-tab-desc .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pd-tab-desc .software-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .pd-tab-desc .software-info {
                order: 2;
                text-align: center;
            }
            .pd-tab-desc .software-features li {
                justify-content: center;
            }
            .pd-tab-desc .software-cta {
                display: flex;
                justify-content: center;
            }
            .pd-tab-desc .functions-grid {
                grid-template-columns: 1fr;
            }
            .pd-tab-desc .products-comparison {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            .pd-tab-desc .product-card.featured {
                transform: none;
            }
            .pd-tab-desc .testimonials-carousel {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto 40px;
            }
            .pd-tab-desc .testimonial-card:not(:first-child) {
                display: none;
            }
            .pd-tab-desc .footer-top {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
            .pd-tab-desc .footer-contact {
                flex-direction: column;
                gap: 15px;
            }
            .pd-tab-desc .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }
        @media (max-width: 768px) {
            .pd-tab-desc .container {
                padding: 0 20px;
            }
            .pd-tab-desc .hero {
                padding: 80px 0 60px;
            }
            .pd-tab-desc .hero-title {
                font-size: 36px;
            }
            .pd-tab-desc .hero-cta-group {
                flex-direction: column;
            }
            .pd-tab-desc .features-layout {
                grid-template-columns: 1fr;
            }
            .pd-tab-desc .features-grid {
                grid-template-columns: 1fr;
            }
            .pd-tab-desc .section-title {
                font-size: 30px;
            }
            .pd-tab-desc .tabs-nav {
                flex-direction: column;
            }
            .pd-tab-desc .tab-button {
                padding: 15px;
            }
            .pd-tab-desc .tab-pane {
                padding: 30px 20px;
            }
            .pd-tab-desc .cta-buttons {
                flex-direction: column;
            }
            .pd-tab-desc .features-section,
            .pd-tab-desc .software-showcase,
            .pd-tab-desc .diagnostic-functions,
            .pd-tab-desc .products-range,
            .pd-tab-desc .testimonials-section,
            .pd-tab-desc .faq-section {
                padding: 60px 0;
            }
            .pd-tab-desc .faq-question h3 {
                font-size: 16px;
            }
            .pd-tab-desc .installation-layout {
                gap: 40px;
            }
            .pd-tab-desc .support-buttons {
                flex-direction: column;
            }
            .pd-tab-desc .installation-steps {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .pd-tab-desc .installation-steps::before {
                display: none;
            }
            .pd-tab-desc .step-item {
                flex-direction: row;
                text-align: left;
                padding: 20px;
            }
            .pd-tab-desc .step-number {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            .pd-tab-desc .note-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .pd-tab-desc .hero-title {
                font-size: 30px;
            }
            .pd-tab-desc .hero-subtitle {
                font-size: 16px;
            }
            .pd-tab-desc .section-title {
                font-size: 26px;
            }
            .pd-tab-desc .product-controls {
                grid-template-columns: 1fr;
            }
            .pd-tab-desc .cta-content h2 {
                font-size: 28px;
            }
        }
    