/* ========================================
   プレミアムボディシールド - Premium Protection Film
   Premium, Luxurious Design System
   有限会社ワールドモーターサービス
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Premium Dark Theme */
    --color-bg: #0a0a0f;
    --color-bg-alt: #121218;
    --color-bg-card: #1a1a24;
    --color-bg-elevated: #22222e;
    
    --color-text: #ffffff;
    --color-text-secondary: #a0a0b0;
    --color-text-muted: #606070;
    
    /* Gold/Premium Accent */
    --color-primary: #c9a96e;
    --color-primary-light: #e5d4a8;
    --color-primary-dark: #a08050;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #f5e7c3 50%, #c9a96e 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a24 100%);
    --gradient-card: linear-gradient(145deg, #1a1a24 0%, #121218 100%);
    
    /* Typography */
    --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
}

.loading-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    width: 100%;
    text-align: center;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    animation: loading 1.5s ease-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--color-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
        var(--gradient-dark);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: float 8s infinite;
}

@keyframes float {
    0%, 100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 0.5em;
    color: var(--color-text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 2;
    margin-bottom: 3rem;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* Section Styles */
section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header.light {
    color: var(--color-text);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
}

.section-title .highlight {
    font-family: var(--font-display);
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    text-align: center;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    line-height: 2;
}

/* Why Us Section */
.why-us {
    background: var(--color-bg-alt);
}

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

.why-card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(201, 169, 110, 0.1);
}

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

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: rgba(201, 169, 110, 0.08);
    line-height: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-title span {
    color: var(--color-primary);
}

.card-text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
}

/* Price Plans Section */
.price-plans {
    background: var(--color-bg);
}

.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.plan-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.plan-tab:hover {
    border-color: rgba(201, 169, 110, 0.3);
}

.plan-tab.active {
    background: var(--gradient-gold);
    border-color: transparent;
}

.tab-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.plan-tab.active .tab-label {
    color: var(--color-bg);
}

