@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #6B46C1;
    --primary-dark: #5835A3;
    --secondary: #9F7AEA;
    --accent: #805AD5;
    --success: #48BB78;
    --danger: #E53E3E;
    --warning: #ED8936;
    --light: #F7FAFC;
    --white: #FFFFFF;
    --dark: #1A202C;
    --darker: #0f1420;
    --text: #2D3748;
    --text-light: #718096;
    --gradient: linear-gradient(135deg, #6B46C1 0%, #805AD5 100%);
    --gradient-warm: linear-gradient(135deg, #ED8936 0%, #E53E3E 100%);
    --shadow: 0 10px 40px rgba(107, 70, 193, 0.15);
    --shadow-hover: 0 20px 60px rgba(107, 70, 193, 0.25);
}

body {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

/* Title with accent underline */
.section-title-center {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.title-accent {
    position: relative;
    color: var(--primary);
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    left: 0;
    height: 8px;
    background: var(--secondary);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* ==================== */
/* SHIMMER EFFECT       */
/* ==================== */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

/* ==================== */
/* PULSE ANIMATIONS     */
/* ==================== */
@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

@keyframes pulsePurple {
    0%, 100% { box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(107, 70, 193, 0); }
}

@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ==================== */
/* STICKY HEADER        */
/* ==================== */
.sticky-header {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: top 0.3s ease;
    height: 70px;
}

.sticky-header.visible {
    top: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 40px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    direction: ltr;
}

.header-phone svg {
    color: var(--primary);
}

.header-cta {
    background: var(--gradient);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.3);
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 60px 60px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.03) 0%, rgba(159, 122, 234, 0.05) 100%);
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-cta {
    margin-top: 24px;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient);
    color: white;
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.4);
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s;
}

.btn-primary-large:hover .btn-arrow {
    transform: translateX(-5px);
}

/* Price Box with Ribbon */
.price-box {
    background: white;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 24px 30px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: pricePulse 4s ease-in-out infinite;
}

.price-ribbon {
    position: absolute;
    top: 16px;
    left: -35px;
    background: var(--danger);
    color: white;
    padding: 4px 40px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}

.price-original {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
}

.price-old {
    font-size: 20px;
    color: var(--danger);
    text-decoration: line-through;
    font-weight: 600;
}

