/* ==================== RESET & DESIGN SYSTEM ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1C1917;
    --primary-dark: #0c0a09;
    --accent: #CA8A04;
    --accent-warm: #C67B5C;
    --text-dark: #1C1917;
    --text-body: #44403C;
    --text-light: #78716C;
    --text-muted: #A8A29E;
    --bg-white: #FAFAF9;
    --bg-light: #F5F0E8;
    --bg-warm: #FAF8F3;
    --border: #E7E0D5;
    --border-light: #F0EBE3;

    --gradient: linear-gradient(135deg, #1C1917 0%, #292524 100%);
    --gradient-gold: linear-gradient(135deg, #CA8A04 0%, #A16207 100%);
    --gradient-warm: linear-gradient(135deg, #CA8A04 0%, #D4A847 100%);

    --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06), 0 1px 2px rgba(28, 25, 23, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(28, 25, 23, 0.07), 0 2px 4px -2px rgba(28, 25, 23, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(28, 25, 23, 0.08), 0 4px 6px -4px rgba(28, 25, 23, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(28, 25, 23, 0.08), 0 8px 10px -6px rgba(28, 25, 23, 0.04);
    --shadow-gold: 0 4px 14px rgba(202, 138, 4, 0.3);

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-h1: clamp(2.5rem, 5.5vw, 4rem);
    --text-h2: clamp(1.875rem, 3.5vw, 2.75rem);
    --text-h3: clamp(1.125rem, 2vw, 1.375rem);
    --text-body-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    --text-sm: 0.875rem;
    --text-xs: 0.75rem;

    --section-y: clamp(4rem, 8vw, 6rem);
    --container-max: 1200px;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --duration: 0.3s;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== SCROLL REVEAL ==================== */
.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-item:nth-child(3) { transition-delay: 0.16s; }
.reveal-item:nth-child(4) { transition-delay: 0.24s; }
.reveal-item:nth-child(5) { transition-delay: 0.32s; }
.reveal-item:nth-child(6) { transition-delay: 0.4s; }

/* ==================== SECTION HEADERS (replaces repetitive gold bars) ==================== */
.section-header {
    margin-bottom: 2.5rem;
}

.section-header--center {
    text-align: center;
}

.section-title {
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.section-lead {
    color: var(--text-light);
    font-size: var(--text-body-size);
    max-width: 520px;
    line-height: 1.6;
}

.section-header--center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    z-index: 50;
    transition: box-shadow var(--duration) var(--ease);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color var(--duration) var(--ease);
}

.desktop-nav a:hover {
    color: var(--text-dark);
}

.phone {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity var(--duration);
}

.phone:hover {
    opacity: 0.7;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 51;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================== MOBILE MENU ==================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 44;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration) var(--ease);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 45;
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 0.5rem 0;
    flex: 1;
}

.mobile-menu-links li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-links a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--duration);
}

.mobile-menu-links a:hover {
    background: var(--bg-light);
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-phone {
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
}

.mobile-menu-cta {
    display: block;
    text-align: center;
    padding: 0.875rem;
    background: var(--gradient-gold);
    color: #ffffff;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 25, 23, 0.75) 0%,
        rgba(28, 25, 23, 0.45) 50%,
        rgba(28, 25, 23, 0.2) 100%
    );
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 128px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(202, 138, 4, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(202, 138, 4, 0.25);
    color: #D4A847;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s var(--ease-out);
}

.hero-title {
    font-size: var(--text-h1);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.01em;
    animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}

.hero-price {
    display: block;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    text-decoration: none;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* ==================== SOCIAL PROOF BAR ==================== */
.proof-bar {
    background: var(--primary);
    padding: 1.75rem 0;
}

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

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    position: relative;
    padding: 0.25rem 1rem;
}

.proof-item + .proof-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.proof-number {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
    line-height: 1;
}

.proof-suffix {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
}

.proof-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    font-size: 1rem;
    text-align: center;
    font-family: inherit;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-sm);
}

.btn-primary {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(202, 138, 4, 0.4);
}

.btn-accent {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(202, 138, 4, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--text-dark);
}

/* ==================== SECTIONS ==================== */
section {
    padding: var(--section-y) 0;
}

/* ==================== CATALOG ==================== */
.catalog {
    background: var(--bg-white);
}

.catalog-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.catalog-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-light);
}

.catalog-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

.catalog-item:hover img {
    transform: scale(1.04);
}

