/* ========================================
   MirZaMangal - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --color-brand: #f7931e;
    --color-brand-dark: #d97706;
    --color-brand-light: #fbbf24;
    --color-fire: #ff6b35;
    --color-dark: #1a1a1a;
    --color-dark-lighter: #242424;
    --color-dark-card: #1f1f1f;
    --color-gray: #888888;
    --color-light: #f5f0e8;
    --color-light-alt: #ede5d5;
    --color-success: #22c55e;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --container-width: 1280px;
    --container-narrow: 800px;
    --header-height: 80px;
    
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-brand);
    color: var(--color-dark);
    padding: 0.5rem 1rem;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-brand);
    border-radius: 4px;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.text-brand {
    color: var(--color-brand);
}

.text-fire {
    color: var(--color-fire);
}

.text-muted {
    color: var(--color-gray);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-brand), var(--color-fire), var(--color-brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all var(--transition);
    cursor: pointer;
}

.btn--primary {
    background: var(--color-brand);
    color: var(--color-dark);
}

.btn--primary:hover {
    background: var(--color-brand-dark);
}

.btn--outline {
    border: 1px solid rgba(247, 147, 30, 0.5);
    color: var(--color-brand);
    background: transparent;
}

.btn--outline:hover {
    border-color: var(--color-brand);
    background: rgba(247, 147, 30, 0.1);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

.btn--glow {
    box-shadow: 0 0 20px rgba(247, 147, 30, 0.3), 0 0 40px rgba(255, 107, 53, 0.2);
    animation: fireGlow 2s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(247, 147, 30, 0.3), 0 0 40px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(247, 147, 30, 0.5), 0 0 60px rgba(255, 107, 53, 0.3);
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all var(--transition-slow);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo__icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-brand);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    transition: background var(--transition);
}

.logo:hover .logo__icon {
    background: rgba(247, 147, 30, 0.1);
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__name {
    color: var(--color-brand);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.logo__tagline {
    color: var(--color-gray);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Navigation */
.nav-menu {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: var(--color-brand);
}

/* Header Actions */
.header__actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header__actions {
        display: flex;
    }
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.875rem;
}

.header__phone:hover {
    color: var(--color-brand);
}

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle__line {
    width: 24px;
    height: 2px;
    background: var(--color-brand);
    transition: all var(--transition);
}

.nav-toggle.active .nav-toggle__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu__list {
    margin-bottom: 1rem;
}

.mobile-menu__link {
    display: block;
    padding: 0.75rem 0;
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu__link:hover {
    color: var(--color-brand);
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-brand);
    padding: 0.75rem 0;
}

.mobile-menu .btn {
    margin-top: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.6) 0%,
        rgba(26, 26, 26, 0.3) 40%,
        rgba(26, 26, 26, 0.5) 70%,
        rgba(26, 26, 26, 0.95) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 1rem 4rem;
    max-width: 900px;
}

.hero__subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-brand);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
}

.hero__fire-icon {
    animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero__title--small {
    font-size: clamp(1.75rem, 4vw, 3.5rem);
}

.hero__desc {
    font-size: 1.25rem;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 1rem;
}

.hero__divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-brand), transparent);
    margin: 2rem auto;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-bottom: 2.5rem;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.875rem;
}

.hero__badge svg {
    color: var(--color-brand);
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero__price {
    margin-top: 2rem;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.875rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(247, 147, 30, 0.6);
    animation: bounce 2s infinite;
}

.hero__scroll:hover {
    color: var(--color-brand);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 7rem 0;
    }
}

.section--alt {
    background: var(--color-dark-lighter);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-brand);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section__divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-brand), transparent);
    margin: 1.5rem auto;
}

.section__desc {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section__footer {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    padding: 1.5rem;
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.15);
}

.product-card__icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}

.product-card:hover .product-card__icon {
    border-color: rgba(247, 147, 30, 0.6);
    background: rgba(247, 147, 30, 0.1);
}

.product-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-card__desc {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-card__features {
    margin-bottom: 1.25rem;
}

.product-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.product-card__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-brand);
    border-radius: 50%;
    flex-shrink: 0;
}

.product-card__price {
    color: var(--color-brand);
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about__image-wrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.about__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.stat {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 147, 30, 0.2);
    border-radius: 2px;
    padding: 0.75rem 0.5rem;
    text-align: center;
}

.stat__value {
    display: block;
    color: var(--color-brand);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat__label {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.about__content p {
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 1.5rem;
}

.about__list {
    margin-bottom: 2rem;
}

.about__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.about__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-brand);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.15);
}

.portfolio-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-card__image img {
    transform: scale(1.1);
}

.portfolio-card__category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--color-brand);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
}

.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.portfolio-card:hover .portfolio-card__overlay {
    background: rgba(26, 26, 26, 0.4);
}

.portfolio-card__view {
    color: var(--color-brand);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-brand);
    border-radius: 2px;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-card__view {
    opacity: 1;
}

.portfolio-card__content {
    padding: 1.25rem;
}

.portfolio-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-card__desc {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-card__price {
    color: var(--color-brand);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--color-brand);
    font-size: 2rem;
    transition: color var(--transition);
    z-index: 10;
}

.lightbox__close:hover {
    color: var(--color-brand-light);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-brand);
    transition: color var(--transition);
    padding: 0.5rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    color: var(--color-brand-light);
}

.lightbox__prev {
    left: 1rem;
}

.lightbox__next {
    right: 1rem;
}

.lightbox__content {
    max-width: 900px;
    width: 100%;
}

