/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --text-color: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Additional colors for gradients */
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-orange: #f59e0b;
}

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

/* Animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.02) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: backgroundPulse 20s ease-in-out infinite;
}

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

/* Cookie Notification - shows at bottom of page */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000; /* high z-index to ensure it's on top */
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-notification.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-btn:hover {
    background-color: var(--primary-dark);
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-purple), transparent);
    opacity: 0.5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s;
}

.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;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* Decorative geometric elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.2);
    animation: float 20s infinite ease-in-out;
}

.decor-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    border-style: dashed;
    animation-delay: 0s;
}

.decor-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 8%;
    border-style: dotted;
    animation-delay: -7s;
}

.decor-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
    animation: slideLine 15s infinite linear;
}

.decor-line-1 {
    width: 400px;
    top: 30%;
    left: -400px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.decor-line-2 {
    width: 300px;
    bottom: 25%;
    right: -300px;
    transform: rotate(-45deg);
    animation-delay: -5s;
}

.decor-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: rotate 30s infinite linear;
}

.decor-dots-1 {
    top: 20%;
    left: 10%;
}

.decor-dots-2 {
    bottom: 20%;
    right: 15%;
    animation-direction: reverse;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(37, 99, 235, 0.5) 50%, rgba(139, 92, 246, 0.4) 100%);
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1), rgba(6, 182, 212, 0.1));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

/* Glassmorphism card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease both;
}

.title-line:first-child {
    animation-delay: 0.2s;
    font-weight: 800;
    color: var(--white);
}

.title-line:last-child {
    animation-delay: 0.4s;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease 0.6s both;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-purple) 100%);
}

.btn-glow {
    animation: glowPulse 2s ease-in-out infinite;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.4s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn svg {
    stroke-width: 2.5;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-btn:active {
    transform: scale(1.05);
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s;
}

.indicator:hover::before {
    width: 24px;
    height: 24px;
}

.indicator.active {
    background-color: var(--white);
    width: 32px;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Section Background Decorations */
.section-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    animation: shapeFloat 25s infinite ease-in-out;
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    bottom: -150px;
    left: -100px;
    animation-delay: -8s;
}

.bg-shape-3 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-color));
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    animation-delay: -5s;
}

.bg-shape-4 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    bottom: -100px;
    left: -150px;
    animation-delay: -12s;
}

.bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(37, 99, 235, 0.1) 35px, rgba(37, 99, 235, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(139, 92, 246, 0.1) 35px, rgba(139, 92, 246, 0.1) 70px);
    animation: patternMove 30s linear infinite;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-purple), var(--accent-pink));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

/* Services Accordion */
.services-accordion {
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(248, 250, 252, 0.5) 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item.active {
    box-shadow: var(--shadow-lg);
}

.accordion-header {
    padding: 30px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    position: relative;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-purple));
    transform: scaleY(0);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::before,
.accordion-header:hover::before {
    transform: scaleY(1);
}

.accordion-header:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05), transparent);
    padding-left: 40px;
}

.accordion-header h3 {
    font-size: 1.625rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary-color);
}

.accordion-icon {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-inner {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.accordion-inner img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 250px;
}

.accordion-text p {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.accordion-text ul {
    list-style: none;
    padding: 0;
}

.accordion-text ul li {
    padding: 0.5rem 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

.accordion-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Solutions Section */
.solutions-section {
    position: relative;
    overflow: hidden;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solution-card {
    background-color: var(--white);
    padding: 50px 35px;
    border-radius: 24px 8px 24px 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.solution-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.4s;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: iconGradient 3s ease infinite;
}

@keyframes iconGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.solution-card:hover .solution-icon {
    transform: scale(1.15) rotate(5deg);
}

.solution-card h3 {
    font-size: 1.625rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.5) 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple), var(--accent-pink));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-purple));
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-item:hover::before {
    opacity: 0.1;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.feature-item h3 {
    font-size: 1.625rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Industries Section */
.industries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.industry-item {
    background-color: var(--white);
    padding: 35px;
    border-radius: 16px;
    border-left: 6px solid;
    border-image: linear-gradient(180deg, var(--primary-color), var(--accent-purple), var(--accent-pink)) 1;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.industry-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.industry-item:hover::after {
    opacity: 1;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-purple), var(--accent-pink));
    transition: width 0.4s;
}

.industry-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

.industry-item:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.industry-item:hover h4,
.industry-item:hover p {
    position: relative;
    z-index: 1;
}

.industry-item h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.industry-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Process Section */
.process-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(248, 250, 252, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
}

.step {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.8));
    border: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
}

.step::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.step:hover::before {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
}

.step:hover {
    background: rgba(37, 99, 235, 0.03);
    transform: translateY(-5px);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -3px;
    opacity: 0.8;
    transition: all 0.3s;
}

.step:hover .step-number {
    opacity: 1;
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.625rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.75rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-purple), var(--accent-pink));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    animation: lineExpand 1s ease-out;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.about-text p {
    margin-bottom: 1.75rem;
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.0625rem;
    letter-spacing: 0.1px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.3s;
}

.about-image:hover::before {
    opacity: 0.2;
    top: -15px;
    right: -15px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-purple), var(--accent-pink));
    border-radius: 2px;
    opacity: 0.3;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-color);
    line-height: 1.8;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-purple), var(--accent-pink));
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--secondary-color) 0%, #1a1f35 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-purple), var(--accent-pink), transparent);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes slideLine {
    0% {
        left: -400px;
    }
    100% {
        left: 100%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4), 0 0 20px rgba(37, 99, 235, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 99, 235, 0.6), 0 0 40px rgba(37, 99, 235, 0.4);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, -100px -100px;
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.7;
    }
}


/* Policy Pages Styles */
.policy-page {
    padding: 120px 0 80px;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.policy-content h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.policy-content ul,
.policy-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    line-height: 1.8;
    color: var(--text-color);
}

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

.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--primary-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        max-height: 300px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 1rem;
    }

    .glass-card {
        padding: 40px 30px;
    }
    
    .hero-label {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .title-line {
        font-size: inherit;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-controls {
        padding: 0 20px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .scroll-indicator {
        bottom: 80px;
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }

    .accordion-inner {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: 40px 30px;
    }

    .policy-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 0.9375rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h2::after {
        width: 40px;
        height: 3px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }
    
    .decor-circle-1,
    .decor-circle-2 {
        display: none;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

