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

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #ff3463;
    --anthracite: #2E2E2E;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--anthracite);
    overflow-x: hidden;
    background-color: white;
}

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

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: calc(100% - 40px);
    top: 20px;
    left: 20px;
    right: 20px;
    border-radius: 16px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    min-height: 60px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.logo-text {
    font-size: 3rem;
    color: var(--primary);
}

.logo img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(255, 52, 99, 0.1));
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(255, 52, 99, 0.2));
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--anthracite);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.8rem;
    border-radius: 6px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}


.cta-button {
    color: white;
    background: linear-gradient(135deg, var(--primary), #ff1744);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    letter-spacing: 0.025em;
    display: flex;
    align-items: center;
    height: fit-content;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255, 52, 99, 0.3);
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 52, 99, 0.4);
    background: linear-gradient(135deg, #ff1744, var(--primary));
}

.cta-button:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff1744 100%);
    color: white;
    padding: 18px 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 52, 99, 0.4);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 52, 99, 0.5);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
}

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

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin: 120px auto 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    letter-spacing: -0.02em;
    /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); */
}

.hero-title .line-1 {
    display: block;
    transform: translateY(100px);
    opacity: 0;
    animation: slideUpFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-title .line-2 {
    display: block;
    transform: translateY(100px);
    opacity: 0;
    animation: slideUpFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    background: linear-gradient(135deg, #ff3463, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0;
    font-weight: 400;
    color: white;
    transform: translateY(50px);
    animation: slideUpFade 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s both;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .btn-primary {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.4, 0, 0.2, 1) 2.2s both;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


.services {
    padding: 60px 0 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header p {
    font-size: 1rem;
    color: var(--anthracite);
    opacity: 0.7;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(46, 46, 46, 0.02);
    border: 1px solid rgba(46, 46, 46, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-3px);
    background: rgba(46, 46, 46, 0.04);
    border-color: rgba(46, 46, 46, 0.2);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--anthracite);
    font-weight: 500;
}

.service-content p {
    color: var(--anthracite);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}


.products-section {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem auto 0 auto;
    max-width: 1200px;
}

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

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.product-card {
    background: white;
    border: 1px solid rgba(46, 46, 46, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
    text-align: center;
}

.product-content h3 {
    color: var(--anthracite);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-badge {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--anthracite);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: var(--anthracite);
    transform: translateX(5px);
}

.features-highlight {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 52, 99, 0.03) 0%, rgba(46, 46, 46, 0.02) 100%);
    position: relative;
}

.features-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ff3463" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 52, 99, 0.08);
    border: 1px solid rgba(255, 52, 99, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(255, 52, 99, 0.6));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 52, 99, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #ff5577);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    margin-top: 0.25rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 52, 99, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

.feature-icon i {
    color: white;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-content h3 {
    color: var(--anthracite);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.why-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section {
    padding: 80px 0;
    background: white;
}

.reviews-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-carousel-wrapper {
    display: flex;
    flex-direction: column;
}

.reviews-carousel {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
    width: 100%;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 52, 99, 0.3);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(46, 46, 46, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 52, 99, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff5577);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    background: rgba(46, 46, 46, 0.04);
    border-color: rgba(46, 46, 46, 0.2);
}

.testimonial-content h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.testimonials-header h2 {
    font-size: 2.2rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 400;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.google-rating {
    display: inline-flex;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 52, 99, 0.1);
    height: fit-content;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-icon {
    color: #4285f4;
    font-size: 2rem;
}

.rating-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.google-rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--anthracite);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stars-large {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.2rem;
}

.stars-large i {
    color: #ffc107;
    font-size: 1rem;
}

.google-rating-text {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.rating-text {
    color: var(--anthracite);
    font-size: 0.9rem;
    opacity: 0.8;
}

.google-review {
    border-left: 4px solid #4285f4;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff5577);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(255, 52, 99, 0.3);
}

.reviewer-avatar i {
    color: white;
    font-size: 1.3rem;
}

.reviewer-details h4 {
    margin: 0;
    color: var(--anthracite);
    font-size: 1rem;
    font-weight: 500;
}

.review-stars {
    margin-top: 0.25rem;
}

.review-stars i {
    color: #ffd700;
    font-size: 0.8rem;
    margin-right: 1px;
}

.google-logo {
    background: white;
    padding: 0.7rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(66, 133, 244, 0.1);
}

.google-logo i {
    color: #4285f4;
    font-size: 1.1rem;
}

.review-content p {
    color: rgba(46, 46, 46, 0.8);
    line-height: 1.6;
    font-style: normal;
    font-weight: 300;
    font-size: 0.9rem;
    margin: 0;
}

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

.tagline-script {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1.4;
    font-style: italic;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-section {
    margin-bottom: 5rem;
}

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

.who-text h2 {
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.who-text p {
    font-size: 1.1rem;
    color: var(--anthracite);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.who-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .who-highlights {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .highlight-item {
        justify-content: center;
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.highlight-item span {
    color: var(--anthracite);
    font-weight: 500;
}

.who-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 7rem;
}

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

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(255, 52, 99, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 52, 99, 0.15);
}

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--anthracite);
    font-weight: 500;
}

.team-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--anthracite);
    margin: 0 0 3rem 0;
    font-weight: 400;
    position: relative;
}

.team-title i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(46, 46, 46, 0.02);
    border: 1px solid rgba(46, 46, 46, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateX(5px);
    background: rgba(46, 46, 46, 0.04);
    border-color: rgba(46, 46, 46, 0.2);
}

.team-member.special {
    background: linear-gradient(135deg, #fde6e3 0%, #fbf1f4 100%);
    position: relative;
    overflow: hidden;
}



@keyframes slideUpFade {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



.member-image {
    position: relative;
}

.member-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}


.member-info h4 {
    font-size: 1.4rem;
    color: var(--anthracite);
    margin-bottom: 0.3rem;
}

.member-info h5 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-tagline {
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-info p:last-child {
    color: var(--anthracite);
    line-height: 1.7;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--anthracite);
}

.end-to-end {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 52, 99, 0.05) 0%, rgba(248, 249, 250, 0.8) 100%);
    text-align: center;
    color: var(--anthracite);
}

.end-to-end-content {
    max-width: 800px;
    margin: 0 auto;
}

.end-to-end-icon {
    margin-bottom: 2rem;
}

.end-to-end-icon i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.8;
}

.end-to-end h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--anthracite);
}

