/* ===== Variables ===== */
:root {
    --primary: #FF4D6D;
    --primary-dark: #E8365A;
    --secondary: #7B2FF7;
    --accent: #00D4FF;
    --gold: #FFD166;
    --dark: #1A0A2E;
    --dark-soft: #2D1B4E;
    --text: #2B2B2B;
    --text-light: #666;
    --white: #fff;
    --gradient-hero: linear-gradient(135deg, #1A0A2E 0%, #4A148C 40%, #FF4D6D 100%);
    --gradient-btn: linear-gradient(135deg, #FF4D6D 0%, #FF8C42 50%, #FFD166 100%);
    --gradient-card: linear-gradient(145deg, rgba(123,47,247,0.15) 0%, rgba(255,77,109,0.1) 100%);
    --shadow: 0 10px 40px rgba(123, 47, 247, 0.25);
    --radius: 16px;
    --font: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    --header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    color: var(--text);
    background: #FAF7FF;
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26, 10, 46, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: rgba(26, 10, 46, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo span {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 6px;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(255,77,109,0.3);
}

.header-phone {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.2s;
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 24px 20px 32px;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-bottom: 2px solid var(--primary);
}

.mobile-menu.show {
    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.mobile-menu nav a {
    color: var(--white);
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
}

.mobile-menu nav a:hover { background: rgba(255,77,109,0.2); }

.mobile-phone {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-primary {
    background: var(--gradient-btn);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(255, 77, 109, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, #7B2FF7, #00D4FF);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(123, 47, 247, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-max {
    background: linear-gradient(135deg, #0077FF, #7B2FF7);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 119, 255, 0.35);
}

.btn-max img {
    width: 22px;
    height: 22px;
    border-radius: 6px;
}

.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-animated:hover::before { left: 100%; }

.btn-animated:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(255, 77, 109, 0.5);
}

.btn-secondary.btn-animated:hover {
    box-shadow: 0 12px 32px rgba(123, 47, 247, 0.5);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 24px rgba(255, 77, 109, 0.45); }
    50% { box-shadow: 0 6px 36px rgba(255, 77, 109, 0.7), 0 0 20px rgba(255, 140, 66, 0.4); }
}

.hero-cta .btn-primary {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ===== Max float button ===== */
.max-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0077FF, #7B2FF7);
    color: var(--white);
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 30px rgba(0, 119, 255, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: float-bounce 3s ease-in-out infinite;
}

.max-float img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.max-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 119, 255, 0.6);
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/main.jpg) center/cover no-repeat;
    opacity: 0.25;
    mix-blend-mode: overlay;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 209, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255, 77, 109, 0.15) 0%, transparent 45%);
    animation: particles-shift 8s ease-in-out infinite alternate;
}

@keyframes particles-shift {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.8);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll span::after {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-dot 1.5s ease-in-out infinite;
}

@keyframes scroll-dot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ===== Animations ===== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Sections ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

/* ===== Advantages ===== */
.advantages {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid rgba(123, 47, 247, 0.12);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-btn);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 77, 109, 0.3);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Services ===== */
.services {
    background: linear-gradient(180deg, #F3EEFF 0%, #FAF7FF 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Process ===== */
.process {
    background: var(--dark);
    color: var(--white);
}

.process .section-title { color: var(--white); }

/* ===== Pricing ===== */
.pricing-section {
    background: linear-gradient(180deg, #F3EEFF 0%, #FAF7FF 50%, #FFF5F7 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Category tabs */
.pricing-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 920px;
    margin: 0 auto 28px;
}

.pricing-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 22px 16px;
    background: var(--white);
    border: 2px solid rgba(123, 47, 247, 0.12);
    border-radius: 16px;
    cursor: pointer;
    font-family: var(--font);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}

.pricing-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1A0A2E 0%, #7B2FF7 100%);
    opacity: 0;
    transition: opacity 0.25s;
}

.pricing-tab > * {
    position: relative;
    z-index: 1;
}

.pricing-tab-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.pricing-tab-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark);
    transition: color 0.25s;
}

