/* ===== BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== COLORS ===== */
:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;
    --red-400: #f87171;
    --red-500: #ef4444;
}

.text-teal { color: var(--teal-400); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

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

.btn-primary:hover {
    background: var(--teal-400);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background: var(--gray-900);
    color: #fff;
}

.btn-dark:hover {
    background: var(--gray-800);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background: #fff;
    color: var(--teal-700);
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--teal-50);
}

.btn-teal {
    background: var(--teal-500);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
}

.btn-teal:hover {
    background: var(--teal-400);
}

.btn-link {
    color: var(--teal-600);
    font-weight: 500;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
    background: transparent;
}

.header.scrolled {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 32px;
}

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

.logo .custom-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--teal-500);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

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

.logo-name {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    transition: color 0.3s;
    color: #fff;
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transition: color 0.3s;
    color: var(--teal-300);
}

.header.scrolled .logo-name {
    color: var(--gray-900);
}

.header.scrolled .logo-sub {
    color: var(--teal-600);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        margin-left: 0;
    }
}

.nav-desktop .menu,
.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color 0.2s;
    color: rgba(255, 255, 255, 0.9);
}

.header.scrolled .nav-desktop a {
    color: var(--gray-700);
}

.nav-desktop a:hover {
    color: var(--teal-500);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    color: rgba(255, 255, 255, 0.9);
}

.header.scrolled .header-phone {
    color: var(--gray-700);
}

.header-phone:hover {
    color: var(--teal-500);
}

.header-actions .btn {
    background: var(--teal-500);
    color: #fff;
}

.header-actions .btn:hover {
    background: var(--teal-600);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

/* Burger */
.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    color: #fff;
}

.header.scrolled .burger {
    color: var(--gray-700);
}

.burger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .burger:hover {
    background: var(--gray-100);
}

.burger-line {
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s;
}

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

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

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

@media (min-width: 1024px) {
    .burger {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    background: #fff;
    border-top: 1px solid var(--gray-100);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s;
    box-shadow: none;
}

.mobile-menu.open {
    max-height: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
}

.mobile-nav .menu,
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-50);
    transition: color 0.2s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--teal-600);
}

.mobile-menu-footer {
    padding-top: 16px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-weight: 500;
}

.mobile-phone svg {
    color: var(--teal-500);
}

.mobile-menu-footer .btn {
    background: var(--teal-500);
    color: #fff;
    text-align: center;
}

/* ===== ADMIN BAR FIX ===== */
.admin-bar .header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 672px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(94, 234, 212, 0.4);
    color: var(--teal-300);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 24px;
    transition: all 0.7s;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    white-space: pre-line;
    transition: all 0.7s 0.075s;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 512px;
    transition: all 0.7s 0.15s;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    transition: all 0.7s 0.2s;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.stats-row {
    display: flex;
    gap: 32px;
    padding-bottom: 48px;
}

@media (min-width: 1024px) {
    .stats-row {
        padding-bottom: 64px;
    }
}

.stat-item {
    display: none;
}