.end-to-end p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.end-to-end-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item-small i {
    font-size: 2rem;
    color: var(--primary);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 52, 99, 0.2);
}

.feature-item-small span {
    font-weight: 500;
    color: var(--anthracite);
}

.faq {
    padding: 60px 0 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--anthracite);
    margin-bottom: 3rem;
    font-weight: 400;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item p {
    color: var(--anthracite);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: 0;
}

.faq-item.active p {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.quote-section {
    background: white;
    padding: 80px 0;
    color: var(--anthracite);
    text-align: center;
    position: relative;
    overflow: hidden;
}


.quote-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--anthracite);
}

.quote-section > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    font-weight: 300;
}

.quote-form {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(46, 46, 46, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 46, 46, 0.15);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--anthracite);
}

.form-header p {
    color: rgba(46, 46, 46, 0.7);
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--anthracite);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

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

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: rgba(46, 46, 46, 0.6);
    font-size: 1.1rem;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px 16px 45px;
    border: 2px solid rgba(46, 46, 46, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: var(--anthracite);
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(46, 46, 46, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(255, 52, 99, 0.1);
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: var(--primary);
}

.quote-form .btn-primary {
    width: 100%;
    margin-top: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
}


.quote-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 52, 99, 0.4);
}


.or-text {
    margin: 2.5rem 0 1rem;
    font-size: 1rem;
    opacity: 0.7;
    position: relative;
    display: inline-block;
    color: var(--anthracite);
}

.or-text::before,
.or-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: rgba(46, 46, 46, 0.2);
}

.or-text::before {
    right: 100%;
    margin-right: 15px;
}

.or-text::after {
    left: 100%;
    margin-left: 15px;
}

.phone-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.phone-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(255, 52, 99, 0.05);
}

.phone-link:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}


footer {
    background: var(--anthracite);
    color: white;
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-logo img {
  width: 200px;
}

.footer-tagline {
    font-family: 'Montserrat', cursive;
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0.8;
}

.footer-info h4,
.footer-contact h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--anthracite);
    z-index: 1001;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 1rem;
        width: calc(100% - 2rem);
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: none;
        height: auto;
        z-index: 1000;
        border-radius: 20px;
        border: 1px solid rgba(46, 46, 46, 0.1);
        gap: 1rem;
    }

    .nav-links:not(.show) {
        display: none !important;
    }

    .nav-links.show {
        display: flex;
    }

    .hero-content-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .nav-links a {
        height: auto;
        padding: 1rem 0;
        color: var(--anthracite);
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid rgba(46, 46, 46, 0.1);
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0.25rem 0;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        color: var(--primary);
        background: rgba(255, 52, 99, 0.05);
        transform: translateY(-2px);
    }

    .hero-title .line-1 {
        white-space: normal;
        width: auto;
        display: block;
        transform: translateY(50px);
        opacity: 0;
        animation: slideUpFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    }
    
    .hero-title .line-2 {
        white-space: normal;
        width: auto;
        display: block;
        transform: translateY(50px);
        opacity: 0;
        animation: slideUpFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
        background: linear-gradient(135deg, #ff3463, #ff6b9d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .member-image img {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .company-stats {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .quote-form {
        padding: 2rem;
    }

    .phone-links {
        flex-direction: column;
    }

    .phone-link {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: var(--anthracite);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

/* Index Page Contact Form */
.contact-form-section-index {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    margin-top: 40px;
}

.contact-form-section-index .contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section-index .form-header h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-form-section-index .form-header p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 160px 0 80px 0;
    position: relative;
}



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

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--anthracite);
    opacity: 0.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 52, 99, 0.1);
}

.contact-form {
    margin-bottom: 2rem;
}

.contact-form .btn-primary {
    display: block;
    margin: 2rem auto 0 auto;
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper i {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    color: rgba(46, 46, 46, 0.6);
}

.textarea-wrapper textarea {
    padding-left: 45px;
}

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

.contact-form .form-header h3 {
    color: var(--anthracite);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form .form-header p {
    color: var(--anthracite);
    opacity: 0.7;
}

.contact-methods {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 46, 46, 0.1);
}

.contact-methods h4 {
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-phone {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    margin: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    background: #e0285a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 52, 99, 0.3);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 52, 99, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card h4 i {
    margin-right: 0.5rem;
}

.contact-card p {
    color: var(--anthracite);
    line-height: 1.6;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 140px 0 60px 0;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 52, 99, 0.3);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #e0285a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 52, 99, 0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Footer and Contact Links */
.footer-info a,
.footer-contact a,
.contact-card a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover,
.footer-contact a:hover,
.contact-card a:hover {
    color: var(--primary);
    text-decoration: underline;
}