.tab-price {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.plan-tab.active .tab-price {
    color: rgba(10, 10, 15, 0.7);
}

/* Hypercar tab special styling */
/* Hypercar tab uses default styling */

.price-tables {
    position: relative;
}

.price-table {
    display: none;
    animation: fadeIn 0.5s ease;
}

.price-table.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.table-header {
    text-align: center;
    margin-bottom: 2rem;
}

.table-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.table-header h3 span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.table-header p {
    color: var(--color-text-muted);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.price-item {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.price-item.featured {
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.price-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.price-item.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--color-bg);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
}

.price-item h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

/* Default: original price is the hero */
.price-value {
    margin-bottom: 2rem;
}

.price-value .currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.price-value .amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Default: hide special price */
.price-special {
    display: none;
}

/* === When special pricing is ON === */
.special-pricing .price-value {
    margin-bottom: 0.5rem;
    opacity: 0.7;
    display: inline-block;
}

.special-pricing .price-value .currency,
.special-pricing .price-value .amount,
.special-pricing .price-value .tax {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.75);
}

.special-pricing .price-value .currency {
    font-size: 1rem;
    font-weight: 400;
}

.special-pricing .price-value .amount {
    font-size: 1.4rem;
    font-weight: 400;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.special-pricing .price-value .tax {
    font-size: 0.75rem;
}

.special-pricing .price-special {
    display: flex;
}

.price-value .tax {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.price-special {
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.special-label {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.1em;
}

.special-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.price-features .check {
    color: var(--color-primary);
    font-weight: 600;
}

.plan-desc {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.price-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--color-bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.price-btn.secondary {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.price-btn.secondary:hover {
    background: rgba(201, 169, 110, 0.1);
}

.price-note {
    margin-top: var(--space-lg);
    padding: 1.5rem;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.price-note p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-note p:last-child {
    margin-bottom: 0;
}

/* Vehicle Examples */
.vehicle-examples {
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.vehicle-category {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.vehicle-category:last-child {
    margin-bottom: 0;
}

.vehicle-category strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Recommended Badge */
.price-item.recommended {
    border-color: rgba(201, 169, 110, 0.3);
}

.price-item.recommended .price-badge {
    background: linear-gradient(135deg, #4a90e2 0%, #67b3f5 100%);
}

/* Hypercar Section */
.hypercar-section {
    margin-top: 4rem;
    background: linear-gradient(145deg, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.05) 100%);
    border: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.hypercar-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hypercar-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.hypercar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.4);
}

.hypercar-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-bg);
}

.hypercar-header h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hypercar-header h3 span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    -webkit-text-fill-color: var(--color-text-secondary);
}

.hypercar-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.hypercar-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hypercar-vehicles {
    text-align: center;
    margin-bottom: 2rem;
}

.hypercar-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--color-bg);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.hypercar-vehicles p {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
}

.hypercar-description {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hypercar-description p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.hypercar-description strong {
    color: var(--color-primary);
    font-weight: 600;
}

.hypercar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gradient-gold);
    color: var(--color-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 320px;
}

.hypercar-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(201, 169, 110, 0.5);
}

.hypercar-btn svg {
    transition: transform var(--transition-fast);
}

.hypercar-btn:hover svg {
    transform: translateX(4px);
}

/* Film Types Section */
.film-types {
    background: var(--color-bg-alt);
}

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

.film-card {
    background: var(--gradient-card);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.film-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: var(--shadow-lg);
}

.film-visual {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.film-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.film-icon.clear {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: shimmer 3s infinite;
}

.film-icon.matte {
    background: linear-gradient(135deg, #3a3a4a 0%, #2a2a3a 100%);
    border: 2px solid #4a4a5a;
}

.film-icon.carbon {
    background: repeating-linear-gradient(
        45deg,
        #1a1a1a 0px,
        #1a1a1a 2px,
        #2a2a2a 2px,
        #2a2a2a 4px
    );
    border: 2px solid #3a3a3a;
}

.film-icon.color {
    background: linear-gradient(135deg, 
        #c9a96e 0%,
        #e74c3c 25%,
        #3498db 50%,
        #2ecc71 75%,
        #c9a96e 100%);
    background-size: 200% 200%;
    animation: colorShift 4s ease infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

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

.film-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.film-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Film card AI badge */
.film-card--color {
    position: relative;
    cursor: pointer;
}
.film-card-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-gold);
    color: #1a1a2e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4);
    z-index: 2;
    animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(201, 169, 110, 0.7); }
}

/* Film card simulator button */
.film-sim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1.75rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 50px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.film-sim-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}
.film-sim-btn span {
    position: relative;
    z-index: 1;
}
.film-sim-btn:hover {
    border-color: rgba(201, 169, 110, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
}
.film-sim-btn:hover::before {
    opacity: 0.12;
}
.film-sim-btn:active {
    transform: translateY(0);
}

/* Color swatches section on plan page */
.color-swatches-section {
    margin-top: var(--space-lg);
    text-align: center;
}
.swatches-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.sim-cta-btn {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.75rem 2rem;
    background: var(--gradient-gold);
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    transition: all 0.3s ease;
}
.sim-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.5);
}
.swatches-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
.swatches-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.swatch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 110, 0.08);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    min-width: 80px;
}
.swatch-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
}
.swatch-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.swatch-name {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
}
.swatch-item:hover .swatch-name {
    color: var(--color-primary);
}
.swatch-item {
    position: relative;
    overflow: hidden;
}
.swatch-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    padding: 0.5rem;
    pointer-events: none;
}
.swatch-overlay span {
    color: var(--color-primary);
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.swatch-item:hover .swatch-overlay {
    opacity: 1;
}

/* Process Section */
.process {
    background: var(--color-bg);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(201, 169, 110, 0) 0%,
        rgba(201, 169, 110, 0.5) 10%,
        rgba(201, 169, 110, 0.5) 90%,
        rgba(201, 169, 110, 0) 100%);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 3rem);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 3rem);
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-number span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-bg);
}

.step-content {
    background: var(--gradient-card);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex: 1;
    transition: all var(--transition-normal);
}

.step-content:hover {
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Case Studies Section */
.case-studies {
    background: linear-gradient(135deg, #0a0a0f 0%, #121218 100%);
    position: relative;
    padding: var(--space-xl) 0;
}

.case-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.case-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.case-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.case-type {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.case-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    user-select: none;
}

.comparison-image {
    position: absolute;
    inset: 0;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.image-label {
    position: absolute;
    bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
}

.before-image .image-label {
    left: 1.5rem;
    color: var(--color-text-secondary);
}

.after-image .image-label {
    right: 1.5rem;
    color: var(--color-primary);
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    z-index: 11;
    pointer-events: none;
}

.slider-button {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
    transition: transform var(--transition-fast);
}

.comparison-slider:active .slider-button {
    transform: scale(0.9);
}

.slider-button svg {
    width: 24px;
    height: 24px;
    color: var(--color-bg);
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #0f0f18 0%, #1a1a28 100%);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.guarantee-card:hover {
    background: rgba(201, 169, 110, 0.05);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-8px);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.guarantee-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Brands Section */
.brands {
    background: var(--color-bg-alt);
    overflow: hidden;
}

.brands-marquee {
    margin-top: var(--space-lg);
    overflow: hidden;
    position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 1;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-alt) 0%, transparent 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg-alt) 0%, transparent 100%);
}