.price-discount {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.price-new {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.price-save {
    background: var(--success);
    color: white;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

/* Countdown */
.countdown-wrapper {
    background: var(--dark);
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 12px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-number {
    font-size: 40px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.countdown-unit {
    font-size: 13px;
    color: var(--secondary);
    margin-top: 4px;
}

.countdown-separator {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    align-self: flex-start;
    padding-top: 4px;
}

.scarcity-text {
    color: #FC8181;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--success);
    font-size: 14px;
    font-weight: 500;
}

.trust-svg {
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
}

.hero-image-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
}

/* ==================== */
/* PROOF BAR            */
/* ==================== */
.proof-bar {
    background: var(--darker);
    padding: 36px 0;
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.proof-item {
    text-align: center;
    color: white;
}

.proof-item strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-item span {
    font-size: 14px;
    opacity: 0.7;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ==================== */
/* PROBLEM SECTION      */
/* ==================== */
.problem {
    padding: 100px 0;
    background: var(--light);
}

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

.problem-card {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-right: 4px solid var(--danger);
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.problem-card-icon {
    color: var(--danger);
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

.solution-box {
    background: var(--gradient);
    color: white;
    padding: 0;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.solution-text {
    padding: 50px;
    text-align: right;
}

.solution-image {
    height: 100%;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.solution-box p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 24px;
}

.solution-cta {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.solution-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==================== */
/* ADVANTAGES           */
/* ==================== */
.advantages {
    padding: 100px 0;
    background: white;
}

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

.advantage-card {
    background: var(--light);
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.advantage-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.advantage-featured {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.06) 0%, rgba(159, 122, 234, 0.1) 100%);
    border-color: var(--secondary);
}

.advantage-badge {
    display: inline-block;
    background: var(--gradient-warm);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 12px;
}

.advantage-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-featured .advantage-icon-wrap {
    background: var(--gradient-warm);
}

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

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

/* ==================== */
/* GALLERY              */
/* ==================== */
.gallery-main {
    padding: 100px 0;
    background: var(--light);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-top: 16px;
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 32, 44, 0.85) 100%);
    padding: 40px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gallery-label {
    color: white;
    font-size: 17px;
    font-weight: 700;
}

.gallery-zoom {
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.btn-secondary-large {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 3px solid var(--primary);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-secondary-large:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ==================== */
/* LIGHTBOX             */
/* ==================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    object-fit: contain;
}

/* ==================== */
/* PROCESS STEPS        */
/* ==================== */
.process {
    padding: 100px 0;
    background: white;
}

.process-hero-image {
    max-width: 700px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.process-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.process-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    background: var(--light);
    border-radius: 20px;
    border-right: 4px solid var(--primary);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateX(-4px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

.process-connector {
    width: 4px;
    height: 28px;
    background: var(--secondary);
    margin-right: 50px;
    opacity: 0.3;
    border-radius: 2px;
}

/* ==================== */
/* TESTIMONIALS         */
/* ==================== */
.testimonials-compact {
    padding: 100px 0;
    background: var(--light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-compact {
    background: white;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.testimonial-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--warning);
    font-size: 20px;
    margin-bottom: 20px;
}

.star-half {
    opacity: 0.35;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== */
/* FAQ                  */
/* ==================== */
.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #E2E8F0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-align: right;
    gap: 16px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-item.active .faq-question {
    color: var(--primary);
}

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

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* ==================== */
/* CONSULTATION / FORM  */
/* ==================== */
.consultation {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.08) 0%, rgba(159, 122, 234, 0.12) 100%),
                url('images/face-beauty.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.consultation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
}

.consultation > .container {
    position: relative;
    z-index: 1;
}

.consultation-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
}

.consultation-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.consultation-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.consultation-price {
    background: var(--light);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.price-original-sm,
.price-discount-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.line-through {
    text-decoration: line-through;
    color: var(--danger);
    font-size: 18px;
}

.price-discount-sm strong {
    font-size: 24px;
    color: var(--primary);
}

.consultation-features {
    list-style: none;
}

.consultation-features li {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 14px;
    padding-right: 30px;
    position: relative;
}

.consultation-features li::before {
    content: '\2713';
    position: absolute;
    right: 0;
    color: var(--success);
    font-weight: 700;
}

.consultation-form {
    background: var(--gradient);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.lead-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group input {
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Vazirmatn', sans-serif;
    background: white;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.btn-submit {
    width: 100%;
    background: white;
    color: var(--primary);
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazirmatn', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-top: 16px;
    line-height: 1.5;
}

/* Form Success State */
.form-success {
    display: none;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.form-success .success-icon {
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    opacity: 0.9;
}

/* ==================== */
/* FOOTER               */
/* ==================== */
.footer-minimal {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    direction: ltr;
    display: inline-block;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-address {
    grid-column: 1 / -1;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==================== */
/* FLOATING BUTTONS     */
/* ==================== */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background: #25D366;
}

.float-phone {
    background: var(--primary);
}

.pulse-green {
    animation: pulseGreen 2s ease-in-out infinite;
}

.pulse-purple {
    animation: pulsePurple 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* ==================== */
/* MOBILE STICKY CTA    */
/* ==================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-cta-btn {
    display: block;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
}

/* =============================== */
/* RESPONSIVE - TABLET (1024px)    */
/* =============================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        min-height: auto;
        gap: 40px;
    }

    .hero-content { max-width: 100%; }
    .hero-title { font-size: 48px; }
    .hero-visual { display: none; }
    .price-new { font-size: 28px; }
    .countdown-number { font-size: 32px; }
    .countdown-item { min-width: 60px; }

    .proof-items { gap: 30px; }
    .proof-item strong { font-size: 28px; }

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

    .consultation-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-phone-text { display: none; }
}

/* =============================== */
/* RESPONSIVE - MOBILE (768px)     */
/* =============================== */
@media (max-width: 768px) {
    .hero { padding: 40px 20px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; }
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-subtitle { font-size: 16px; }

    .price-box { padding: 20px; }
    .price-original, .price-discount {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .price-old { font-size: 18px; }
    .price-new { font-size: 24px; }
    .price-ribbon { font-size: 11px; top: 12px; left: -38px; padding: 3px 40px; }

    .countdown-wrapper { padding: 16px 15px; }
    .countdown { gap: 4px; }
    .countdown-item { min-width: 50px; }
    .countdown-number { font-size: 28px; }
    .countdown-unit { font-size: 11px; }
    .countdown-separator { font-size: 24px; }

    .btn-primary-large {
        padding: 16px 32px;
        font-size: 17px;
        width: 100%;
        justify-content: center;
    }

    .proof-items { flex-wrap: wrap; gap: 20px; }
    .proof-divider { display: none; }
    .proof-item { width: 45%; }
    .proof-item strong { font-size: 24px; }

    .problem, .advantages, .gallery-main, .process,
    .testimonials-compact, .faq, .consultation {
        padding: 60px 0;
    }

    .section-title-center { font-size: 28px; margin-bottom: 16px; }
    .section-subtitle { font-size: 16px; margin-bottom: 40px; }

    .problem-card { padding: 24px 20px; }
    .solution-box { padding: 0; }
    .solution-content { grid-template-columns: 1fr; }
    .solution-text { padding: 30px 20px; text-align: center; }
    .solution-image { height: 250px; }
    .solution-box h3 { font-size: 24px; }
    .solution-box p { font-size: 16px; }

    .process-hero-image img { height: 250px; }

    .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
    .advantage-card {
        display: flex;
        text-align: right;
        gap: 16px;
        padding: 24px 20px;
    }
    .advantage-icon-wrap {
        margin: 0;
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 14px;
    }
    .advantage-icon-wrap svg { width: 24px; height: 24px; }
    .advantage-card h3 { font-size: 18px; margin-bottom: 6px; }
    .advantage-card p { font-size: 14px; }
    .advantage-badge { margin-top: 8px; }

    .gallery-grid-large { grid-template-columns: 1fr; gap: 20px; }
    .gallery-image { height: 300px; }
    .btn-secondary-large {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .process-step { padding: 24px 20px; }
    .step-number { width: 42px; height: 42px; font-size: 18px; }
    .process-connector { margin-right: 40px; height: 20px; }

    .testimonials-slider { grid-template-columns: 1fr; gap: 20px; }
    .testimonial-compact { padding: 30px 20px; }

    .faq-question { font-size: 16px; padding: 20px 0; }
    .faq-answer p { font-size: 15px; }

    .consultation-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    .consultation-content h2 { font-size: 28px; }
    .consultation-content p { font-size: 16px; }
    .consultation-features li { font-size: 15px; margin-bottom: 12px; padding-right: 26px; }
    .consultation-form { padding: 30px 20px; }
    .lead-form h3 { font-size: 22px; }
    .form-group input { padding: 16px 20px; font-size: 15px; }
    .btn-submit { padding: 16px; font-size: 16px; }
    .price-discount-sm strong { font-size: 20px; }

    .footer-minimal { padding: 40px 0 80px; }
    .footer-brand h3 { font-size: 22px; }

    .floating-buttons { bottom: 80px; left: 16px; }
    .float-btn { width: 52px; height: 52px; }

    .mobile-sticky-cta { display: block; }

    .lightbox { padding: 20px; }
    .lightbox-img { max-width: 100%; }
}

/* =============================== */
/* RESPONSIVE - SMALL (400px)      */
/* =============================== */
@media (max-width: 400px) {
    .hero-title { font-size: 30px; }
    .price-new { font-size: 20px; }
    .countdown-number { font-size: 24px; }
    .countdown-item { min-width: 42px; }
    .proof-item strong { font-size: 20px; }
    .proof-item span { font-size: 12px; }
}
