
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --black: #111111;
    --yellow: #F9C80E;
    --grey: #E6E6E6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }


.navbar {
    background-color: var(--white);
    border-bottom: 2px solid var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-accent {
    color: var(--yellow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
}

.menu-toggle .close-icon {
    display: none;
}

.menu-toggle .menu-icon {
    display: block;
}

.menu-toggle.active .menu-icon {
    display: none;
}

.menu-toggle.active .close-icon {
    display: block;
}


.hero {
    background-color: var(--black);
    color: var(--white);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 4rem;
}

.hero-content .accent {
    color: var(--yellow);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    background: none;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--yellow);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: scale(1.05);
}

.btn-dark {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--black);
    transform: scale(1.05);
}


.grid-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background-color: var(--yellow);
}

.grid-line-h {
    width: 100%;
    height: 1px;
    animation: slideRight 3s ease-in-out infinite;
}

.grid-line-v {
    height: 100%;
    width: 1px;
    animation: slideDown 3s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes slideDown {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
}


.hero-mockups {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.mockup-card {
    background-color: var(--white);
    padding: 2rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 2px solid var(--yellow);
}

.mockup-card:hover {
    transform: scale(1.05);
}

.mockup-card svg {
    width: 60%;
    height: 60%;
    color: var(--black);
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


.section {
    padding: 6rem 2rem;
}

.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-grey {
    background-color: var(--grey);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header .accent {
    color: var(--yellow);
}

.section-header p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: stretch;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border: 2px solid var(--black);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--black);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--black);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 340px;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: scale(1.03);
    border-color: var(--yellow);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--black);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    background-color: var(--white);
    border: 2px solid var(--black);
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
}

.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--yellow);
}

.team-card h3 {
    margin-bottom: 1rem;
}

.team-card p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    background-color: var(--grey);
    overflow: hidden;
    border: 2px solid var(--black);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--grey);
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--black);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--yellow);
    border-width: 4px;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.pricing-header p {
    color: #666;
    font-size: 0.9rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
}

.pricing-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--grey);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li svg {
    color: var(--yellow);
    flex-shrink: 0;
}


.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container form {
    background-color: var(--white);
    padding: 2.5rem;
    border: 2px solid var(--black);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--black);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--yellow);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}


.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--grey);
    border: 2px solid var(--black);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    color: var(--black);
}

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-card p {
    margin: 0;
    color: #555;
}


.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 2px solid var(--yellow);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}


.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    margin-bottom: 1rem;
}

.legal-page .last-updated {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul, .legal-page ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}


.thank-you-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    color: var(--black);
}

.thank-you-container h1 {
    margin-bottom: 1rem;
}

.thank-you-container p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}


.error-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 1rem;
}


.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

@media (max-width: 1024px) {
    .hero-container,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .portfolio-grid,
    .pricing-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 2px solid var(--black);
        display: none;
    }
    
    .nav-container {
        padding: 1.25rem 1.5rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-menu.active {
        display: flex;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero {
        padding: 3.5rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .pricing-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-container {
        text-align: center;
        gap: 2.5rem;
    }

    .hero-mockups {
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-container form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-control {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
 
     .stat-card {
         padding: 1.75rem 1.5rem;
     }

     .service-card {
         min-height: auto;
         width: min(100%, 360px);
         max-width: 360px;
         margin: 0 auto;
         padding: 3rem 2rem;
     }
     
     .services-grid {
         justify-items: center;
         gap: 1.5rem;
     }
 }

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.25rem;
    }

    .logo {
        font-size: 1rem;
        gap: 0.35rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-container form {
        padding: 1.25rem;
        border-width: 2px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

@media (max-width: 768px) {
    .stats-section {
        display: none;
    }
}

.section .services-grid,
.section.section-grey .services-grid,
.section.section-dark .services-grid {
    justify-items: center;
}

.section-grey .service-card {
    background-color: var(--white);
}

.section-grey .services-grid {
    justify-content: center;
}