.brands-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
}

.brands-track span {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.brands-track span:hover {
    color: var(--color-primary);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Contact Section */
.contact {
    background: var(--color-bg);
    padding: var(--space-xl) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.contact-title .highlight {
    font-family: var(--font-display);
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-desc {
    color: var(--color-text-secondary);
    line-height: 2;
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-item {
    background: var(--gradient-card);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.info-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.info-item p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.info-item p:last-child {
    margin-bottom: 0;
}

.info-item p.muted {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.info-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-item a:hover {
    color: var(--color-primary-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text .label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.contact-text .value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
}

.contact-text a.value:hover {
    color: var(--color-primary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-text .value.company-name {
    font-weight: 600;
    color: var(--color-primary);
}

.contact-form-wrapper {
    background: var(--gradient-card);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group .required {
    color: var(--color-primary);
    font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: var(--color-bg);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--gradient-gold);
    color: var(--color-bg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Footer */
.footer {
    background: #050508;
    padding: var(--space-lg) 0 var(--space-md);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .logo-sub {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-info .footer-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-info .footer-links li {
    margin: 0;
}

.footer-info .footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-info .footer-links a:hover {
    color: var(--color-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-sub {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--color-bg);
}

/* Animations for elements entering viewport */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-line {
        left: 30px;
    }
    
    .process-step {
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row;
        padding-left: 80px !important;
    }
    
    .step-number {
        left: 30px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 5rem;
        --space-lg: 3rem;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta span {
        display: none;
    }
    
    .header-cta {
        padding: 0.75rem;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .price-item.featured {
        transform: none;
        order: -1;
    }
    
    .price-item.featured:hover {
        transform: translateY(-8px);
    }
    
    .plan-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .plan-tab {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-info .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .process-timeline {
        padding-left: 0;
    }
    
    .process-line {
        left: 20px;
    }
    
    .process-step {
        padding-left: 60px !important;
    }
    
    .step-number {
        left: 20px;
        width: 40px;
        height: 40px;
    }
    
    .step-number span {
        font-size: 1rem;
    }
    
    /* Responsive Case Studies */
    .case-slider-wrapper {
        padding: 0 var(--space-sm);
    }
    
    .case-info {
        margin-bottom: 2rem;
    }
    
    .case-info h3 {
        font-size: 1.5rem;
    }
    
    .comparison-slider {
        border-radius: var(--radius-lg);
    }
    
    .image-label {
        bottom: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .before-image .image-label {
        left: 1rem;
    }
    
    .after-image .image-label {
        right: 1rem;
    }
    
    .slider-handle {
        width: 48px;
        height: 48px;
    }
    
    /* Responsive Vehicle Examples */
    .vehicle-examples {
        padding: 1.25rem;
    }
    
    .vehicle-category {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    /* Responsive Hypercar Section */
    .hypercar-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .hypercar-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .hypercar-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .hypercar-header h3 {
        font-size: 2rem;
    }
    
    .hypercar-subtitle {
        font-size: 1rem;
    }
    
    .hypercar-description {
        padding: 1.5rem;
    }
    
    .hypercar-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .why-card,
    .price-item,
    .film-card,
    .guarantee-card,
    .step-content {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    /* Extra small screen adjustments */
    .vehicle-examples {
        padding: 1rem;
    }
    
    .vehicle-category {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .hypercar-section {
        padding: 1.5rem 1rem;
    }
    
    .hypercar-header h3 {
        font-size: 1.75rem;
    }
    
    .hypercar-header h3 span {
        font-size: 1rem;
        display: block;
        margin-top: 0.25rem;
    }
    
    .hypercar-vehicles p {
        font-size: 1rem;
    }
    
    .hypercar-description {
        padding: 1.25rem;
    }
    
    .hypercar-description p {
        font-size: 0.95rem;
    }
}
