@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
    --bg: #0a0e17;
    --bg-light: #111827;
    --bg-card: #1a2332;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-muted2: #64748b;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --accent-dark: #0891b2;
    --accent-glow: rgba(6, 182, 212, 0.3);
    --border: #2d3748;
    --purple: #8b5cf6;
    --gradient-start: #06b6d4;
    --gradient-end: #8b5cf6;
}

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-bottom: 0;
    min-height: 100vh;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px var(--accent-glow); }
}

header {
    animation: fadeInDown 0.4s ease-out forwards;
}

.hero {
    animation: fadeIn 0.5s ease-out forwards;
}

.section,
.features-grid,
.services-grid,
.benefits-grid,
.process-grid,
.contacts-grid,
.stat-item,
.feature-card,
.service-card,
.benefit-card,
.process-card,
.contact-card,
.hours-card {
    animation: fadeInUp 0.4s ease-out forwards;
    opacity: 0;
}

footer {
    animation: fadeIn 0.4s ease-out forwards;
    opacity: 0;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg);
    transition: all 0.2s ease;
}

header.sticky {
    border-bottom: 1px solid var(--border);
    background: rgba(10, 14, 23, 0.95);
}

header.hidden {
    top: -100px !important;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.2s ease;
}

header.sticky .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 18px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

.logo-text span {
    color: var(--accent);
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a:not(.header-cta) {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: color 0.2s;
}

nav a:not(.header-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

nav a:not(.header-cta):hover,
nav a:not(.header-cta).active {
    color: var(--accent);
}

nav a:not(.header-cta):hover::after,
nav a:not(.header-cta).active::after {
    width: 100%;
}

.header-cta {
    padding: 10px 20px !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border: none !important;
    border-radius: 8px !important;
    text-decoration: none !important;
}

.header-cta::after {
    display: none !important;
}

.lang-switch {
    display: flex;
    gap: 8px;
    border: none;
    border-radius: 6px;
    overflow: visible;
}

.lang-switch a {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    background: transparent;
    transition: all 0.2s;
    border-radius: 4px;
}

.lang-switch a:hover,
.lang-switch a.active {
    background: var(--accent);
    color: white !important;
}

nav a:not(.header-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

nav a:not(.header-cta):hover,
nav a:not(.header-cta).active {
    color: var(--accent);
}

nav a:not(.header-cta):hover::after,
nav a:not(.header-cta).active::after {
    width: 100%;
}

.header-cta {
    padding: 10px 20px !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border: none !important;
    border-radius: 8px !important;
}

.header-cta::after {
    display: none !important;
}

.lang-switch {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.lang-switch a {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-muted2);
    border-right: 1px solid var(--border);
    transition: all 0.2s;
}

.lang-switch a:last-child {
    border-right: none;
}

.lang-switch a:hover, .lang-switch a.active {
    background: var(--accent);
    color: var(--bg);
}

.lang-switch a::after {
    display: none;
}

/* HERO */
.hero {
    padding: 80px 0;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge i {
    font-size: 14px;
}

.hero h1 {
    font-size: clamp(42px, 8vw, 72px);
    color: var(--text);
    line-height: 1.1;
    margin: 0;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(6, 182, 212, 0.05);
}

.btn i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary:hover i {
    transform: scale(1.2);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.proof-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
    white-space: nowrap;
}

.proof-avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--bg);
    margin-left: -8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.avatar:first-child {
    margin-left: 0;
}

.hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.metric-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.3));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s;
}

.metric-card:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.05));
    transform: translateY(-4px);
}

.metric-card.primary {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.1));
}

.metric-icon {
    font-size: 32px;
    color: var(--accent);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
}

.metric-content {
    flex-grow: 1;
}

.metric-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 540px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: var(--accent);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 182, 212, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.portfolio-card:hover .portfolio-link-btn {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.portfolio-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.portfolio-card:hover h3 {
    color: var(--accent);
}

.portfolio-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* BENEFITS GRID */
.benefits-section {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}

.benefit-card {
    background: var(--bg-card);
    padding: 48px 28px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: var(--bg-light);
}

.benefit-card:hover i {
    transform: scale(1.1);
    color: var(--accent);
}

.benefit-card i {
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.benefit-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--text);
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* PROCESS */
.process-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    position: relative;
    transition: all 0.3s;
}

