:root {
    --dark-asphalt: #1a1a1a;
    --light-workshop: #f8f7f5;
    --text-light: #ececec;
    --text-dark: #2a2a2a;
    --accent-cyan: #00d9ff;
    --accent-sand: #e8dcc8;
    --charcoal: #2a2a2a;
    --concrete: #d4d0c8;
}

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

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background: var(--light-workshop);
    color: var(--text-dark);
    line-height: 1.6;
}

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

@media (min-width: 768px) {
    .container-custom {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding: 0 72px;
    }
}

header.navbar-custom {
    background: linear-gradient(180deg, var(--dark-asphalt) 0%, #0f0f0f 100%);
    color: var(--text-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--accent-cyan);
}

header.navbar-custom .container-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -1px;
    transition: color 0.3s;
}

.navbar-brand .logo-text:hover {
    color: var(--accent-cyan);
}

.navbar-menu {
    display: flex;
    gap: 40px;
    flex: 1;
    margin-left: 80px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
}

.btn-price {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 10px 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-price:hover {
    background: var(--accent-cyan);
    color: var(--dark-asphalt);
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    header.navbar-custom .container-custom {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar-brand .logo-text {
        font-size: 22px;
    }
}

main {
    flex: 1;
}

.hero-section {
    background: linear-gradient(180deg, var(--dark-asphalt) 0%, #0a0a0a 50%, var(--light-workshop) 100%);
    padding: 80px 24px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: #bbb;
    line-height: 1.6;
}

.hero-image {
    text-align: center;
    margin-bottom: 40px;
    perspective: 1000px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border: 3px solid var(--accent-cyan);
    clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
}

.hero-overlay {
    background: var(--light-workshop);
    padding: 40px 24px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.quick-modules {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .quick-modules {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-card {
    background: white;
    border: 2px solid var(--concrete);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.module-card:hover {
    border-color: var(--accent-cyan);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.1);
}

.module-image {
    margin-bottom: 20px;
    height: 150px;
    overflow: hidden;
    border: 2px solid var(--concrete);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

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

.module-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.module-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.process-section {
    padding: 80px 24px;
    background: var(--light-workshop);
}

.process-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: -1px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-block.reverse {
    direction: rtl;
}

.process-block.reverse > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .process-block,
    .process-block.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-block.reverse {
        direction: ltr;
    }
}

.process-image {
    position: relative;
}

.process-image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--accent-cyan);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    transition: transform 0.3s;
}

.process-block:hover .process-image img {
    transform: scale(1.02);
}

.process-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.process-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    background: var(--dark-asphalt);
    color: var(--accent-cyan);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--dark-asphalt);
    transition: all 0.3s;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-cta:hover {
    background: transparent;
    color: var(--dark-asphalt);
    border-color: var(--dark-asphalt);
}

.feature-section {
    padding: 80px 24px;
    background: var(--light-workshop);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-block.reverse {
        direction: ltr;
    }
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--accent-cyan);
    clip-path: polygon(5% 0, 100% 0, 100% 95%, 0 100%);
    transition: transform 0.3s;
}

.feature-block:hover .feature-image img {
    transform: scale(1.02);
}

.feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.feature-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-item {
    background: white;
    border-left: 4px solid var(--accent-cyan);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.1);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price-block {
    background: white;
    border: 2px solid var(--concrete);
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.price-block:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.1);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.price-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-block .btn-inquiry {
    background: transparent;
    border: 2px solid var(--dark-asphalt);
    color: var(--dark-asphalt);
    padding: 10px 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.price-block .btn-inquiry:hover {
    background: var(--dark-asphalt);
    color: var(--accent-cyan);
}

.contact-section {
    padding: 80px 24px;
    background: var(--light-workshop);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--accent-cyan);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.contact-form h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.contact-info {
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-left: 4px solid var(--accent-cyan);
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--concrete);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input {
    margin-top: 3px;
    cursor: pointer;
    width: auto;
}

.form-checkbox label {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.form-submit {
    background: var(--dark-asphalt);
    color: var(--accent-cyan);
    border: 2px solid var(--dark-asphalt);
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.form-submit:hover {
    background: transparent;
    color: var(--dark-asphalt);
}

.thank-you-section {
    padding: 120px 24px;
    text-align: center;
    background: var(--light-workshop);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.thank-you-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-home {
    background: var(--dark-asphalt);
    color: var(--accent-cyan);
    border: 2px solid var(--dark-asphalt);
    padding: 14px 32px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-home:hover {
    background: transparent;
    color: var(--dark-asphalt);
}

.legal-section {
    padding: 80px 24px;
    background: var(--light-workshop);
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

footer.footer-section {
    background: linear-gradient(180deg, var(--dark-asphalt) 0%, #0a0a0a 100%);
    color: var(--text-light);
    padding: 60px 24px 30px;
    margin-top: 80px;
}

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

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

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-col p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #777;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-asphalt);
    color: var(--text-light);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
    border-top: 2px solid var(--accent-cyan);
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-content p {
    font-size: 14px;
    color: #aaa;
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-accept,
.btn-decline {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-accept {
    background: var(--accent-cyan);
    color: var(--dark-asphalt);
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-decline {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-decline:hover {
    background: var(--accent-cyan);
    color: var(--dark-asphalt);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .btn-accept,
    .btn-decline {
        flex: 1;
    }
}
