@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Orbitron:wght@400;700;900&display=swap');

:root {
    --primary-color: #0f172a;
    --secondary-color: #334155;
    --accent-color: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.4);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --bg-light: #f1f5f9;
    --card-bg: #ffffff;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.x-container {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-right: auto;
    margin-left: auto;
}

.hidden {
    display: none !important;
}


.x-nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--secondary-color);
}

.x-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.x-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.x-logo i {
    color: var(--accent-color);
}

.highlight {
    color: var(--accent-color);
}

.x-desktop-menu {
    display: none;
}

.x-menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.x-menu-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.x-menu-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.x-menu-list a:hover::after {
    width: 100%;
}

.cta-nav-btn {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: 700;
}

.cta-nav-btn::after {
    display: none;
}

.cta-nav-btn:hover {
    background: var(--text-light) !important;
    transform: translateY(-2px);
}

.x-burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.x-burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    position: absolute;
    transition: var(--transition);
}

.x-burger-btn span:nth-child(1) { top: 0; }
.x-burger-btn span:nth-child(2) { top: 9px; }
.x-burger-btn span:nth-child(3) { bottom: 0; }

.x-burger-btn.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.x-burger-btn.active span:nth-child(2) { opacity: 0; }
.x-burger-btn.active span:nth-child(3) { transform: rotate(-45deg); bottom: 9px; }

.x-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--primary-color);
    z-index: 999;
    padding-top: 80px;
    transition: var(--transition);
    border-left: 1px solid var(--accent-color);
}

.x-mobile-menu.active {
    right: 0;
}

.x-mobile-menu ul {
    list-style: none;
    padding: 0 2rem;
}

.x-mobile-menu li {
    margin-bottom: 1.5rem;
}

.x-mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    display: block;
}


.z-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.z-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.z-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: -1;
}

.z-hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding-top: 60px;
}

.z-hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.z-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.z-hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.z-cta-btn {
    display: inline-block;
    padding: 0 40px;
    height: 56px;
    line-height: 56px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 0 15px var(--accent-glow);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.z-cta-btn:hover {
    background: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.z-cta-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.z-cta-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.z-cta-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.z-cta-primary-large,
.z-cta-secondary-large {
    padding: 0 50px;
    height: 60px;
    line-height: 60px;
    font-size: 1rem;
}

.z-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.z-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.z-badge i {
    color: var(--accent-color);
}


.trust-section {
    padding: 60px 0;
    background: var(--card-bg);
    border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}


.k-features-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.k-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.k-section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.k-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

.k-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.k-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.k-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.k-card-featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.k-badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.k-icon-box {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.k-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.k-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.k-feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
    width: 100%;
}

.k-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.k-feature-list i {
    color: var(--success);
    font-size: 0.9rem;
}

.k-read-more {
    background: none;
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.k-read-more:hover {
    background: var(--primary-color);
    color: var(--text-light);
}


.benefits-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}


.industries-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.industry-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.industry-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.industry-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.industry-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}


.w-showcase-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.w-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.w-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.w-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.w-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.w-item:hover img {
    transform: scale(1.1);
}

.w-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.w-item:hover .w-info {
    transform: translateY(0);
    opacity: 1;
}

.w-info h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.w-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.w-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.w-link:hover {
    color: var(--text-light);
}


.q-stats-section {
    background: var(--accent-color);
    padding: 60px 0;
}

.stats-title {
    color: var(--primary-color) !important;
}

.stats-subtitle {
    color: rgba(15, 23, 42, 0.7) !important;
}

.q-stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.q-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.q-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.q-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.8);
    margin-top: 10px;
    text-transform: uppercase;
}

.q-sublabel {
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.6);
    margin-top: 5px;
}

.process-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.process-step {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
    padding-left: 5rem;
}

.process-number {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--secondary-color);
    line-height: 1.7;
}


.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-color);
}

.testimonial-stars {
    color: var(--warning);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--secondary-color);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}


.faq-section {
    padding: 80px 0;
    background: var(--card-bg);
}

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

.faq-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--accent-color);
}

.faq-item p {
    color: var(--secondary-color);
    line-height: 1.7;
}


.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-guarantee {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-guarantee i {
    color: var(--success);
}


.f-form-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.f-flex-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.f-text-col h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-benefits {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-benefit-item i {
    color: var(--success);
    font-size: 1.2rem;
}

.f-contact-list {
    list-style: none;
    margin-top: 2rem;
}

.f-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--secondary-color);
}

.f-contact-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.j-inquiry-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--accent-color);
}

.j-input-group {
    margin-bottom: 1.5rem;
}

.j-input-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.j-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.j-input-group input,
.j-input-group textarea,
.j-input-group select {
    width: 100%;
    padding: 0 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
}

.j-input-group input,
.j-input-group select {
    height: 52px;
}

.j-input-group textarea {
    padding-top: 1rem;
    resize: vertical;
}

.j-input-group input:focus,
.j-input-group textarea:focus,
.j-input-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    background: #fff;
}

.j-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.j-checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.j-checkbox-group label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.j-submit-btn {
    width: 100%;
    height: 56px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.j-submit-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.form-privacy .v-modal-trigger {
    color: var(--accent-color);
    text-decoration: underline;
}


.v-footer {
    background: var(--primary-color);
    color: var(--text-muted);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.v-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.v-col h5 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.v-links {
    list-style: none;
}

.v-links li {
    margin-bottom: 0.8rem;
}

.v-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.v-links a:hover {
    color: var(--accent-color);
}

.v-modal-trigger {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0;
    transition: var(--transition);
    text-align: left;
}

.v-modal-trigger:hover {
    color: var(--accent-color);
}

.v-footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cert-badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.v-copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    font-size: 0.9rem;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(8px);
    border-top: 2px solid var(--accent-color);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    display: block !important; 
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cookie-text {
    color: var(--text-light);
    text-align: center;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cookie-text i {
    color: var(--accent-color);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.c-btn-ok, .c-btn-no, .c-btn-settings {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.c-btn-ok {
    background: var(--accent-color);
    color: var(--primary-color);
}

.c-btn-ok:hover {
    background: var(--text-light);
}

.c-btn-no {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.c-btn-no:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

.c-btn-settings {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.c-btn-settings:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}


.m-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.m-modal-window {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    position: relative;
    border-left: 5px solid var(--accent-color);
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

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

.m-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.m-close-btn:hover {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.m-modal-window h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    padding-right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.m-modal-window h3 i {
    color: var(--accent-color);
}

.modal-content h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.modal-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-content li {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}


.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.6);
}

.floating-cta i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(6, 182, 212, 0.7);
    }
}


@media (min-width: 576px) {
    .x-container {
        max-width: 540px;
    }
    
    .z-hero-title {
        font-size: 2.5rem;
    }

    .z-hero-cta-group {
        flex-direction: row;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .j-input-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .x-container {
        max-width: 720px;
    }

    .z-hero-title {
        font-size: 3rem;
    }

    .k-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .q-stats-wrapper {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .v-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-text {
        text-align: left;
    }

    .cookie-text h4 {
        justify-content: flex-start;
    }
    
    .w-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .x-container {
        max-width: 1140px;
    }

    .x-burger-btn {
        display: none;
    }

    .x-desktop-menu {
        display: block;
    }

    .x-mobile-menu {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .k-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .f-flex-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .f-text-col, .f-form-col {
        flex: 1;
    }

    .z-hero-title {
        font-size: 3.5rem;
    }
    
    .w-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .q-stats-wrapper {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1200px) {
    .x-container {
        max-width: 1320px;
    }

    .z-hero-title {
        font-size: 4rem;
    }
}