.process-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.process-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1;
}

.process-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.process-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
    padding: 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box {
    background: transparent;
    padding: 120px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.cta-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.cta-box p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.6;
}

/* TECH STACK */
.tech-section {
    background: var(--bg-light);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    cursor: pointer;
}

.tech-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.1);
}

.tech-item i {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.tech-item:hover i {
    color: var(--accent);
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* Tooltip */
.tech-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(6, 182, 212, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.tech-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

@media (max-width: 1024px) {
    .tech-item::after {
        white-space: normal;
        max-width: 140px;
    }
}

/* Mobile tooltip state */
.tech-item.tooltip-active::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/* CONTACTS */
.contacts-section {
    background: var(--bg-card);
    padding: 100px 0;
    position: relative;
}

.contacts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contacts-section .section-title {
    position: relative;
    z-index: 1;
}

.contacts-section .section-subtitle {
    position: relative;
    z-index: 1;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--bg-card);
    padding: 48px 32px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
}

.contact-card:hover {
    background: var(--bg-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.contact-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-card h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 500;
}

.contact-card p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-card p a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card p a:hover {
    color: var(--accent);
}

.work-hours h3 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: var(--border);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hour-item {
    background: var(--bg-card);
    padding: 20px 12px;
    text-align: center;
    transition: background 0.3s;
}

.hour-item:hover {
    background: var(--bg-light);
}

.hour-item .day {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.hour-item .time {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-muted2);
}

.hour-item.weekend .time {
    opacity: 0.5;
}

/* FOOTER */
footer {
    background: var(--bg);
    color: var(--text);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    margin: 0;
    min-height: auto;
    width: 100%;
    display: block;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
}

.footer-logo span {
    color: var(--accent);
}

.footer-desc {
    font-size: 13px;
    color: var(--text-muted2);
    max-width: 280px;
    line-height: 1.5;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted2);
}

/* CONTACT POPUP */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.contact-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 90%;
    height: 100%;
    background: var(--bg-light);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid var(--border);
}

.contact-popup.active {
    transform: translateX(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 8px;
}

.popup-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.popup-content {
    padding: 80px 40px 40px;
}

.popup-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.popup-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.popup-form button {
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    border-radius: 8px;
}

.popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.05));
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.testimonial-company {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-metric {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* PRICING SECTION */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    box-sizing: border-box;
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.1));
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px) scale(1);
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: var(--bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 30px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-btn {
    padding: 16px 32px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pricing-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pricing-btn.featured-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: var(--accent);
    color: var(--bg);
}

.pricing-btn.featured-btn:hover {
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* FAQ SECTION */
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#faq .section-header,
#biezi-jautajumi .section-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
    background: rgba(6, 182, 212, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.1);
}

.faq-question i {
    color: var(--accent);
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
    background: rgba(6, 182, 212, 0.05);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px 24px 24px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

/* COOKIE CONSENT */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.98), rgba(17, 24, 39, 0.95));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    z-index: 9998;
    display: none;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    max-width: 420px;
    width: calc(100% - 40px);
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text);
}

.cookie-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

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

.cookie-btn {
    padding: 8px 14px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.cookie-btn.reject {
    border-color: #ef4444;
    color: #ef4444;
}

.cookie-btn.reject:hover {
    background: rgba(239, 68, 68, 0.1);
}

.cookie-btn.accept-all {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: var(--accent);
    color: var(--bg);
}

.cookie-btn.accept-all:hover {
    box-shadow: 0 10px 30px var(--accent-glow);
}

.cookie-btn.customize {
    border-color: var(--accent);
    color: var(--accent);
}

.cookie-btn.customize:hover {
    background: rgba(6, 182, 212, 0.1);
}

/* COOKIE MODAL */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.cookie-modal-content {
    background: linear-gradient(135deg, var(--bg), rgba(17, 24, 39, 0.8));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cookie-modal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text);
}

.cookie-category {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

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

.category-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-grow: 1;
}

.category-checkbox {
    display: none;
}

.toggle-switch {
    display: inline-flex;
    align-items: center;
    width: 44px;
    height: 24px;
    background: var(--border);
    border-radius: 12px;
    position: relative;
    transition: background 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle-switch:after {
    content: '';
    position: absolute;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--text);
    border-radius: 10px;
    transition: left 0.3s;
}

