:root {
    --primary-white: #ffffff;
    --primary-black: #1a1a1a;
    --primary-dark: #0d0d0d;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d4d4d4;
    --gray-400: #a6a6a6;
    --gray-500: #808080;
    --gray-600: #595959;
    --gray-700: #404040;
    --gray-800: #262626;
    --text-dark: #1a1a1a;
    --text-gray: #595959;
    --text-light: #808080;
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.16);
    --transition-standard: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Technical Specs Hero Section */
.technical-specs-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 70px;
}

.tech-specs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.technical-specs-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.technical-specs-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Specs Grid Section */
.specs-grid-section {
    background: var(--primary-white);
    padding: 4rem 2rem;
}

.specs-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* Spec Grid Card */
.spec-grid-card {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-standard);
    border-top: 5px solid var(--primary-black);
}

.spec-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.spec-grid-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--gray-800) 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.spec-grid-header i {
    font-size: 1.8rem;
    opacity: 0.9;
}

.spec-grid-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

.spec-grid-content {
    padding: 2rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
    transition: var(--transition-standard);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background: var(--gray-100);
    border-radius: 4px;
}

.spec-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: capitalize;
}

.spec-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-black);
    text-align: right;
}

/* Additional Specs Section */
.additional-specs-section {
    background: var(--primary-white);
    padding: 4rem 2rem;
    margin-top: 0;
}

.additional-spec-card {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.additional-spec-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-black);
    padding-left: 1rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-list li {
    padding: 1rem;
    background: var(--primary-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-black);
    transition: var(--transition-standard);
    font-weight: 500;
    color: var(--text-dark);
}

.feature-list li:hover {
    background: var(--primary-white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specs-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .technical-specs-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .specs-grid-container {
        grid-template-columns: 1fr;
    }
    
    .technical-specs-hero {
        padding: 3rem 1rem;
    }
    
    .technical-specs-hero h1 {
        font-size: 2rem;
    }
    
    .technical-specs-hero p {
        font-size: 1rem;
    }
    
    .spec-grid-card {
        border-radius: 12px;
    }
    
    .spec-grid-header {
        padding: 1rem;
    }
    
    .spec-grid-content {
        padding: 1.5rem;
    }
    
    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .spec-value {
        text-align: left;
        align-self: flex-start;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .specs-grid-section {
        padding: 2rem 1rem;
    }
    
    .additional-specs-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .technical-specs-hero h1 {
        font-size: 1.5rem;
    }
    
    .technical-specs-hero p {
        font-size: 0.9rem;
    }
    
    .spec-grid-header h3 {
        font-size: 1.25rem;
    }
    
    .spec-label {
        font-size: 0.85rem;
    }
    
    .spec-value {
        font-size: 0.95rem;
    }
}

/* ===== NO MORE OLD STYLES BELOW ===== */

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/2jz-gte-engine.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content .brand {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-content .model {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-content .subtitle {
    font-size: 0.875rem;
    color: #d4d4d4;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    margin: 1.5rem 0 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Enhanced CTA Buttons for Specs Page */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .cta-button {
    min-width: 180px;
    text-align: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-standard);
    text-decoration: none;
    font-size: 0.95rem;
}

.hero-buttons .primary {
    background: var(--primary-black);
    border: 2px solid var(--primary-white);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.hero-buttons .primary:hover {
    transform: translateY(-3px);
    background: var(--primary-white);
    color: var(--primary-black);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.hero-buttons .secondary {
    background: transparent;
    border: 2px solid var(--primary-white);
    color: white;
    font-weight: 600;
}

.hero-buttons .secondary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Main Content Wrapper */
.content-wrapper {
    background: var(--gray-100);
    padding: 3rem 2rem;
}

/* Page Header */
.page-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-black);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.page-header .lead {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-white) 0%, #f5f5f5 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #d9d9d9;
    text-align: center;
    transition: var(--transition-standard);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-black);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-black);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Acceleration Table */
.acceleration-table {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    overflow-x: auto;
    margin-top: 2rem;
    border-top: 4px solid var(--primary-black);
}

.acceleration-table h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.acceleration-table table {
    width: 100%;
    border-collapse: collapse;
}

.acceleration-table th {
    background: var(--primary-black);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.acceleration-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.acceleration-table tr:hover {
    background: #f5f5f5;
}

.spec-value {
    font-weight: 700;
    color: var(--primary-black);
}

/* Specs Section */
.specs-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: var(--primary-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-black);
}

.specs-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
    border-bottom: 3px solid var(--gray-300);
    padding-bottom: 1rem;
}

.specs-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.spec-card {
    background: linear-gradient(135deg, var(--primary-white) 0%, #f5f5f5 100%);
    border: 2px solid #d9d9d9;
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-standard);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-black);
}

