﻿/* CSS Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-tertiary: #e8e8ed;
    --accent: #ef7f1b;
    --accent-hover: #f59b3d;
    --accent-light: rgba(239, 127, 27, 0.14);
    --bg-accent: #140e3d;
    --bg-accent-light: #1c1850;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #6e6e73;
    --card-bg: #ffffff;
    --card-border: #d2d2d7;
    --card-hover: #ef7f1b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --header-bg: rgba(255,255,255,0.92);
    --header-text: #1d1d1f;
    --footer-bg: #f5f5f7;
    --footer-text: #1d1d1f;
    --footer-text-muted: #86868b;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Header */
.header {
    background-color: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-link:hover {
    color: var(--text-primary);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
}

.logo-text {
    line-height: 1.2;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-nav ul {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

.phone-btn {
    background-color: var(--accent);
    color: #fff;
    padding: 8px 18px;
    border-radius: 980px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.phone-btn:hover {
    background-color: var(--accent-hover);
    color: #fff;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.desktop-nav a {
    color: var(--header-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--bg-accent);
}

/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--bg-accent);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--header-bg);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 80px;
    padding-bottom: 40px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--card-border);
}

.mobile-nav-link {
    display: block;
    padding: 20px 30px;
    color: var(--header-text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--bg-secondary);
    color: var(--bg-accent);
    padding-left: 40px;
}

/* Overlay for mobile menu */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .header .container {
        flex-wrap: nowrap;
    }

    .phone-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services h2,
    .articles h2,
    .faq h2 {
        font-size: 32px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--card-border);
    transition: all 0.25s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
}

.service-card .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.step {
    text-align: center;
    padding: 32px 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--accent);
    border-width: 2px;
    position: relative;
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 4px 16px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 24px;
}

.pricing-card ul {
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-secondary);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Why Us */
.why-us {
    padding: 80px 0;
    background: var(--bg-primary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.why-us-item {
    padding: 32px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    transition: transform 0.2s ease;
}

.why-us-item:hover {
    transform: translateY(-4px);
}

.why-us-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.why-us-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Articles Section */
.articles {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.articles::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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.articles .container {
    position: relative;
    z-index: 1;
}

.articles h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.articles h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-accent), var(--bg-accent-light));
    margin: 30px auto;
    border-radius: 2px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px var(--shadow-color);
}

.article-card:hover {
    transform: translateY(-10px);
    border-color: var(--bg-accent);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.article-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.article-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: var(--text-primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-card p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.article-card .read-more {
    display: inline-block;
    padding: 15px 25px 25px;
    color: var(--bg-accent-light);
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.article-card .read-more:hover {
    color: var(--bg-accent);
}

/* Models Section */
.models {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.85) 100%), url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.models::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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.models .container {
    position: relative;
    z-index: 1;
}

.models h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.models h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-accent), var(--bg-accent-light));
    margin: 30px auto;
    border-radius: 2px;
}

.models-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.models-list span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.models-list span:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--bg-accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 103, 0, 0.4);
}

/* Hero Section - Apple Style */
.hero {
    padding: clamp(48px, 10vw, 80px) 0 0;
    text-align: center;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    padding: 6px 14px;
    background: var(--accent-light);
    border-radius: 980px;
}