.lightbox__image {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox__info {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.lightbox__category {
    display: inline-block;
    background: var(--color-brand);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

.lightbox__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox__desc {
    color: rgba(245, 240, 232, 0.6);
    max-width: 500px;
    margin: 0 auto 1rem;
}

.lightbox__price {
    color: var(--color-brand);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ========================================
   WHY US SECTION
   ======================================== */
.whyus__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .whyus__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .whyus__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    padding: 1.5rem;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.15);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}

.feature-card:hover .feature-card__icon {
    border-color: var(--color-brand);
    background: rgba(247, 147, 30, 0.1);
}

.feature-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-brand);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* ========================================
   HOW WE WORK SECTION
   ======================================== */
.steps {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    text-align: center;
    position: relative;
}

/* Connector line */
@media (min-width: 1024px) {
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        left: 60%;
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, rgba(247, 147, 30, 0.4), transparent);
    }
}

.step__number {
    position: absolute;
    top: -8px;
    right: calc(50% - 48px);
    width: 32px;
    height: 32px;
    background: var(--color-brand);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.step__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step__icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(247, 147, 30, 0.2);
    border-radius: 50%;
}

.step__icon::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--color-dark-card);
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 50%;
}

.step__icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: var(--color-brand);
}

.step__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step__subtitle {
    color: var(--color-brand);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step__desc {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.875rem;
    max-width: 250px;
    margin: 0 auto;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion__item {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    text-align: left;
    color: var(--color-light);
    font-weight: 600;
    transition: background var(--transition);
}

.accordion__header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion__icon {
    color: var(--color-brand);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.accordion__item.active .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.accordion__item.active .accordion__content {
    max-height: 500px;
}

.accordion__content p {
    padding: 0 1.25rem 1.25rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    padding: 1.5rem;
    position: relative;
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.15);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(247, 147, 30, 0.1);
    line-height: 1;
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--color-brand);
}

.review-card__date {
    margin-left: auto;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.75rem;
}

.review-card__text {
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.875rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-card__product {
    color: rgba(247, 147, 30, 0.7);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.review-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    background: rgba(247, 147, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    font-weight: 700;
}

.review-card__name {
    font-weight: 600;
    font-size: 0.875rem;
}

.review-card__source {
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.75rem;
}

.reviews__aggregate {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    margin-top: 3rem;
}

.reviews__stars {
    display: flex;
    gap: 0.25rem;
    color: var(--color-brand);
}

.reviews__rating {
    font-size: 1.125rem;
    font-weight: 700;
}

.reviews__count {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.75rem;
}

/* ========================================
   ORDER FORM SECTION
   ======================================== */
.form-card {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    padding: 2rem;
}

@media (min-width: 768px) {
    .form-card {
        padding: 3rem;
    }
}

.form__row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__row .form__group {
    margin-bottom: 0;
}

.form__label {
    display: block;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 1rem;
    color: var(--color-light);
    transition: border-color var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-brand);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f7931e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form__textarea {
    resize: none;
}

.form__privacy {
    text-align: center;
    color: rgba(245, 240, 232, 0.3);
    font-size: 0.75rem;
    margin-top: 1rem;
}

.form__privacy a {
    color: rgba(247, 147, 30, 0.6);
}

.form__privacy a:hover {
    color: var(--color-brand);
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    color: var(--color-success);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: rgba(245, 240, 232, 0.6);
}

/* ========================================
   CONTACTS SECTION
   ======================================== */
.contacts__grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contacts__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item__value {
    color: var(--color-brand);
    font-size: 1.125rem;
    font-weight: 700;
}

.contact-item__value:hover {
    color: var(--color-brand-light);
}

.contact-item__note {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-item__links {
    display: flex;
    gap: 1rem;
}

.contact-item__links a {
    color: var(--color-brand);
    font-size: 0.875rem;
}

.contact-item__links a:hover {
    color: var(--color-brand-light);
}

.contact-item__address {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

.map-placeholder {
    position: relative;
    height: 250px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.map-placeholder .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contacts__workshop {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contacts__workshop h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contacts__workshop p {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contacts__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-brand);
    font-size: 0.875rem;
}

.contact-link:hover {
    color: var(--color-brand-light);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
}

.footer__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand .logo {
    margin-bottom: 1rem;
}

.footer__desc {
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__contacts a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-brand);
    font-size: 0.875rem;
}

.footer__contacts a:nth-child(2) {
    color: rgba(245, 240, 232, 0.5);
}

.footer__contacts a:nth-child(2):hover {
    color: var(--color-brand);
}

.footer__links h4 {
    color: var(--color-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.875rem;
}

.footer__links a:hover {
    color: var(--color-brand);
}

.footer__links address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(245, 240, 232, 0.4);
    font-style: normal;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer__links address svg {
    flex-shrink: 0;
    color: var(--color-brand);
    margin-top: 2px;
}

.footer__links p {
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__legal {
    color: rgba(245, 240, 232, 0.3);
    font-size: 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__legal {
        text-align: left;
    }
}

.footer__legal p:first-child {
    margin-bottom: 0.25rem;
}

.footer__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__privacy {
    color: rgba(245, 240, 232, 0.3);
    font-size: 0.75rem;
}

.footer__privacy:hover {
    color: var(--color-brand);
}

.btn-up {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(247, 147, 30, 0.6);
    transition: all var(--transition);
}

.btn-up:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-btn__tooltip {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 2px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
    opacity: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Intersection Observer animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
