/* Base Styles & Variables */
:root {
    /* Main Colors */
    --primary: #ea580c;
    --primary-light: #fed7aa;
    --primary-dark: #c2410c;
    --danger: #dc2626;
    --danger-light: #fecaca;
    --success: #059669;
    --success-light: #d1fae5;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-danger: linear-gradient(135deg, var(--danger) 0%, #b91c1c 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-danger: 0 10px 25px rgba(220, 38, 38, 0.3);

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

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

/* Typography */
.text-primary {
    color: var(--primary);
}

.text-danger {
    color: var(--danger);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.btn-header {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-header:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-form {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(234, 88, 12, 0.1);
    transition: all var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--gray-800);
}

.phone i {
    color: var(--primary);
    animation: pulse-phone 2s infinite;
}

.phone-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: -2px;
}

@keyframes pulse-phone {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.btn-header {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #fef2f2 0%, var(--white) 50%, #fef2f2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
}

/* Hero Hook */
.hero-hook {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hook-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.hook-arrow {
    width: 60px;
    height: 60px;
    background: var(--gradient-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    animation: bounce-arrow 2s infinite;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.hook-arrow i {
    color: var(--white);
    font-size: 1.5rem;
}

@keyframes bounce-arrow {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Problem Showcase */
.problem-showcase-main {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.25);
    border-color: var(--danger);
}

.problem-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.problem-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) saturate(1.1);
}

.problem-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
}

.problem-badge.danger {
    background: var(--gradient-danger);
    color: var(--white);
}

.problem-badge.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
}

@keyframes pulse-badge {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.problem-content {
    padding: 1.5rem;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.problem-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.problem-cost {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--danger);
    font-weight: 600;
    font-size: 0.875rem;
}

.problem-cost i {
    color: var(--danger);
}

/* Comparison Section - Compact */
.comparison-section {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.comparison-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.comparison-table-compact {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
}

.comparison-header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.comparison-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: var(--radius);
}

.comparison-label.bad {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: var(--danger);
    border: 2px solid var(--danger);
}

.comparison-label.good {
    background: linear-gradient(135deg, var(--success-light) 0%, #a7f3d0 100%);
    color: var(--success);
    border: 2px solid var(--success);
}

.vs-compact {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.125rem;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
    animation: pulse-vs-compact 2s infinite;
}

@keyframes pulse-vs-compact {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.comparison-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.comparison-cell.bad {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.comparison-cell.good {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.comparison-cell:hover {
    transform: translateX(5px);
}

.comparison-cell i {
    font-size: 1rem;
    flex-shrink: 0;
}

.comparison-cell.bad i {
    color: var(--danger);
}

.comparison-cell.good i {
    color: var(--success);
}

/* Why Choose Us Section */
.why-choose-section {
    margin-bottom: 3rem;
}

.why-choose-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.why-choose-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-choose-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.why-choose-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition-fast);
}

.why-choose-item:hover .why-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-fast);
}

.why-choose-item:hover .why-icon i {
    color: var(--white);
}

.why-choose-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.why-choose-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

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

.btn-large.pulse {
    animation: pulse-cta 3s infinite;
}

@keyframes pulse-cta {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5);
    }
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-benefit i {
    color: var(--success);
}

/* Responsive for compact design */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-header-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vs-compact {
        order: 2;
        margin: 1rem auto;
    }

    .comparison-label.bad {
        order: 1;
    }

    .comparison-label.good {
        order: 3;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .comparison-title {
        font-size: 1.75rem;
    }

    .comparison-section {
        padding: 2rem;
    }

    .comparison-table-compact {
        padding: 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-choose-item {
        padding: 1rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .comparison-title {
        font-size: 1.5rem;
    }

    .why-choose-title {
        font-size: 1.5rem;
    }

    .comparison-section {
        padding: 1.5rem;
    }
}

/* Solution Section */
.solution-section {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.solution-header {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
    animation: pulse-solution 2s infinite;
}

@keyframes pulse-solution {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.solution-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.solution-image {
    position: relative;
}

.quality-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quality-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
}

.quality-badge.main {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

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

.benefit-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.benefit-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.benefit-icon i {
    color: var(--primary);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.benefit-card:hover .benefit-icon i {
    color: var(--white);
}

.benefit-content h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
    font-size: 1rem;
}

.benefit-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

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

.btn-large.pulse {
    animation: pulse-cta 3s infinite;
}

@keyframes pulse-cta {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5);
    }
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-benefit i {
    color: var(--success);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: var(--white);
}

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

.advantage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    border: 1px solid var(--gray-200);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.advantage-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1.5rem;
    transition: all var(--transition-fast);
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all var(--transition-fast);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.advantage-card:hover .advantage-icon i {
    color: var(--white);
    transform: scale(1.2);
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success);
    font-weight: 600;
    font-size: 0.875rem;
}

.advantage-highlight i {
    background: var(--success-light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Consultation Section */
.consultation {
    padding: 80px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.consultation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.consultation-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--gray-300) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.consultation-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.consultation-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Enhanced Consultation Section */
.measurement-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary);
    font-size: 1.25rem;
}

.feature-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.company-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    width: 20px;
}

.consultation-form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.measurement-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1;
}

.measurement-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.measurement-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
}

.measurement-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.measurement-badge i {
    color: var(--primary-light);
}

.specialist-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.specialist-avatar {
    position: relative;
    flex-shrink: 0;
}

.specialist-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.specialist-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.specialist-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.specialist-role {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.specialist-experience {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

/* Form */
.form-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-icon {
    position: absolute;
    left: 1rem;
    color: var(--gray-400);
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 1rem;
}

.form-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
}

.contact-item i {
    color: var(--primary);
    width: 16px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-list a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .solution-content,
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .consultation-title {
        font-size: 2rem;
    }

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

    .header-contact {
        gap: 1rem;
    }

    .phone span {
        display: none;
    }

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

    .consultation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .consultation-form-section {
        flex-direction: row;
        gap: 2rem;
    }

    .measurement-showcase {
        flex: 0 0 300px;
    }

    .form-container {
        flex: 1;
    }

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

    .vs-divider {
        order: 2;
        padding: 1rem 0;
    }

    .vs-circle {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .comparison-column.bad {
        order: 1;
    }

    .comparison-column.good {
        order: 3;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hook-title {
        font-size: 2rem;
    }

    .comparison-title {
        font-size: 1.75rem;
    }

    .solution-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .consultation-title {
        font-size: 1.75rem;
    }

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

    .header-contact {
        gap: 1rem;
    }

    .phone span {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .measurement-features {
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .consultation-form-section {
        flex-direction: column;
        gap: 2rem;
    }

    .measurement-showcase {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }

    .comparison-table {
        padding: 2rem;
    }

    .comparison-column.bad,
    .comparison-column.good {
        padding: 1.5rem;
    }

    .solution-section {
        padding: 2rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hook-title {
        font-size: 1.75rem;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    .solution-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .consultation-title {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .btn-header span {
        display: none;
    }

    .specialist-info {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        padding: 1.5rem;
    }

    .solution-section {
        padding: 1.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-section,
.solution-section {
    animation: fadeInUp 0.8s ease-out;
}