.pricing-tab-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.25s;
}

.pricing-tab:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 77, 109, 0.35);
    box-shadow: 0 8px 24px rgba(123, 47, 247, 0.15);
}

.pricing-tab.active {
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(123, 47, 247, 0.3);
    transform: translateY(-4px);
}

.pricing-tab.active::before {
    opacity: 1;
}

.pricing-tab.active .pricing-tab-name,
.pricing-tab.active .pricing-tab-price {
    color: var(--white);
}

.pricing-tab.active .pricing-tab-price {
    color: var(--gold);
}

/* Detail panels */
.pricing-detail {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    min-height: auto;
}

.pricing-panel {
    display: none;
    animation: pricingFadeIn 0.4s ease;
}

.pricing-panel.active {
    display: block;
}

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

.pricing-booking-block {
    max-width: 920px;
    margin: 24px auto 0;
}

.pricing-booking-block .pricing-footer {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(123, 47, 247, 0.12);
    box-shadow: 0 8px 32px rgba(26, 10, 46, 0.08);
}

.pricing-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(123, 47, 247, 0.12);
    box-shadow: 0 20px 60px rgba(26, 10, 46, 0.12);
    overflow: hidden;
}

.pricing-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-btn);
}

.pricing-top {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    align-items: stretch;
}

.pricing-head {
    padding: 40px 36px;
    background: linear-gradient(160deg, #1A0A2E 0%, #4A148C 55%, #7B2FF7 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 209, 102, 0.2);
    border: 1px solid rgba(255, 209, 102, 0.45);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pricing-price-wrap {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #FFD166, #FF8C42, #FF4D6D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-currency {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 8px;
}

.pricing-conditions {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.pricing-duration {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-duration-icon {
    flex-shrink: 0;
}

.pricing-duration em {
    font-style: normal;
    opacity: 0.85;
    font-size: 0.85rem;
}

.pricing-head-notes {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-all-in--side {
    margin-top: 0;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    line-height: 1.55;
}

.pricing-all-in--side strong {
    color: var(--gold);
}

.pricing-head-offer {
    padding: 12px 16px;
    background: rgba(255, 209, 102, 0.15);
    border: 1px solid rgba(255, 209, 102, 0.35);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.45;
}

.pricing-head-booking {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-head-booking p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    line-height: 1.4;
}

.pricing-head-phone {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
    margin: 6px 0;
    transition: opacity 0.2s;
}

.pricing-head-phone:hover {
    opacity: 0.85;
    color: var(--white);
}

.pricing-head-deposit {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.pricing-head-deposit strong {
    color: var(--white);
}

.pricing-includes {
    padding: 36px 32px;
}

.pricing-includes-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.55;
}

.pricing-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #FF4D6D, #FF8C42);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 2px;
}

.pricing-list small {
    display: block;
    color: var(--text-light);
    font-size: 0.82rem;
    margin-top: 2px;
}

.pricing-all-in {
    margin-top: 20px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.08), rgba(123, 47, 247, 0.08));
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    border: 1px dashed rgba(255, 77, 109, 0.35);
}

.pricing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    flex-wrap: wrap;
}

.pricing-booking-label {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pricing-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    transition: color 0.2s;
}

.pricing-phone:hover {
    color: var(--secondary);
}

.pricing-deposit {
    font-size: 0.88rem;
    color: var(--text-light);
}

.pricing-deposit strong {
    color: var(--dark);
}

.pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: background 0.3s, transform 0.3s;
}

.step:hover {
    background: rgba(255, 77, 109, 0.15);
    transform: translateY(-4px);
}

.step-num {
    width: 44px; height: 44px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gold);
}

