/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-btn {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(45deg, #ff6454, #ffe400);
    display: flex;
    align-items: center;
    padding: 80px 0 120px;
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .text-white {
    color: #fff;
}

.hero-title .text-black {
    color: #000;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 40px;
    font-family: 'Open Sans', sans-serif;
}

.hero-subtitle .text-white {
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #000;
}

.section-title.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

/* Numbers Section */
.numbers {
    padding: 80px 0;
    background: #fff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.numbers-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.numbers-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #E15F41;
    line-height: 1;
    font-family: 'Lora', serif;
}

.stat-text {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.numbers-cta {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

/* Bevel Divider */
.bevel {
    height: 80px;
    position: relative;
    overflow: hidden;
}

.bevel-left {
    background: linear-gradient(135deg, #111 50%, #E15F41 50%);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #E15F41;
}

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

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage-number {
    width: 50px;
    height: 50px;
    background: #f4f4f4;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.advantage-content p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

/* When Help Section */
.when-help {
    padding: 80px 0;
    background: #fff;
}

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

.help-item {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #E15F41;
}

.help-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.help-item p {
    color: #666;
    font-size: 15px;
}

/* Promotion Section */
.promotion {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.promotion-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.promotion-item h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.promotion-item p {
    color: #666;
    font-size: 15px;
}

/* How We Work Section */
.how-work {
    padding: 60px 0;
    background: #fff;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.step-item {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 20px 15px;
    background: #f9f9f9;
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #E15F41;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.step-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.how-work-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(45deg, #ff6454, #ffe400);
    border-radius: 10px;
}

.how-work-cta p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f9f9f9;
}

.pricing-slider {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.pricing-card-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 200px;
    opacity: 0.6;
    transform: scale(0.95);
    border: 2px solid transparent;
}

.pricing-card-item.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(225, 95, 65, 0.2);
    border-color: #E15F41;
}

.pricing-card-item:hover {
    opacity: 0.8;
    transform: scale(0.98);
}

.pricing-card-item.active:hover {
    opacity: 1;
    transform: scale(1);
}

.pricing-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
}

.pricing-price {
    font-size: 16px;
    font-weight: 600;
    color: #E15F41;
}

.pricing-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.pricing-nav:hover {
    background: #E15F41;
    color: #fff;
}

.pricing-prev {
    left: 0;
}

.pricing-next {
    right: 0;
}

.pricing-counter {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.pricing-counter .current-slide {
    font-weight: 600;
    color: #E15F41;
}

.pricing-details {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pricing-detail-panel {
    display: none;
}

.pricing-detail-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.pricing-detail-panel h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
    padding-bottom: 15px;
    border-bottom: 2px solid #E15F41;
}

.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E15F41;
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.team-section {
    margin-top: 60px;
}

.team-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
}

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

.team-item {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.team-item strong {
    display: block;
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
}

.team-item p {
    font-size: 14px;
    color: #666;
}

/* Cases Section */
.cases {
    padding: 80px 0;
    background: #fff;
}

.cases-wrapper {
    margin-bottom: 60px;
}

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

.case-item {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.case-item img {
    width: 100%;
    height: auto;
    display: block;
}

.cases-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(45deg, #ff6454, #ffe400);
    border-radius: 10px;
}

.cases-cta h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h3 {
    font-size: 28px;
    color: #fff;
}

.footer-logo .highlight {
    color: #E15F41;
}

.footer-info p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E15F41;
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 18px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E15F41;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
}

.modal-content.modal-large {
    max-width: 800px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promotion-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0 100px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
        padding: 15px 10px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-text {
        font-size: 12px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .pricing-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
        gap: 15px;
    }
    
    .pricing-card-item {
        flex: 0 0 auto;
        width: 160px;
        padding: 20px 15px;
    }
    
    .pricing-name {
        font-size: 18px;
    }
    
    .pricing-price {
        font-size: 14px;
    }
    
    .pricing-nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .pricing-prev {
        left: 5px;
    }
    
    .pricing-next {
        right: 5px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title,
.numbers-grid,
.advantage-item,
.help-item,
.promotion-item,
.step-item,
.team-item {
    animation: fadeIn 0.6s ease forwards;
}