.spec-card h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.75rem;
}

.spec-details {
    display: grid;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #333333;
    transition: var(--transition-standard);
}

.spec-item:hover {
    background: #e8e8e8;
}

.spec-label {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.spec-value {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.1rem;
}

/* Chart Container */
.chart-container {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid #d9d9d9;
}

.chart-container h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

/* Modification Stages */
.mod-stage {
    background: linear-gradient(135deg, var(--primary-white) 0%, #f5f5f5 100%);
    border: 2px solid #d9d9d9;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-standard);
}

.mod-stage:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-black);
}

.mod-stage h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.75rem;
}

.mod-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mod-components,
.performance-gains {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #333333;
}

.mod-components h4,
.performance-gains h4 {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.mod-components ul,
.performance-gains ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mod-components li,
.performance-gains li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.mod-components li::before,
.performance-gains li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Calculator Form */
.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-standard);
    color: var(--text-dark);
    background: var(--primary-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.calculate-btn {
    grid-column: 1 / -1;
    padding: 1rem;
    background: var(--primary-black);
    color: white;
    border: 2px solid var(--primary-black);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-standard);
    font-size: 1rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gray-800);
}

#calculator-results {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-light);
    margin-top: 1.5rem;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .model {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-section {
        padding: 1.5rem;
    }

    .mod-details {
        grid-template-columns: 1fr;
    }

    .acceleration-table table {
        font-size: 0.85rem;
    }

    .acceleration-table td,
    .acceleration-table th {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content .model {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.25rem;
    }

    .quick-stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .cta-button {
        min-width: auto;
        width: 100%;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .acceleration-table {
        overflow-x: scroll;
    }
}

/* ===== NEW STYLES FOR SPECS PAGE ===== */

/* Specs Hero Section */
.specs-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, #262626c7 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.specs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.specs-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.specs-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: slideInDown 0.8s ease;
}

.specs-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.specs-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Quick Stats Section */
.quick-stats-section {
    background: var(--primary-white);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.quick-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.quick-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
    transition: var(--transition-standard);
    border: 1px solid var(--border-light);
}

.quick-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--primary-white);
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-black);
    margin: 0.5rem 0;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specs Container & Grid */
.specs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.specs-grid-section {
    background: var(--primary-white);
    padding: 4rem 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Specification Cards */
.spec-card {
    background: var(--primary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-standard);
    border: 1px solid var(--border-light);
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, #333333 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
    background: #f9f9f9;
    padding: 0.8rem 0.5rem;
    margin: 0.3rem 0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-key {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.spec-val {
    font-weight: 700;
    color: var(--primary-black);
    text-align: right;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    background: var(--primary-white);
    padding: 4rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-standard);
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333333 0%, var(--primary-black) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-black);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Details Section */
.details-section {
    background: var(--primary-white);
    padding: 4rem 2rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.detail-box {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-black);
}

.detail-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li::before {
    content: '▸ ';
    color: var(--primary-black);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #7c7c7c 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-primary {
    background: white;
    color: var(--primary-black);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary-black);
}

/* Footer */
.main-footer {
    background: var(--primary-black);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-footer p {
    margin: 0;
    font-size: 0.95rem;
}

.main-footer i {
    color: #ff6b6b;
}

/* Specs Main */
.specs-main {
    background: var(--primary-white);
}

/* ===== RESPONSIVE UPDATES ===== */

@media (max-width: 1024px) {
    .specs-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .specs-hero {
        padding: 4rem 2rem;
        margin-top: 60px;
    }
    
    .specs-hero-text h1 {
        font-size: 2rem;
    }
    
    .specs-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .quick-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quick-stat {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .specs-hero {
        padding: 2rem 1rem;
        margin-top: 50px;
    }
    
    .specs-hero-text h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .specs-hero-subtitle {
        font-size: 1rem;
    }
    
    .specs-hero-desc {
        font-size: 0.9rem;
    }
    
    .quick-stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .spec-val {
        text-align: left;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* FAQ Section Styling */
.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question::before {
    content: 'Q:';
    color: var(--primary-black);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Comparison Grid Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-box {
    background: var(--primary-white);
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-standard);
}

.comparison-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-black);
}

.comparison-box h3 {
    color: var(--primary-black);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-list li {
    padding: 0.75rem;
    background: #f9f9f9;
    border-left: 3px solid #333333;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.comparison-list li strong {
    color: var(--primary-black);
    font-weight: 700;
}