/* Persistent info overlay on catalog cards */
.catalog-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.85) 0%, rgba(28, 25, 23, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.catalog-style {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 600;
}

.catalog-name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

.catalog-price {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.catalog-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.catalog-cta p {
    color: var(--text-light);
    font-size: var(--text-body-size);
    margin-bottom: 1.25rem;
}

/* ==================== ADVANTAGES (numbered, not icon-circle) ==================== */
.advantages {
    background: var(--bg-warm);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.advantage-card {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.advantage-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

.advantage-num {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.02em;
    transition: color var(--duration);
}

.advantage-card:hover .advantage-num {
    color: var(--accent);
}

.advantage-text h3 {
    font-size: var(--text-h3);
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
}

.advantage-text p {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ==================== STEPS ==================== */
.steps-section {
    background: var(--bg-white);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 2rem auto 0;
}

.step {
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: var(--text-h3);
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.step-connector {
    width: 60px;
    height: 0;
    border-top: 2px dashed var(--border);
    margin-top: 22px;
    flex-shrink: 0;
}

/* ==================== GALLERY — BENTO GRID ==================== */
.gallery {
    background: var(--bg-light);
}

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 0.75rem;
}

/* First item: featured, spans 2 cols & 2 rows */
.gallery-featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Last item: wide, spans 2 cols */
.gallery-wide {
    grid-column: 2 / 4;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.6) 0%, transparent 100%);
    padding: 2.5rem 1rem 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.gallery-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.gallery-caption {
    color: #ffffff;
    font-size: var(--text-sm);
    font-weight: 600;
}

/* ==================== FAQ ==================== */
.faq {
    background: var(--bg-warm);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: border-color var(--duration) var(--ease);
}

.faq-item[open] {
    border-color: var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--text-muted);
    transform: translate(-50%, -50%);
    transition: transform var(--duration) var(--ease);
    border-radius: 1px;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ==================== CTA SECTION — DARK ==================== */
.cta-section {
    padding: var(--section-y) 0;
    background: var(--primary);
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.cta-inner p {
    font-size: var(--text-body-size);
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0c0a09;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-sm);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--duration);
    font-size: var(--text-sm);
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    font-size: var(--text-sm);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    transition: all var(--duration) var(--ease);
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--text-xs);
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 60;
    inset: 0;
    background-color: rgba(28, 25, 23, 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem;
    overflow-y: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 8vh auto;
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s var(--ease-out);
    box-shadow: 0 25px 50px rgba(28, 25, 23, 0.2);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    background: var(--bg-light);
    border-radius: 50%;
    transition: all var(--duration);
    line-height: 1;
    border: none;
}

.modal-close:hover {
    color: var(--text-dark);
    background: var(--border);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.modal-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    background: rgba(202, 138, 4, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--accent);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.modal-header p {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin: 0;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-field label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-body);
}

.modal-content input,
.modal-content select {
    height: 44px;
    padding: 0 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    transition: border-color var(--duration), box-shadow var(--duration);
    font-family: inherit;
    background: #ffffff;
    color: var(--text-dark);
}

.modal-content input::placeholder {
    color: var(--text-muted);
}

.modal-content input:focus,
.modal-content select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.1);
}

.modal-content .btn {
    margin-top: 0.125rem;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-consent {
    font-size: var(--text-xs) !important;
    color: var(--text-muted) !important;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1.4;
}

/* ==================== STICKY MOBILE CTA ==================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    z-index: 40;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(28, 25, 23, 0.08);
    transform: translateY(100%);
    transition: transform var(--duration) var(--ease);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ==================== FLOATING BUTTONS ==================== */
.social-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 39;
    transition: bottom var(--duration);
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--duration) var(--ease);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .catalog-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .gallery-featured {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-wide {
        grid-column: 1 / 3;
    }
}

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

    .phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .sticky-cta {
        display: flex;
    }

    .social-float {
        bottom: 80px;
        right: 16px;
    }

    .social-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0;
    }

    .proof-item + .proof-item::before {
        display: none;
    }

    .proof-item:nth-child(even)::before {
        display: block;
    }

    .catalog-gallery {
        grid-template-columns: 1fr;
    }

    .catalog-item img {
        height: 260px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step {
        padding: 1rem 0;
    }

    .step-connector {
        width: 0;
        height: 24px;
        border-top: none;
        border-left: 2px dashed var(--border);
        margin: 0;
    }

    .gallery-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-featured,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-featured {
        grid-row: span 1;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
