:root {
    --bg-color: #090B10;
    --primary-color: #1A1C29;
    --accent-color: #7FDEFF;
    --secondary-color: #FF4E4E;
    --text-color: #E5E7EB;
    --soft-accent: #2A2D3E;
    --contrast-color: #FFBD00;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 28, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo img {
    max-width: 200px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav-logo a:hover {
    color: var(--contrast-color);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 222, 255, 0.1), transparent);
    transition: var(--transition);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--contrast-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 100%;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--contrast-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(127, 222, 255, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 78, 78, 0.3);
}

.btn-accent {
    background: var(--contrast-color);
    color: var(--bg-color);
}

.btn-accent:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 189, 0, 0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

/* Services Overview */
.services-overview {
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--contrast-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    opacity: 0.9;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-color);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.text-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--soft-accent));
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-color);
    border-top: 1px solid var(--soft-accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 20px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--soft-accent);
    opacity: 0.7;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--soft-accent);
    border: 2px solid rgba(127, 222, 255, 0.3);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 0 0 1px rgba(127, 222, 255, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(127, 222, 255, 0.2), 0 0 20px rgba(127, 222, 255, 0.15);
    transform: translateY(-1px);
}

.form-control:hover {
    border-color: rgba(127, 222, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(127, 222, 255, 0.15);
}

/* Специальные стили для select элементов */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%237FDEFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

select.form-control:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FFBD00' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

select.form-control:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FFBD00' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
    font-family: inherit;
}

/* Стили для placeholder текста */
.form-control::placeholder {
    color: rgba(229, 231, 235, 0.6);
    opacity: 1;
}

.form-control:focus::placeholder {
    color: rgba(229, 231, 235, 0.4);
}

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid,
    .process-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .kontakt-info-card {
        padding: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* New sections small screen styles */
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card,
    .achievement-card {
        padding: 1.5rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .tech-icon,
    .achievement-icon {
        font-size: 2.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .certifications {
        padding: 1.5rem;
    }
}

/* Additional page styles */

/* Services Detail */
.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-detail-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--soft-accent);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Process Section */
.process-section {
    background: var(--primary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-step h3 {
    margin: 3rem 0 1rem 0;
    color: var(--text-color);
}

.process-step p {
    opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--soft-accent);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--primary-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-color);
}

.pricing-card .btn {
    margin-top: auto;
}

/* über page specific styles */
.company-story {
    background: var(--primary-color);
}

.mission-vision {
    background: var(--bg-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: var(--soft-accent);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Core Values */
.core-values {
    background: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.value-card h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Team Section */
.team-section {
    background: var(--bg-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--soft-accent);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    opacity: 0.9;
    line-height: 1.6;
}

/* Statistics */
.statistics {
    background: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* kontakt Form Styles */
.kontakt-form-section {
    background: var(--bg-color);
}

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.kontakt-form-container {
    background: var(--soft-accent);
    padding: 3rem;
    border-radius: 15px;
}

.kontakt-form-container h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.kontakt-form-container p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--bg-color);
    font-weight: bold;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.kontakt-info-container {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 15px;
    height: fit-content;
}

.kontakt-info-container h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.kontakt-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--soft-accent);
    border-radius: 10px;
    transition: var(--transition);
}

.kontakt-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(127, 222, 255, 0.1);
}

.kontakt-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.kontakt-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.kontakt-details p {
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.kontakt-details span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.business-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--soft-accent);
    border-radius: 10px;
}

.business-hours h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--primary-color);
}

.hours-item:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    background: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

