/* 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;
    --gray-color: #64748b;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #475569;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #2563eb 0%, #3b82f6 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    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: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.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: var(--accent-color);
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: var(--primary-color);
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(96, 165, 250, 0.25) 0%, transparent 45%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%)
        0 0 / 60px 60px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-shapes .shape {
    position: absolute;
    opacity: 0.25;
    filter: blur(0.4px);
}

.shape-diamond {
    width: 140px;
    height: 140px;
    background: rgba(59, 130, 246, 0.6);
    top: 80px;
    left: -40px;
    transform: rotate(45deg);
}

.shape-ring {
    width: 190px;
    height: 190px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 70px;
    right: 8%;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid rgba(59, 130, 246, 0.4);
    bottom: 90px;
    left: 14%;
}

.shape-grid {
    width: 220px;
    height: 220px;
    top: 40%;
    right: -60px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 18px 18px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text-section {
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 999px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.ghost-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 13px;
    opacity: 0.85;
}

.hero-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
    gap: 20px;
}

.hero-tile {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    color: var(--white);
    backdrop-filter: blur(16px);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    box-shadow: var(--shadow-lg);
}

.hero-tile::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.2) 0);
}

.hero-tile h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-tile p {
    font-size: 14px;
    opacity: 0.9;
}

.hero-tile.image-tile {
    padding: 0;
}

.hero-tile.image-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 8px 14px;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tile-large {
    grid-row: span 2;
}

.tile-wide {
    grid-column: span 2;
}

.stat-tile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.tile-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tile-number {
    font-size: 26px;
    font-weight: 700;
}

.tile-label {
    font-size: 12px;
    opacity: 0.8;
}

.tile-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.tile-icon {
    font-size: 22px;
    margin-bottom: 10px;
    display: inline-flex;
}

.accent-tile {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(96, 165, 250, 0.5);
}

.outline-tile {
    background: transparent;
    border-style: dashed;
}

.dark-tile {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background-color: var(--light-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Decorative Section Shapes */
.services-section,
.development-section,
.technology-section,
.why-choose-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

.services-section .container,
.development-section .container,
.technology-section .container,
.why-choose-section .container,
.contact-section .container {
    position: relative;
    z-index: 1;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.services-section::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: 90px;
    left: -40px;
    border: 2px dashed rgba(37, 99, 235, 0.25);
    transform: rotate(25deg);
    border-radius: 20px;
}

.development-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 60px;
    left: -80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(118, 75, 162, 0.1));
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 70%);
}

.technology-section::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    right: -60px;
    bottom: -60px;
    background-image: radial-gradient(rgba(37, 99, 235, 0.25) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.6;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    top: -60px;
    right: 18%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(118, 75, 162, 0.15));
    transform: rotate(45deg);
    border-radius: 24px;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 210px;
    height: 210px;
    top: 40px;
    right: -70px;
    border: 2px solid rgba(37, 99, 235, 0.25);
    border-radius: 30px;
    transform: rotate(12deg);
}

/* Services Section */
.services-section {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card,
.solution-card,
.tech-item,
.principle-card,
.step-image,
.contact-form-wrapper,
.business-hours {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.service-card::after,
.solution-card::after,
.tech-item::after,
.principle-card::after,
.step-image::after,
.contact-form-wrapper::after,
.business-hours::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, transparent 50%, rgba(37, 99, 235, 0.18) 0);
    pointer-events: none;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Development Process */
.development-section {
    background-color: var(--white);
}

.process-timeline {
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.process-step.reverse {
    grid-template-columns: 100px 1fr 1fr;
}

.process-step.reverse .step-content {
    order: 2;
}

.process-step.reverse .step-image {
    order: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.step-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

/* Design Section */
.design-section {
    background: var(--gradient-1);
    color: var(--white);
}

.design-section .section-tag {
    background-color: rgba(255, 255, 255, 0.2);
}

.design-section .section-header h2,
.design-section .section-header p {
    color: var(--white);
}

.design-showcase {
    margin-top: 60px;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    height: 250px;
}

.gallery-item.large {
    grid-column: span 2;
    height: 520px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.design-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.principle-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.principle-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.principle-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.principle-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Technology Section */
.technology-section {
    background-color: var(--light-color);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.tech-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tech-item img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.tech-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.solution-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.solution-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Why Choose Us */
.why-choose-section {
    background-color: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.why-text > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.why-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 13px;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-text a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.business-hours {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.business-hours h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.business-hours p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 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;
}

.submit-button {
    background: var(--gradient-2);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-contact p {
    font-size: 13px;
}

.footer-contact-list li {
    font-size: 14px;
    opacity: 0.85;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Policy Pages */
.policy-page {
    padding-top: 100px;
    min-height: 100vh;
}

.policy-header {
    background: var(--gradient-2);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.policy-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-header p {
    font-size: 16px;
    opacity: 0.95;
}

.policy-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.policy-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.policy-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0 20px 30px;
}

.policy-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.policy-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--secondary-color);
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.thanks-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .process-step,
    .process-step.reverse {
        grid-template-columns: 80px 1fr;
        gap: 30px;
    }
    
    .step-image {
        grid-column: 1 / -1;
    }
    
    .process-step.reverse .step-content {
        order: 1;
    }
    
    .process-step.reverse .step-image {
        order: 3;
    }
    
    .showcase-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        height: 250px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 25px;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-tiles {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .hero-tile {
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }

    .tile-large,
    .tile-wide {
        grid-column: auto;
        grid-row: auto;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step,
    .process-step.reverse {
        grid-template-columns: 60px 1fr;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .step-content h3 {
        font-size: 22px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-tiles {
        gap: 16px;
    }

    .hero-tile {
        padding: 16px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .thanks-content h1 {
        font-size: 36px;
    }
    
    .policy-header h1 {
        font-size: 32px;
    }
}