/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 20px 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.logo span {
    color: #0057ff;
}

.logo p {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #0057ff;
}

.contact-info a {
    color: #0057ff;
    text-decoration: none;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0057ff;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0057ff 0%, #0040cc 30%, #4a4a4a 70%, #2a2a2a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-content {
    width: 100%;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
}

.hero-title .highlight {
    color: #ffcc00;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    margin: 40px 0;
    max-width: 400px;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(0.8);
}

.image-tags {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tag {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}
.tag:hover {
    background: rgba(0, 0, 0, 0.9);
}
.tag.workspace {
    background: rgba(0, 87, 255, 0.9);
    color: #fff;
    font-weight: 600;
}

.cta-button {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffcc00;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
.services {
    background: #2a2a2a;
    padding: 100px 0;
}

.services-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
}

.services-title .highlight {
    color: #0057ff;
}

.services-description {
    font-size: 16px;
    max-width: 800px;
    margin-bottom: 60px;
    opacity: 0.9;
    line-height: 1.6;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.yellow {
    background: linear-gradient(135deg, #ffcc00, #e6b800);
    color: #000;
}

.service-card.gray {
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    color: #fff;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-button {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yellow .card-button {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

.gray .card-button {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.card-button:hover {
    background: rgba(0, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-section {
    background: #3a3a3a;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0057ff;
}

.contact-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form input {
    flex: 1;
    min-width: 200px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-button {
    background: #0057ff;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #0040cc;
}

/* Stats Section */
.stats-section {
    background: #2a2a2a;
    padding: 100px 0;
}

.stats-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
}

.stats-content h2 .highlight {
    color: #0057ff;
}

.stats-content > p {
    font-size: 16px;
    max-width: 800px;
    margin-bottom: 60px;
    opacity: 0.9;
    line-height: 1.6;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-card.highlight-card {
    background: #0057ff;
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.calculator-card {
    background: linear-gradient(135deg, #ffcc00, #e6b800);
    color: #000;
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.calculator-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.calculator-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.calculator-form {
    display: grid;
    gap: 15px;
    max-width: 500px;
}

.calculator-form input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.calculator-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* Cases Section */
.cases {
    background: #1a1a1a;
    padding: 100px 0;
}

.cases h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    color: #0057ff;
}

.case-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.case-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 20px 10px;
    line-height: 1.4;
}

.case-card p {
    padding: 0 20px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.case-button {
    background: none;
    border: none;
    color: #0057ff;
    padding: 0 20px 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.show-more-button {
    background: #0057ff;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

/* Services Icons */
.services-icons {
    background: #2a2a2a;
    padding: 100px 0;
}

.services-icons h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.services-icons h2 .highlight {
    color: #0057ff;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.icon-item {
    text-align: center;
}

.icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: grayscale(1) brightness(1.5);
}

.icon-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Questions Section */
.questions-section {
    background: linear-gradient(135deg, #0057ff 0%, #0040cc 100%);
    color: #fff;
    padding: 100px 0;
}

.questions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.questions-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
}

.questions-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.questions-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.questions-form input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.questions-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.questions-form button {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.privacy-note {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 10px;
}

.questions-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: url("https://images.unsplash.com/photo-1587825140708-dfaf72ae4b04?w=600&h=400&fit=crop&crop=center") center/cover;
    border-radius: 16px;
    position: relative;
}

.zoom-button {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background: #1a1a1a;
    padding: 100px 0;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonials-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonials-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-tag {
    display: inline-block;
    background: rgba(0, 87, 255, 0.2);
    color: #0057ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

.testimonials-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stats-small {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item .number {
    font-size: 36px;
    font-weight: 900;
    color: #0057ff;
}

.stat-item .label {
    font-size: 12px;
    opacity: 0.8;
}

/* Project Evaluation */
.project-evaluation {
    background: #2a2a2a;
    padding: 100px 0;
}

.evaluation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.evaluation-image {
    position: relative;
    background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=600&h=400&fit=crop&crop=center") center/cover;
    width: 100%;
    height: 300px;
    border-radius: 12px;
}

.price-list-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.evaluation-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.evaluation-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.evaluation-button {
    background: #0057ff;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* Testimonial Quote */
.testimonial-quote {
    background: #3a3a3a;
    padding: 80px 0;
    text-align: center;
}

.testimonial-quote blockquote {
    font-size: 18px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.quote-dots {
    color: #0057ff;
    font-size: 24px;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo span {
    color: #0057ff;
}

.footer-logo p {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.footer-company {
    margin-top: 20px;
}

.footer-company p {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.4;
}

.footer-center p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-center a {
    color: #0057ff;
    text-decoration: none;
}

.callback-button {
    background: #0057ff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-social .social-link {
    width: 32px;
    height: 32px;
    background: #0057ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .services-content,
    .testimonials-content,
    .evaluation-content,
    .questions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-cards,
    .case-cards {
        grid-template-columns: 1fr;
    }

    .contact-form {
        flex-direction: column;
    }

    .stats-cards {
        grid-template-columns: 1fr;
    }

    .stats-small {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .services-title,
    .cases h2 {
        font-size: 32px;
    }

    .service-cards,
    .case-cards {
        gap: 20px;
    }

    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