.category-checkbox:checked + .toggle-switch {
    background: var(--accent);
}

.category-checkbox:checked + .toggle-switch:after {
    left: 22px;
}

.category-checkbox:disabled + .toggle-switch {
    opacity: 0.5;
    cursor: not-allowed;
}

.category-title {
    font-weight: 600;
    color: var(--text);
}

.category-badge {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-badge.required {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.category-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    margin-left: 56px;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 0;
}

.cookie-btn.save {
    flex: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: var(--accent);
    color: var(--bg);
}

.cookie-btn.save:hover {
    box-shadow: 0 10px 30px var(--accent-glow);
}

.cookie-modal-actions .cookie-btn.reject {
    flex: 1;
}

.cookie-modal-actions .cookie-btn.accept-all {
    flex: 1;
}

.cookie-legal {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
}

.cookie-legal a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.cookie-legal a:hover {
    color: var(--accent-bright);
    text-decoration: underline;
}

/* FOOTER POLICIES */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.footer-policies {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 14px;
}

.footer-policies a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policies a:hover {
    color: var(--accent-bright);
    text-decoration: underline;
}

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

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    nav a:not(.header-cta)::after {
        display: none;
    }
    
    .header-inner {
        position: relative;
    }
    
    .mobile-menu-toggle {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 8px;
        transition: top 0.2s ease, transform 0.2s ease;
    }
    
    .mobile-menu-toggle .menu-text {
        font-family: inherit;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .mobile-menu-toggle > .hamburger-bar {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text);
        position: relative;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle > .hamburger-bar:before,
    .mobile-menu-toggle > .hamburger-bar:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--text);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle > .hamburger-bar:before {
        top: -7px;
    }
    
    .mobile-menu-toggle > .hamburger-bar:after {
        top: 7px;
    }
    
    .mobile-menu-toggle.active > .hamburger-bar {
        background: transparent;
    }
    
    .mobile-menu-toggle.active > .hamburger-bar:before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .mobile-menu-toggle.active > .hamburger-bar:after {
        top: 0;
        transform: rotate(-45deg);
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 60px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    nav.active {
        left: 0;
    }
    
    nav a:not(.header-cta):not(.contact-cta-btn):not(.lang-switch a) {
        display: block;
        text-align: left;
        padding: 8px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
    }
    
    nav .lang-switch {
        display: flex !important;
        margin-top: 20px;
        margin-bottom: 60px;
        overflow: visible;
    }
    
    nav .lang-switch a {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    nav .contact-cta-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 16px 32px !important;
        font-size: 16px !important;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .tech-grid,
    .testimonials-grid,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header {
        align-items: flex-start !important;
    }
    
    .section-header > div {
        flex-wrap: nowrap !important;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero h1 {
        font-size: clamp(36px, 7vw, 56px);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-social-proof {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .proof-text {
        width: 100%;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
    }
    
    .metric-icon {
        margin: 0 auto;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid,
    .benefits-grid,
    .process-grid,
    .tech-grid,
    .contacts-grid,
    .portfolio-grid,
    .map-locations {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .cta-box {
        padding: 80px 24px;
    }
    
    .hero h1 {
        font-size: clamp(36px, 8vw, 56px);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 24px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-container {
        padding: 0 24px;
    }
    
    .hero h1 {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        border: none;
        gap: 12px;
        margin-top: 20px;
        padding: 0;
    }
    
    .proof-text {
        font-size: 12px;
        width: 100%;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-card {
        padding: 16px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .metric-icon {
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .metric-value {
        font-size: 20px;
    }
    
    .metric-label,
    .metric-desc {
        font-size: 12px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .pricing-price {
        margin-bottom: 0;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-badge {
        top: 10px;
        right: 16px;
    }
    
    .faq-container {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 14px;
        text-align: left;
    }
    
    .faq-item.active .faq-answer {
        max-height: 800px;
        padding: 0 24px 16px;
    }
     
     .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 16px;
        width: calc(100% - 20px);
        max-width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: auto;
        min-width: 100px;
        padding: 10px 12px;
    }
    
    .cookie-modal-content {
        width: 95%;
        padding: 24px;
        max-height: 90vh;
    }
    
    .cookie-modal-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .category-description {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .footer-policies {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    
    .contact-popup {
        width: 100%;
    }
    
    .popup-content {
        padding: 80px 24px 40px;
    }
}
