/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #60a5fa;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.layer-1 {
    background-image: url('assets/images/hero-bg-1.jpg');
    animation: parallax1 20s ease-in-out infinite;
}

.layer-2 {
    background-image: url('assets/images/hero-bg-2.jpg');
    animation: parallax2 15s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes parallax1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes parallax2 {
    0%, 100% { transform: translateY(0) scale(1.05); }
    50% { transform: translateY(20px) scale(1); }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Accordion in Hero */
.accordion-container {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 10px;
    animation: fadeInRight 0.8s ease-out 0.6s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--light-color);
}

.accordion-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 0 24px 24px 24px;
    color: var(--text-color);
    line-height: 1.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.section-media {
    max-width: 1080px;
    margin: 30px auto 70px;
    padding: 0 20px;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
}

.section-media img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.section-media::after {
    content: '';
    position: absolute;
    inset: 10px -12px -12px 10px;
    background: var(--gradient-2);
    opacity: 0.08;
    z-index: -1;
    border-radius: 22px;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Expertise Section */
.expertise {
    background: var(--light-color);
}

.expertise-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.expertise-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.expertise-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Approach Timeline */
.approach {
    background: white;
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Technologies Section */
.technologies {
    background: var(--light-color);
}

/* Image Card Sections */
.advantages {
    background: var(--light-color);
}

.highlights {
    background: white;
}

.image-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.image-cards-compact {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.image-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.image-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.image-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.image-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-card-body {
    padding: 24px 26px 28px;
}

.image-card-body h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.image-card-body p {
    color: var(--text-color);
    line-height: 1.7;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-reg {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Policy Pages */
.policy-page {
    padding-top: 120px;
    min-height: 100vh;
    background: white;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 12px;
}

.policy-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.policy-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-color);
}

.policy-date {
    color: rgba(51, 65, 85, 0.7);
    font-style: italic;
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    padding: 20px;
}

.thanks-content {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.thanks-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .approach-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        padding-top: 80px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .accordion-header h3 {
        font-size: 16px;
    }
    
    .service-card,
    .expertise-item {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .thanks-content {
        padding: 40px 25px;
    }
    
    .thanks-content h1 {
        font-size: 28px;
    }
}

/* Print Styles */
@media print {
    .header,
    .burger,
    .cookie-notice,
    .hero-cta,
    .contact-form-wrapper {
        display: none;
    }
}

/* Minimalist Style Overrides */
:root {
    --primary-color: #111827;
    --secondary-color: #111827;
    --accent-color: #4b5563;
    --dark-color: #111827;
    --light-color: #ffffff;
    --text-color: #1f2937;
    --border-color: #e5e7eb;
    --success-color: #16a34a;
    --gradient-1: none;
    --gradient-2: none;
    --shadow-sm: 0 1px 0 rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.08);
}

body {
    background: #fafafa;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    box-shadow: none;
}

.logo {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-list a {
    color: var(--dark-color);
}

.nav-list a::after {
    height: 1px;
    background: var(--dark-color);
}

.hero {
    min-height: 80vh;
    background: #ffffff;
}

.hero-background {
    display: none;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
}

.title-line {
    opacity: 1;
    animation: none;
}

.title-line:nth-child(2) {
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero-subtitle {
    font-size: 18px;
    color: #4b5563;
}

.btn {
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 500;
    border: 1px solid var(--dark-color);
    box-shadow: none;
}

.btn-primary {
    background: var(--dark-color);
    color: #ffffff;
}

.btn-primary:hover {
    transform: none;
    opacity: 0.9;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-secondary:hover {
    background: var(--dark-color);
    color: #ffffff;
}

.accordion-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: none;
    border-radius: 12px;
    animation: none;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-icon {
    color: var(--dark-color);
}

.services,
.expertise,
.approach,
.technologies,
.why-choose,
.contact,
.footer {
    background: #ffffff;
}

.footer {
    background: #111827;
    color: #e5e7eb;
}

.footer a {
    color: #e5e7eb;
}

.footer-col h4 {
    color: #ffffff;
}

.footer-reg,
.footer-bottom p {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section-title {
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: #6b7280;
}

.service-card,
.feature-card,
.expertise-item,
.timeline-item,
.tech-category,
.contact-form-wrapper,
.faq-item,
.pricing-card,
.blog-card,
.team-member,
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: none;
    border-radius: 12px;
}

.service-card:hover,
.feature-card:hover,
.expertise-item:hover,
.timeline-item:hover,
.tech-category:hover,
.contact-form-wrapper:hover,
.faq-item:hover,
.pricing-card:hover,
.blog-card:hover,
.team-member:hover,
.testimonial-card:hover {
    transform: none;
    box-shadow: none;
    border-color: #d1d5db;
}

.service-icon,
.feature-number,
.timeline-marker {
    color: var(--dark-color);
}

.feature-number {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
}

.timeline-marker {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.tab-btn {
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--dark-color);
    box-shadow: none;
}

.tab-btn.active {
    background: var(--dark-color);
    color: #ffffff;
}

.tech-categories {
    gap: 24px;
}

.tech-category {
    padding: 24px;
}

.tech-tags {
    gap: 10px;
}

.tech-tag {
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #e5e7eb;
    padding: 8px 14px;
    border-radius: 999px;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
    border: 1px solid var(--border-color);
    background: #ffffff;
    box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
    border-color: #9ca3af;
    box-shadow: none;
}

.cookie-notice {
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: none;
}

.cookie-accept {
    background: #ffffff;
    color: var(--dark-color);
    border: 1px solid #ffffff;
}

.cookie-accept:hover {
    background: #f3f4f6;
    transform: none;
}

.scroll-indicator {
    color: #9ca3af;
}