.hero h1 {
    font-size: clamp(36px, 10vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #5e5ce6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 4.5vw, 22px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.45;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 4vw, 24px);
    margin-bottom: clamp(28px, 6vw, 48px);
    flex-wrap: wrap;
}

.btn-link {
    color: var(--accent);
    font-size: 17px;
    font-weight: 500;
    background: transparent;
    padding: 14px 8px;
}

.btn-link:hover {
    color: var(--accent-hover);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-image {
    margin-top: clamp(24px, 6vw, 40px);
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Stats */
.stats {
    padding: 60px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--card-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #5e5ce6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Cases */
.cases {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.case-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-body {
    padding: 24px;
}

.case-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.case-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.case-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--card-bg);
    padding: clamp(32px, 6vw, 60px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    align-items: center;
}

.contact-form-info h2 {
    text-align: left;
    font-size: 40px;
    margin-bottom: 16px;
}

.contact-form-info p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-benefits li {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-field input,
.form-field textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 4px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 980px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: scale(1.02);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.hero-phones {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.hero-phones a {
    color: var(--text-primary);
}

.hero-phones a:hover {
    color: var(--accent);
}

.hero-phones-sep {
    color: var(--text-secondary);
}

/* Features */
.features {
    padding: 60px 0 80px;
    background: var(--bg-primary);
}

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

.feature-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card,
.brand-card,
.case-card,
.pricing-card,
.why-us-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:focus-visible,
.brand-card:focus-visible,
.case-card:focus-visible,
.pricing-card:focus-visible,
.why-us-item:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.service-card:active,
.brand-card:active,
.case-card:active,
.pricing-card:active,
.why-us-item:active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Section Headers */
h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

/* Brands */
.brands {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--card-border);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(12px, 3vw, 20px);
}

.brand-card {
    background: var(--card-bg);
    padding: clamp(18px, 3vw, 24px) clamp(12px, 3vw, 16px);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    border: 1px solid var(--card-border);
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-card span {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* Article Hero Section */
.article-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.85) 100%), url('https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.article-hero h1 {
    font-size: 56px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.article-hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.article-hero .tags {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-hero .tags span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 14px;
}

.article-hero .benefits {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.article-hero .benefits span {
    background: rgba(255, 103, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 103, 0, 0.5);
    color: #fff;
    font-size: 14px;
}

/* Article Content Section */
.article-content {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}

.article-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.article-content .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.article-content .feature-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: var(--card-bg);
    border-radius: 10px;
    border-left: 4px solid var(--bg-accent);
    color: var(--text-secondary);
    font-size: 18px;
}

.article-content .warning {
    color: #dc3545;
    font-weight: bold;
    margin: 20px 0;
}

.article-content .steps-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.article-content .steps-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 18px;
    display: flex;
    align-items: center;
}

.article-content .steps-list li::before {
    content: counter(step);
    counter-increment: step;
    width: 35px;
    height: 35px;
    background: var(--bg-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.article-content .steps-list {
    counter-reset: step;
}

.article-content .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-content .stat-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--card-border);
    box-shadow: 0 8px 32px var(--shadow-color);
    text-align: center;
}

.article-content .stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 10px;
}

.article-content .stat-value {
    display: block;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: bold;
}

.article-content .guarantee-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.article-content .guarantee-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: var(--card-bg);
    border-radius: 10px;
    border-left: 4px solid var(--bg-accent);
    color: var(--text-secondary);
    font-size: 18px;
}

.article-content .cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-accent-light) 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.article-content .cta-section h2 {
    color: #fff;
    margin-bottom: 30px;
}

.article-content .cta-section .btn {
    background: #fff;
    color: var(--bg-accent);
}

.article-content .cta-section .btn:hover {
    background: var(--card-bg);
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 15px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 13px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    padding: 0;
}

.faq-item summary {
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.contact-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.contact-phone {
    display: inline-block;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.map-container {
    text-align: center;
}

.map-container iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.map-btn {
    display: inline-block;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-col a {
    color: var(--text-secondary);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Article Full Page Styles */
.article-full {
    padding: 60px 0;
}

.article-full .container {
    padding: 40px;
    border-radius: 15px;
}

/* Broken Screen Page Background */
.article-full.bg-broken-screen {
    background: linear-gradient(135deg, #ef7f1b 0%, #f5a04d 50%, #c45f0f 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Not Turning On Page Background */
.article-full.bg-not-turning-on {
    background: linear-gradient(135deg, #f5a04d 0%, #ef7f1b 50%, #c45f0f 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Boot Loop Page Background */
.article-full.bg-boot-loop {
    background: linear-gradient(135deg, #FF2D55 0%, #FF375F 50%, #FF453A 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.article-header {
    margin-bottom: 40px;
}

.article-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.article-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.article-header .article-meta {
    color: var(--text-secondary);
    font-size: 14px;
}

.article-header.with-background {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.article-header.with-background img {
    display: none;
}

.article-header.with-background h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.article-header.with-background .article-meta {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 16px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content ul li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.article-content ul li::marker {
    color: var(--accent);
}

.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content ol li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
    padding-left: 10px;
}

.article-content ol li::marker {
    color: var(--accent);
    font-weight: bold;
}

.article-content strong {
    color: var(--accent);
    font-weight: bold;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .services h2,
    .articles h2,
    .models h2,
    .faq h2,
    .contact h2 {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        padding: 56px 0 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .contact-strip .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .services,
    .articles,
    .models,
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    .services h2,
    .articles h2,
    .models h2,
    .faq h2,
    .contact h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .models-list {
        gap: 15px;
    }
    
    .models-list span {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .contact-grid,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-header h1 {
        font-size: 32px;
    }
    
    .article-content h2 {
        font-size: 28px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
    
    .article-content p,
    .article-content ul li {
        font-size: 16px;
    }
    
    .article-footer {
        flex-direction: column;
    }
    
    .article-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 30px;
        letter-spacing: 0.5px;
    }
    
    .hero-buttons .btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .services,
    .articles,
    .models,
    .faq,
    .contact {
        padding: 50px 0;
    }
    
    .services h2,
    .articles h2,
    .models h2,
    .faq h2,
    .contact h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .services-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .models-list {
        flex-direction: column;
        align-items: center;
    }
    
    .models-list span {
        width: 100%;
        text-align: center;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-item h3 {
        font-size: 20px;
    }
    
    .faq-item p {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-form h3 {
        font-size: 24px;
    }
    
    .article-header h1 {
        font-size: 26px;
    }
    
    .article-header img {
        max-height: 300px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .article-content p,
    .article-content ul li {
        font-size: 15px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 64px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Page */
.service-hero {
    padding: 80px 0 60px;
    background: var(--bg-primary);
    text-align: center;
}

.back-link {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.service-hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-hero .hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
}

.service-content {
    padding: 60px 0 100px;
    background: var(--bg-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.content-main {
    background: var(--card-bg);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
}

.content-main h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 24px;
}

.content-main h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.content-main p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.warning-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left: 4px solid #ff453a;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin: 24px 0;
}

.warning-box strong {
    display: block;
    color: #ff453a;
    margin-bottom: 8px;
    font-size: 15px;
}

.warning-box p {
    color: var(--text-primary);
    margin: 0;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.feature-list li {
    padding: 12px 16px 12px 36px;
    margin-bottom: 8px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-primary);
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 12px;
    color: var(--accent);
    font-weight: 700;
}

.steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step;
    margin: 16px 0 24px;
}

.steps-list li {
    padding: 16px 16px 16px 56px;
    margin-bottom: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-primary);
    position: relative;
    counter-increment: step;
    line-height: 1.5;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 14px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
    align-self: start;
}

.price-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 2px solid var(--accent);
    text-align: center;
}

.price-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    margin: 8px 0 12px;
    letter-spacing: -1px;
}

.price-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.info-card {
    background: var(--card-bg);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
}

.info-card h4 {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.info-card p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 768px) {
    .service-hero h1 { font-size: 36px; }
    .service-hero { padding: 50px 0 30px; }
    .content-grid { grid-template-columns: 1fr; gap: 24px; }
    .content-main { padding: 28px; }
    .content-main h2 { font-size: 24px; }
    .content-sidebar { position: static; }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 52px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 44px; }
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form-wrapper { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

@media (max-width: 768px) {
    .hero { padding: 50px 0 0; }
    .hero h1 { font-size: 36px; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 17px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
    h2 { font-size: 32px; letter-spacing: -0.5px; }
    .section-subtitle { font-size: 16px; margin-bottom: 32px; }
    .stat-number { font-size: 36px; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .feature-item { padding: 24px 16px; }
    .brands-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
    .brand-card { padding: 18px 12px; }
    .brand-logo { width: 36px; height: 36px; }
    .brand-card span { font-size: 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-form-wrapper { padding: 28px; }
    .contact-form-info h2 { font-size: 28px; }
    .desktop-nav { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
}









.socials {
    padding: 60px 0;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.social-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: #ef7f1b;
}

.social-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.social-card h3 {
    font-size: 18px;
    margin: 0;
}