.faq-item h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-content {
    background: var(--bg-color);
    padding: 120px 0 80px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--accent-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem 0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    opacity: 0.9;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    background: var(--soft-accent);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

/* Disclaimer specific styles */
.disclaimer-section {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.disclaimer-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(127, 222, 255, 0.1);
}

.kontakt-info-legal {
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.kontakt-info-legal p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kontakt-info-legal i {
    color: var(--accent-color);
    width: 20px;
}

.important-notice {
    background: linear-gradient(135deg, rgba(255, 189, 0, 0.1), rgba(127, 222, 255, 0.1));
    border: 2px solid var(--contrast-color);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1rem;
}

.important-notice h3 {
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.legal-links {
    margin-top: 3rem;
    text-align: center;
}

.legal-links h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.legal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.legal-link:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
    color: var(--accent-color);
}

.legal-link i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.legal-link span {
    font-weight: 500;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .disclaimer-section {
        padding: 1.5rem;
    }
    
    .legal-links-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-link {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-content h1 {
        font-size: 1.75rem;
    }
    
    .disclaimer-section {
        padding: 1rem;
    }
    
    .important-notice {
        padding: 1.5rem;
    }
    
    .kontakt-info-legal {
        padding: 1rem;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .service-detail-content,
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kontakt-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .kontakt-form-container,
    .kontakt-info-container {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-container {
        padding: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }

    /* New sections mobile styles */
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-card {
        padding: 2rem;
    }
    
    .work-process-section .process-timeline::before {
        left: 30px;
    }
    
    .work-process-section .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .work-process-section .step-number {
        left: 30px;
        top: 0;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .work-process-section .step-content {
        padding: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .achievement-card {
        padding: 2rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .certifications {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid,
    .process-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .kontakt-info-card {
        padding: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* New sections small screen styles */
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card,
    .achievement-card {
        padding: 1.5rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .tech-icon,
    .achievement-icon {
        font-size: 2.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .certifications {
        padding: 1.5rem;
    }
}

/* Cookie Consent Modal Styles */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-overlay.active {
    opacity: 1;
}

.cookie-modal {
    background: var(--primary-color);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-overlay.active .cookie-modal {
    transform: scale(1) translateY(0);
}

.cookie-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--soft-accent);
}

.cookie-header h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cookie-header p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.cookie-content {
    margin-bottom: 2rem;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: var(--soft-accent);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(127, 222, 255, 0.2);
    transition: var(--transition);
}

.cookie-category:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

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

.category-header h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-category p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Switch Toggle Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--soft-accent);
    transition: var(--transition);
    border-radius: 24px;
    border: 2px solid var(--accent-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
    background-color: var(--primary-color);
}

input:disabled + .slider {
    background-color: var(--accent-color);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--soft-accent);
}

.cookie-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.cookie-links a:hover {
    color: var(--contrast-color);
    border-color: var(--contrast-color);
    background: rgba(255, 189, 0, 0.1);
}

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

.cookie-actions .btn {
    min-width: 140px;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-modal {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 85vh;
    }
    
    .cookie-header h3 {
        font-size: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .cookie-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-modal {
        padding: 1rem;
        width: 95%;
    }
    
    .cookie-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-category {
        padding: 1rem;
    }
}

/* Technology Section */
.technology-section {
    background: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--soft-accent);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--contrast-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

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

.tech-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.tech-card:hover .tech-icon {
    color: var(--contrast-color);
    transform: scale(1.1);
}

.tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.tech-features {
    list-style: none;
}

.tech-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.tech-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Work Process Section */
.work-process-section {
    background: var(--bg-color);
}

.work-process-section .process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.work-process-section .process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--contrast-color));
    transform: translateX(-50%);
    z-index: -1;
}

.work-process-section .process-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.work-process-section .process-step:nth-child(odd) {
    flex-direction: row;
}

.work-process-section .process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.work-process-section .process-step:last-child {
    margin-bottom: 0;
}

.work-process-section .step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(127, 222, 255, 0.3);
}

.work-process-section .step-content {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    width: 45%;
    position: relative;
    transition: var(--transition);
}

.work-process-section .step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

.work-process-section .step-content h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.work-process-section .step-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.work-process-section .step-details {
    list-style: none;
}

.work-process-section .step-details li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.work-process-section .step-details li::before {
    content: '→';
    color: var(--accent-color);
    font-weight: bold;
}

/* Achievements Section */
.achievements-section {
    background: var(--primary-color);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.achievement-card {
    background: var(--soft-accent);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127, 222, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

.achievement-card:hover::before {
    transform: scale(1);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.achievement-card:hover .achievement-icon {
    color: var(--contrast-color);
    transform: scale(1.1);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--contrast-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.achievement-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.achievement-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.certifications {
    text-align: center;
    padding: 3rem;
    background: var(--soft-accent);
    border-radius: 15px;
}

.certifications h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(127, 222, 255, 0.1);
}

.cert-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.cert-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* Testimonials Page Styles */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--contrast-color);
    display: block;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.featured-testimonials {
    background: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.client-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--accent-color);
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--contrast-color);
    font-size: 1.1rem;
}

blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    padding-left: 1rem;
}

blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    opacity: 0.3;
}

.testimonial-results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-item {
    background: var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.result-number {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--contrast-color);
}

.result-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.industry-testimonials {
    background: var(--bg-color);
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--soft-accent);
    border: 2px solid transparent;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--bg-color);
}

.industry-content {
    position: relative;
}

.industry-panel {
    display: none;
}

.industry-panel.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.video-testimonials {
    background: var(--primary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--soft-accent);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 1rem;
    transition: var(--transition);
}

.video-placeholder:hover i {
    color: var(--contrast-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.video-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.trust-indicators {
    background: var(--bg-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.trust-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.trust-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* FAQ Page Styles */
.search-container {
    margin-top: 2rem;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--soft-accent);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(127, 222, 255, 0.1);
}

.search-box input::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}

.faq-categories {
    background: var(--primary-color);
    padding: 2rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--soft-accent);
    border: 2px solid transparent;
    color: var(--text-color);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--bg-color);
}

.category-btn i {
    font-size: 1.1rem;
}

.faq-content {
    background: var(--bg-color);
}

.faq-category {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.category-title {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--soft-accent);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(127, 222, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(127, 222, 255, 0.1);
}

.faq-question h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 1rem 0 1rem 2rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.kontakt-faq {
    background: var(--primary-color);
}

.kontakt-faq-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kontakt-faq-content h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.kontakt-faq-content p {
    margin-bottom: 3rem;
    opacity: 0.9;
}

.kontakt-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.kontakt-option {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.kontakt-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.kontakt-option h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.kontakt-option p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .industry-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .kontakt-options {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .testimonial-results {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
    }
    
    .video-placeholder i {
        font-size: 2rem;
        padding: 0.75rem;
    }
    
    .trust-card {
        padding: 1.5rem;
    }
    
    .trust-card i {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .kontakt-option {
        padding: 1.5rem;
    }
    
    .kontakt-option i {
        font-size: 2rem;
    }
}

/* Service Detail Pages Styles */

/* Benefits Section */
.benefits-section {
    background: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.benefit-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Marketing Channels */
.marketing-channels {
    background: var(--bg-color);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.channel-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.channel-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.channel-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.channel-features {
    list-style: none;
}

.channel-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.channel-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Content Types */
.content-types {
    background: var(--primary-color);
}

.content-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-type-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.content-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.content-type-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.content-type-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.content-features {
    list-style: none;
}

.content-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.content-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* SEO Services */
.seo-services {
    background: var(--bg-color);
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.seo-service-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.seo-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.seo-service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.seo-service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.seo-features {
    list-style: none;
}

.seo-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.seo-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Research Services */
.research-services {
    background: var(--bg-color);
}

.research-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.research-service-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.research-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.research-service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.research-service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.research-features {
    list-style: none;
}

.research-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.research-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Optimization Services */
.optimization-services {
    background: var(--bg-color);
}

.optimization-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.optimization-service-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.optimization-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.optimization-service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.optimization-service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.optimization-features {
    list-style: none;
}

.optimization-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.optimization-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Results & Analytics */
.results-analytics {
    background: var(--primary-color);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.analytics-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.analytics-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.analytics-metrics {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--contrast-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* SEO Results */
.seo-results {
    background: var(--primary-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.result-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.result-metrics {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

/* Conversion Results */
.conversion-results {
    background: var(--primary-color);
}

/* Research Benefits */
.research-benefits {
    background: var(--primary-color);
}

/* Content Benefits */
.content-benefits {
    background: var(--primary-color);
}

/* Content Examples */
.content-examples {
    background: var(--bg-color);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.example-card {
    background: var(--soft-accent);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(127, 222, 255, 0.1);
}

.example-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.example-content {
    padding: 1.5rem;
}

.example-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.example-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.example-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-color);
}

/* Research Examples */
.research-examples {
    background: var(--bg-color);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

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

.tool-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.tool-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* SEO Tools */
.seo-tools {
    background: var(--bg-color);
}

/* Testing Tools */
.testing-tools {
    background: var(--bg-color);
}

/* Research Tools */
.research-tools {
    background: var(--bg-color);
}

/* Process Timeline for Service Pages */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--contrast-color));
    transform: translateX(-50%);
    z-index: -1;
    display: none;
}

.process-timeline .process-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.process-timeline .process-step:nth-child(odd) {
    flex-direction: row;
}

.process-timeline .process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-timeline .process-step:last-child {
    margin-bottom: 0;
}

.process-timeline .step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(127, 222, 255, 0.3);
}

.process-timeline .step-content {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    width: 45%;
    position: relative;
    transition: var(--transition);
}

.process-timeline .step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(127, 222, 255, 0.1);
}

.process-timeline .step-content h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.process-timeline .step-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.process-timeline .step-details {
    list-style: none;
}

.process-timeline .step-details li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.process-timeline .step-details li::before {
    content: '→';
    color: var(--accent-color);
    font-weight: bold;
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .channels-grid,
    .content-types-grid,
    .seo-services-grid,
    .research-services-grid,
    .optimization-services-grid,
    .analytics-grid,
    .results-grid,
    .examples-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-timeline .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .process-timeline .step-number {
        left: 30px;
        top: 0;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-timeline .step-content {
        width: 100%;
        padding: 1.5rem;
    }
    
    .analytics-metrics,
    .result-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .example-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card,
    .channel-card,
    .content-type-card,
    .seo-service-card,
    .research-service-card,
    .optimization-service-card,
    .analytics-card,
    .result-card,
    .tool-card {
        padding: 1.5rem;
    }
    
    .benefit-icon,
    .channel-icon,
    .content-type-icon,
    .seo-service-icon,
    .research-service-icon,
    .optimization-service-icon,
    .analytics-icon,
    .result-icon,
    .tool-icon {
        font-size: 2rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .example-content {
        padding: 1rem;
    }
    
    .stat {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}