@media (min-width: 640px) {
    .stat-item {
        display: block;
    }
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

@media (min-width: 1024px) {
    .hero-prev {
        left: 32px;
    }
    .hero-next {
        right: 32px;
    }
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-dot {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    width: 8px;
}

.hero-dot.active {
    width: 32px;
    background: var(--teal-400);
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
}

/* ===== SECTIONS COMMON ===== */
.section-tag {
    color: var(--teal-600);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-tag-light {
    color: var(--teal-400);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 8px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-light {
    color: #fff;
}

.section-desc {
    color: var(--gray-500);
    max-width: 320px;
    font-size: 0.875rem;
    line-height: 1.75;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-desc-center {
    color: var(--gray-500);
    max-width: 672px;
    margin: 16px auto 0;
}

/* ===== CATALOG ===== */
.catalog {
    padding: 96px 0;
    background: var(--gray-50);
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.catalog-tab {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    background: #fff;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.catalog-tab:hover {
    background: var(--gray-100);
}

.catalog-tab.active {
    background: var(--teal-500);
    color: #fff;
    border-color: var(--teal-500);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 224px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: var(--teal-500);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    color: var(--teal-600);
    font-weight: 700;
    font-size: 1.125rem;
}

.product-order {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.2s;
}

.product-order:hover {
    color: var(--teal-600);
}

.product-order svg {
    transition: transform 0.2s;
}

.product-order:hover svg {
    transform: translateX(4px);
}

.catalog-cta {
    margin-top: 48px;
    text-align: center;
}

.catalog-cta p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 96px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

@media (max-width: 1023px) {
    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
}

.gallery-meta {
    color: var(--teal-300);
    font-size: 0.75rem;
    margin-top: 4px;
}

.gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.lightbox.open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 64px;
}

.lightbox-content {
    max-width: 1024px;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-info {
    margin-top: 16px;
}

.lightbox-title {
    color: #fff;
    font-weight: 600;
}

.lightbox-meta {
    color: var(--teal-400);
    font-size: 0.875rem;
    margin-top: 4px;
}

/* ===== ABOUT ===== */
.about {
    padding: 96px 0;
    background: var(--gray-900);
    color: #fff;
    overflow: hidden;
}

.about-top {
    display: grid;
    gap: 64px;
    margin-bottom: 96px;
}

@media (min-width: 1024px) {
    .about-top {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

.about-desc {
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 8px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--teal-400);
}

.about-badge span:last-child {
    color: var(--teal-300);
    font-size: 0.875rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .about-image img {
        height: 384px;
    }
}

.about-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--teal-500);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.float-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
}

.float-label {
    color: var(--teal-100);
    font-size: 0.875rem;
    margin-top: 4px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 96px;
}

@media (min-width: 1024px) {
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-stat {
    text-align: center;
}

.about-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--teal-400);
}

@media (min-width: 1024px) {
    .about-stat-value {
        font-size: 2.25rem;
    }
}

.about-stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-top: 8px;
}

.about-values {
    text-align: center;
}

.values-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: border-color 0.3s;
}

.value-card:hover {
    border-color: rgba(20, 184, 166, 0.3);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400);
    margin-bottom: 16px;
    transition: background 0.3s;
}

.value-card:hover .value-icon {
    background: rgba(20, 184, 166, 0.2);
}

.value-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ===== SERVICES ===== */
.services {
    padding: 96px 0;
    background: var(--gray-50);
}

.services-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    position: relative;
}

@media (min-width: 1024px) {
    .services-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    .services-steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gray-200);
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--teal-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
    position: relative;
    z-index: 1;
}

.step h4 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.step p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.services-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--teal-100);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-500);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--teal-500);
    color: #fff;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.service-detail {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--teal-600);
    background: var(--teal-50);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 500;
}

.services-cta {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .services-cta {
        flex-direction: row;
        justify-content: space-between;
        padding: 56px;
    }
}

.services-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .services-cta h3 {
        font-size: 1.875rem;
    }
}

.services-cta p {
    color: var(--teal-100);
}

/* ===== CALCULATOR ===== */
.calculator {
    padding: 96px 0;
    background: #fff;
}

.calc-layout {
    display: grid;
    gap: 32px;
}

@media (min-width: 1024px) {
    .calc-layout {
        grid-template-columns: 3fr 2fr;
    }
}

.calc-group {
    margin-bottom: 32px;
}

.calc-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.calc-options {
    display: grid;
    gap: 12px;
}

.calc-options:first-of-type {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .calc-options:first-of-type {
        grid-template-columns: repeat(3, 1fr);
    }
}

.calc-options:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr);
}

.calc-option {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s;
    border: 1px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700);
}

.calc-option:hover {
    border-color: var(--teal-300);
}

.calc-option.active {
    background: var(--teal-500);
    color: #fff;
    border-color: var(--teal-500);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.2);
}

.calc-range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-range-value {
    color: var(--teal-600);
    font-weight: 700;
}