.step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* ===== Video ===== */
.video-section {
    background: var(--white);
}

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

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-item iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Gallery ===== */
.gallery-section {
    background: linear-gradient(180deg, #FAF7FF, #F3EEFF);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    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.08);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(123, 47, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* ===== Reviews ===== */
.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--gradient-card);
    border: 1px solid rgba(123, 47, 247, 0.15);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 8px; left: 16px;
    line-height: 1;
}

.review-card p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.review-card cite {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    font-style: normal;
}

/* ===== Cases ===== */
.cases {
    background: #F3EEFF;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.case-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.case-body {
    padding: 20px;
}

.case-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.case-body p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Partners ===== */
.partners {
    background: var(--white);
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.partners-row figure {
    flex: 0 0 auto;
}

.partners-row img {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    filter: grayscale(30%);
}

.partners-row img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: none;
}

/* ===== FAQ ===== */
.faq-section {
    background: linear-gradient(180deg, #FAF7FF, #F3EEFF);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(123, 47, 247, 0.1);
    transition: box-shadow 0.3s;
}

.faq-item.active {
    box-shadow: var(--shadow);
    border-color: rgba(255, 77, 109, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    padding: 0;
}

.cta-inner {
    background: var(--gradient-hero);
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    margin: 80px auto;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 209, 102, 0.2) 0%, transparent 60%);
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    position: relative;
}

/* ===== Tags ===== */
.tags-section {
    padding: 40px 0;
    background: #F3EEFF;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tags-cloud span {
    background: var(--white);
    border: 1px solid rgba(123, 47, 247, 0.15);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.tags-cloud span:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* ===== Contacts ===== */
.contacts-section {
    background: var(--white);
}

.contacts-center {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-phone {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-email {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.contacts-info p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.contacts-center .contact-phone {
    margin-bottom: 8px;
}

.contacts-center .contact-email {
    margin-bottom: 24px;
}

.contacts-center .contact-buttons {
    margin-bottom: 16px;
}

.contacts-center .open_modal {
    margin-bottom: 20px;
}

.contact-btn-icon {
    font-size: 1.1rem;
}

.social-link {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

.contacts-form {
    background: #FAF7FF;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(123, 47, 247, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(123, 47, 247, 0.15);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.success-msg, .error-msg {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

.success-msg { background: #d4edda; color: #155724; }
.error-msg { background: #f8d7da; color: #721c24; }
.hidden { display: none; }

/* ===== Footer ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .pricing-top { grid-template-columns: 1fr; }
    .pricing-tabs { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .main-nav, .header-phone { display: none; }
    .burger { display: flex; }
    .mobile-menu { display: block; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }

    .cards-grid,
    .services-grid,
    .steps,
    .video-grid,
    .gallery-grid,
    .reviews-grid,
    .cases-grid,
    .contacts-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .pricing-actions {
        flex-direction: column;
    }

    .pricing-actions .btn {
        width: 100%;
    }

    .pricing-head,
    .pricing-includes {
        padding: 28px 24px;
    }

    .pricing-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pricing-tab {
        padding: 16px 12px;
    }

    .pricing-tab-icon {
        font-size: 1.4rem;
    }

    .pricing-detail {
        min-height: auto;
    }

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

    .hero-cta,
    .hero-contacts,
    .cta-buttons,
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn,
    .hero-contacts .btn,
    .cta-buttons .btn,
    .contact-buttons .btn {
        width: 100%;
    }

    .cta-inner {
        margin: 56px 0;
        padding: 48px 24px;
        border-radius: 16px;
    }

    .max-float span { display: none; }
    .max-float {
        padding: 14px;
        border-radius: 50%;
        bottom: 16px;
        right: 16px;
    }

    .max-float img { width: 36px; height: 36px; }

    .contact-phone { font-size: 1.4rem; }

    .contacts-center .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    :root { --header-h: 60px; }

    .hero { padding-bottom: 60px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

    .card, .service-item, .step { padding: 20px 16px; }

}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
