/* ===================================
   WEBBOOST STUDIO - DARK MODERNE
   Design sombre élégant avec accents dorés
   =================================== */

/* INTRO ANIMATION - EXPLOSION DORÉE */
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Masquer le contenu en dessous pendant l'intro */
body:has(.intro-container:not([style*="display: none"])) .hero {
    visibility: hidden;
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../intro-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.logo-explosion {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.studio-explosion {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fcd34d;
    margin-bottom: 2rem;
    line-height: 1;
}

.letter-explode,
.letter-explode-sub {
    display: inline-block;
    opacity: 0;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(252, 211, 77, 0.8);
    transform: scale(0) rotate(0deg);
}

.intro-tagline {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.intro-tagline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease 3s forwards;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #fcd34d, #f59e0b);
    border-radius: 2px;
    animation: loading 2s ease 3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .intro-content {
        width: 90%;
        transform: translate(-50%, -50%);
    }
    
    .logo-explosion {
        font-size: 2.8rem;
    }
    
    .studio-explosion {
        font-size: 1.5rem;
    }
    
    .intro-tagline {
        font-size: 1rem;
    }
    
    .loading-bar {
        width: 200px;
    }
}

/* VARIABLES */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #fcd34d;
    --accent-hover: #f59e0b;
    --border-color: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

section {
    padding: 100px 0;
    overflow-x: hidden;
    width: 100%;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
    transition: opacity 0.3s;
}

.logo img {
    width: 120px;
    height: auto;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.btn-nav {
    background: var(--accent);
    color: #000;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

/* BUTTONS - TOUS ALIGNÉS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    min-height: 50px;
    min-width: 180px;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #000;
}

.btn-small {
    padding: 8px 20px;
    min-height: 40px;
    min-width: 140px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 40%,
        rgba(10, 10, 10, 0.3) 60%,
        rgba(10, 10, 10, 0.7) 80%,
        var(--bg-secondary) 100%
    );
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(252, 211, 77, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(252, 211, 77, 0.5);
    opacity: 0;
    transform: translateY(-200px) scale(0.3);
    text-align: center;
}

.cursor-blink {
    display: none;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header h2.animate {
    opacity: 1;
    transform: scale(1);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.section-header p.animate {
    opacity: 1;
}

/* SERVICES */
.services {
    background: var(--bg-secondary);
}

/* NOTRE APPROCHE */
.approach {
    background: var(--bg-primary);
    position: relative;
}

.approach-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.approach-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(252, 211, 77, 0.15);
}

.step-card.featured {
    background: linear-gradient(135deg, rgba(252, 211, 77, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 32px;
    background: var(--accent);
    color: var(--bg-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(252, 211, 77, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 36px;
    color: var(--bg-primary);
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* SERVICES */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    opacity: 0;
    transform: translateX(-60px);
}

.service-card.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(252, 211, 77, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(252, 211, 77, 0.2), rgba(252, 211, 77, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.service-icon i {
    font-size: 32px;
    color: var(--accent);
}

.service-card:hover .service-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: #000;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 14px;
    color: var(--text-secondary);
}

.service-price strong {
    color: var(--accent);
    font-size: 20px;
    display: block;
    margin-top: 8px;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-60px);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(252, 211, 77, 0.2);
}

.pricing-featured {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(252, 211, 77, 0.1) 0%, var(--bg-card) 100%);
}

.badge-top {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-price {
    margin: 32px 0;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: var(--accent);
    font-size: 16px;
}

.pricing-card .btn {
    margin-top: auto;
}

/* PORTFOLIO */
.portfolio {
    background: var(--bg-secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    opacity: 0;
    transform: translateX(-60px);
}

.portfolio-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(252, 211, 77, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 32px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.portfolio-overlay .btn {
    background: var(--accent);
    color: #000;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.4);
}

.portfolio-overlay .btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.6);
}

.badge-portfolio {
    display: inline-block;
    background: #666;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.badge-gold {
    background: var(--accent);
    color: #000;
}

/* ABOUT */
.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 16px;
    z-index: 0;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text h2.animate {
    opacity: 1;
    transform: scale(1);
}

.about-text h3 {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 32px;
    font-weight: 700;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.about-text h3.animate {
    opacity: 1;
}

.about-text {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* CONTACT */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fcd34d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: var(--accent);
    background: var(--bg-card);
    padding: 0 8px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(252, 211, 77, 0.2), rgba(252, 211, 77, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--accent);
}

.contact-details h4 {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-weight: 600;
}

.contact-details a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-details p {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: #000;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand img {
    width: 150px;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

/* CURSEUR */
.cursor,
.cursor-follower {
    display: none;
}

@media (min-width: 1024px) {
    .cursor,
    .cursor-follower {
        display: block;
        position: fixed;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.15s ease;
    }
    
    .cursor {
        width: 10px;
        height: 10px;
        background: var(--accent);
        top: -5px;
        left: -5px;
    }
    
    .cursor-follower {
        width: 40px;
        height: 40px;
        border: 2px solid var(--accent);
        top: -20px;
        left: -20px;
    }
}

/* BANNIÈRE COOKIES */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent);
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-decoration {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 48px;
        transition: left 0.3s;
        justify-content: flex-start;
        gap: 32px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--accent);
        transition: all 0.3s;
        border-radius: 2px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .approach-intro p {
        font-size: 16px;
    }
    
    .step-card {
        padding: 40px 24px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .services-grid,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .pricing-card {
        padding: 32px 20px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 32px 20px;
    }
    
    .footer-content {
        gap: 40px;
    }
}