.calc-range {
    width: 100%;
    height: 8px;
    appearance: none;
    background: var(--gray-200);
    border-radius: 999px;
    cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-500);
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-500);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.calc-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.calc-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    transition: all 0.2s;
    border: 1px solid var(--gray-200);
    background: #fff;
    color: var(--gray-600);
}

.calc-extra:hover {
    border-color: var(--gray-300);
}

.calc-extra.active {
    background: var(--teal-50);
    color: var(--teal-700);
    border-color: var(--teal-300);
}

.calc-extra span:last-child {
    font-size: 0.75rem;
}

.calc-extra.active span:last-child {
    color: var(--teal-600);
}

.calc-extra:not(.active) span:last-child {
    color: var(--gray-400);
}

/* Calc Result */
.calc-result {
    background: var(--gray-900);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
}

.calc-result-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.calc-result-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400);
}

.calc-result-title {
    font-weight: 600;
}

.calc-result-sub {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.calc-total {
    margin-bottom: 24px;
}

.calc-total-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal-400);
}

.calc-total-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 12px;
    color: var(--gray-400);
}

.calc-total-note svg {
    color: var(--gray-500);
    margin-top: 2px;
    flex-shrink: 0;
}

.calc-total-note p {
    font-size: 0.75rem;
    line-height: 1.75;
}

.calc-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.calc-input::placeholder {
    color: var(--gray-500);
}

.calc-input:focus {
    outline: none;
    border-color: var(--teal-500);
}

.calc-form-submit .btn {
    margin-bottom: 12px;
}

.calc-form-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
}

.calc-success {
    text-align: center;
    padding: 24px 0;
}

.calc-success-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--teal-400);
}

.calc-success-title {
    font-weight: 600;
    color: var(--teal-300);
}

.calc-success-sub {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ===== CONTACTS ===== */
.contacts {
    padding: 96px 0;
    background: var(--gray-50);
}

.contacts-layout {
    display: grid;
    gap: 40px;
}

@media (min-width: 1024px) {
    .contacts-layout {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-value {
    color: var(--gray-800);
    font-weight: 500;
}

a.contact-value:hover {
    color: var(--teal-600);
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts-promo {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    border-radius: 16px;
    color: #fff;
}

.promo-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.promo-text {
    color: var(--teal-100);
    font-size: 0.875rem;
    line-height: 1.75;
}

.promo-address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--teal-200);
    font-size: 0.875rem;
}

/* Contact Form */
.contacts-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.875rem;
    transition: all 0.2s;
    background: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--red-400);
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.1);
}

.form-textarea {
    resize: none;
}

.form-error {
    color: var(--red-500);
    font-size: 0.75rem;
    margin-top: 4px;
    min-height: 18px;
}

.form-row {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form .btn {
    margin-bottom: 12px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
}

.contact-success {
    text-align: center;
    padding: 48px 0;
}

.contact-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--teal-500);
}

.contact-success h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-success p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.contact-success .btn-link {
    margin-top: 24px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-950);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: var(--teal-500);
}

.footer-logo .logo-name {
    color: #fff;
}

.footer-logo .logo-sub {
    color: var(--teal-500);
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-contact:hover {
    color: var(--teal-400);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.3);
    color: var(--teal-400);
}

.footer-col h4 {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.footer-col .btn {
    margin-top: 32px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== WP SPECIFIC ===== */
.site-main {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.entry-content {
    line-height: 1.8;
    color: var(--gray-700);
}

.entry-content p {
    margin-bottom: 16px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content a {
    color: var(--teal-600);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--teal-500);
}

.entry-content blockquote {
    border-left: 4px solid var(--teal-500);
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--gray-600);
}

.entry-content img {
    border-radius: 8px;
    margin: 24px 0;
}

.entry-thumbnail {
    margin-bottom: 32px;
}

.entry-thumbnail img {
    border-radius: 16px;
    width: 100%;
}

.entry-categories {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.entry-categories a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--teal-50);
    color: var(--teal-700);
    border-radius: 999px;
    font-size: 0.875rem;
    margin-right: 8px;
    text-decoration: none;
}

.entry-categories a:hover {
    background: var(--teal-100);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

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