/* ICON Rocklear Page Specific Styles */

.icon-rocklear-page {
    background: #0a0a0a;
}

/* Hero Section */
.rocklear-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.rocklear-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fbbf24" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23fbbf24" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="%23f59e0b" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.rocklear-hero .hero-content {
    position: relative;
    z-index: 2;
}

.rocklear-hero .hero-badge span {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.icon-brand {
    color: #fbbf24;
    font-weight: 700;
}

.rocklear-brand {
    color: #f59e0b;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
    display: block;
}

.hero-stats .stat-label {
    color: #d1d5db;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rocklear-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: black;
    font-weight: 700;
}

.rocklear-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
}

/* Technology Comparison */
.technology-comparison {
    padding: 5rem 0;
    background: #111827;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #4b5563;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.comparison-card h3 {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.comparison-detail {
    background: rgba(251, 191, 36, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #fbbf24;
    color: #f3f4f6;
    font-size: 0.875rem;
}

/* Performance Table */
.performance-table {
    padding: 5rem 0;
    background: white;
    color: black;
}

.table-container {
    overflow-x: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.comparison-table .rocklear-col {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    font-weight: 600;
    color: #92400e;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

/* Installation Process */
.installation-process {
    padding: 5rem 0;
    background: #0f172a;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: #1e293b;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Pricing Section */
.rocklear-pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.pricing-header h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-range {
    font-size: 3rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.pricing-features,
.warranty-info {
    margin-bottom: 2rem;
}

.pricing-features h4,
.warranty-info h4 {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pricing-features ul,
.warranty-info ul {
    list-style: none;
    color: #e5e7eb;
}

.pricing-features li,
.warranty-info li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.pricing-features li:before,
.warranty-info li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rocklear-cta {
    width: 100%;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: black;
    font-weight: 700;
}

.rocklear-cta:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Contact Section */
.rocklear-contact {
    padding: 5rem 0;
    background: #374151;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
}

.contact-title {
    font-weight: 600;
    color: #fbbf24;
}

.contact-value {
    color: #e5e7eb;
}

.consultation-form {
    background: rgba(30, 41, 59, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.consultation-form h4 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.consultation-form .form-group {
    margin-bottom: 1rem;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    background: #111827;
    color: white;
    font-size: 1rem;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.consultation-form textarea {
    height: 100px;
    resize: vertical;
}

.consultation-form .form-submit {
    width: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: black;
    font-weight: 700;
}

/* Navigation Active State */
.main-nav a.active {
    color: #fbbf24;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats .stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .hero-stats .stat-number {
        font-size: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .table-container {
        font-size: 0.75rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price-range {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .rocklear-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .comparison-card,
    .process-step,
    .consultation-form {
        padding: 1.5rem;
    }
}

@media (max-width: 450px) {
    .rocklear-hero h1 {
        font-size: 1.8rem;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .pricing-header h3 {

        font-size: 1.3rem;
    }

    .price-range {
        font-size: 2rem;
    }

    .rocklear-cta {
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}