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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --gray-light: #f1f5f9;
    --border-color: #e2e8f0;
    --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);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Cookie Consent Banner - Google Consent Mode v2 */
.cookie-consent-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.cookie-consent-banner.show {
    display: flex;
}

.cookie-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-consent-container {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: slideUp 0.3s ease;
}

.cookie-consent-container::-webkit-scrollbar {
    width: 8px;
}

.cookie-consent-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.cookie-consent-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.cookie-consent-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-consent-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.cookie-consent-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #64748b;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-close:hover {
    color: #0f172a;
}

.cookie-consent-content {
    padding: 1.5rem;
}

.cookie-consent-intro {
    margin-bottom: 1.5rem;
}

.cookie-consent-intro p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cookie-consent-intro p:last-child {
    margin-bottom: 0;
}

.cookie-consent-intro a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-intro a:hover {
    color: var(--primary-dark);
}

.cookie-consent-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-category-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cookie-category-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: #f1f5f9;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.cookie-category-info p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-consent-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.cookie-btn-secondary {
    background: #e2e8f0;
    color: #0f172a;
}

.cookie-btn-secondary:hover {
    background: #cbd5e1;
}

/* Cookie Consent Mini Banner */
.cookie-consent-mini {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-consent-mini-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

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

.cookie-consent-mini-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.cookie-btn-mini {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-mini:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.cookie-btn-mini-close {
    padding: 0.5rem;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-btn-mini-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

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

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

/* Header & Navigation */
.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: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-link.current {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.current::after {
    width: 100%;
}

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

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.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 - Fullscreen Slider with Accordion */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 4rem;
    isolation: isolate;
}

/* Fullscreen Background Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

/* Slider Navigation - Removed */

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    min-height: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Hero Title Area */
.hero-title-area {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 2rem;
}

.highlight-text {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.2s both;
    align-self: flex-start;
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 0.8s ease 0.4s both;
    display: block;
    width: 100%;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 100%;
    animation: fadeInUp 0.8s ease 0.6s both;
    width: 100%;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.btn-ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero-primary:hover .btn-ripple-effect {
    width: 300px;
    height: 300px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Accordion */
.hero-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 0.75rem;
    width: 100%;
    align-self: start;
    padding-top: 2rem;
}

.hero-accordion::-webkit-scrollbar {
    width: 6px;
}

.hero-accordion::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hero-accordion::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.hero-accordion::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    min-width: 0;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.accordion-item.active {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
}

.accordion-header {
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

.accordion-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.5);
    line-height: 1;
    min-width: 40px;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-number {
    color: #6366f1;
}

.accordion-title-wrapper {
    flex: 1;
    min-width: 0;
}

.accordion-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-title {
    color: #6366f1;
}

.accordion-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.accordion-icon-minus {
    opacity: 0;
    transform: rotate(90deg);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.accordion-item.active .accordion-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.accordion-content-inner {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.accordion-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-image {
    transform: scale(1.05);
}

.accordion-text {
    color: rgba(255, 255, 255, 0.9);
    min-width: 0;
}

.accordion-text p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.accordion-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.accordion-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6366f1;
    opacity: 0.7;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}

/* Scroll Indicator - Removed */

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

/* Old unused styles removed */

.hero-bg-layer-1 {
    z-index: 1;
    transform: scale(1.1);
    filter: blur(0px);
}

.hero-bg-layer-2 {
    z-index: 2;
    transform: scale(1.15);
    filter: blur(2px);
    mix-blend-mode: overlay;
}

.hero-bg-layer-3 {
    z-index: 3;
    transform: scale(1.2);
    filter: blur(4px);
    mix-blend-mode: soft-light;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero-bg-layer:hover .hero-bg-image {
    transform: scale(1.15);
}

/* Gradient Overlays */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.hero-overlay-1 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(139, 92, 246, 0.75) 50%, rgba(236, 72, 153, 0.7) 100%);
}

.hero-overlay-2 {
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background-image: 
        radial-gradient(at 20% 30%, rgba(99, 102, 241, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(236, 72, 153, 0.2) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(139, 92, 246, 0.15) 0px, transparent 50%);
    animation: meshMove 15s ease infinite;
    pointer-events: none;
}

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

/* Floating Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
}

.shape-5 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    right: 5%;
    animation-delay: 8s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px) rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(40px, -30px) rotate(270deg) scale(1.05);
        opacity: 0.9;
    }
}

.floating-shape:hover {
    transform: scale(1.5) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

/* Hero Content - Minimalist Layout */
.hero-content-minimal {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Old unused hero styles removed - using new clean styles above */

/* Old accordion styles removed - using new styles above */

/* Scroll Indicator */
/* Scroll indicator removed */

/* Scroll indicator animations removed */

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background: var(--text-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--text-primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styles - Unified Design */
section {
    padding: 6rem 0;
    position: relative;
}

/* Section Waves */
.section-waves-top,
.section-waves-bottom {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.section-waves-top {
    top: 0;
    transform: rotate(180deg);
}

.section-waves-bottom {
    bottom: 0;
}

.section-waves-top::before,
.section-waves-bottom::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.03) 0%, 
        rgba(139, 92, 246, 0.05) 50%, 
        rgba(236, 72, 153, 0.03) 100%);
    animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Modern Section Header */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-subtitle-modern {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section - Modern Design */
.services-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

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

.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.service-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
    z-index: 1;
}

.service-card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.1);
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-modern:hover .image-gradient-overlay {
    opacity: 1;
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-card-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    gap: 0.75rem;
    color: #ec4899;
}

.service-card-link svg {
    transition: transform 0.3s ease;
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* Technologies Section - Modern Design */
.technologies-section {
    background: white;
    position: relative;
}

.tech-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.tech-item-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #6366f1, #ec4899);
    transition: height 0.3s ease;
}

.tech-item-modern:hover::before {
    height: 100%;
}

.tech-item-modern:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.tech-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item-modern:hover .tech-icon-bg {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    transform: scale(1.1);
}

.tech-icon-text {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.tech-item-modern h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.tech-item-modern p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Portfolio Section - Modern Design */
.portfolio-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.portfolio-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.portfolio-item-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.portfolio-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.portfolio-item-modern:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}

.portfolio-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(99, 102, 241, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item-modern:hover .portfolio-gradient-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.portfolio-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Process Section - Modern Design */
.process-section {
    background: white;
    position: relative;
}

.process-timeline-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.process-step-modern {
    position: relative;
    padding-left: 3rem;
}

.step-connector {
    position: absolute;
    left: 0;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(180deg, #6366f1, #ec4899);
    opacity: 0.3;
}

.process-step-modern:last-child .step-connector {
    display: none;
}

.step-content {
    position: relative;
}

.step-number-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.process-step-modern:hover .step-number-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.process-step-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.process-step-modern p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Section - Modern Design */
.about-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.about-content-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text-modern {
    position: relative;
}

.about-text-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748b;
    margin-top: 2rem;
}

.about-text-content p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.about-feature span {
    color: #0f172a;
    font-weight: 600;
}

.about-image-modern {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-modern:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
}

/* Testimonials Section - Modern Design */
.testimonials-section {
    background: white;
    position: relative;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: none;
}

.testimonial-card-modern.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.testimonial-card-modern:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote-icon {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-content-modern p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: #64748b;
}

.testimonial-nav-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #6366f1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.testimonial-dots-modern {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-dot.active {
    background: #6366f1;
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background: rgba(99, 102, 241, 0.5);
}

/* Contact Section - Modern Design */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.contact-content-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-card-modern:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card-modern:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    transform: scale(1.1);
}

.contact-card-modern h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.contact-card-modern p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-card-modern a {
    color: #6366f1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-modern a:hover {
    color: #ec4899;
    text-decoration: underline;
}

.contact-form-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-group-modern label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

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

/* Footer - Modern Design */
.footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

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

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

.footer-section p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

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

.footer-links {
    list-style: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content-minimal {
        height: calc(100vh - 90px);
    }
    
    .hero-mega-title {
        font-size: clamp(2rem, 5vw, 4rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-lead {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title-section {
        margin-bottom: 1.5rem;
    }
    
    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-height: 240px;
        margin-bottom: 1rem;
    }
    
    .service-block {
        padding: 1.25rem;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-desc {
        font-size: 0.8rem;
    }
    
    .service-image {
        height: 80px;
    }
    
    .hero-quick-stats {
        gap: 2rem;
        padding-top: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tech-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step-modern {
        padding-left: 2rem;
    }
    
    .about-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-modern {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .cookie-consent-container {
        max-width: 100%;
        max-height: 95vh;
        margin: 0;
        border-radius: 16px 16px 0 0;
    }
    
    .cookie-consent-header {
        padding: 1.25rem;
    }
    
    .cookie-consent-header h3 {
        font-size: 1.25rem;
    }
    
    .cookie-consent-content {
        padding: 1.25rem;
    }
    
    .cookie-consent-footer {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-consent-mini-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-consent-mini-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn-mini {
        flex: 1;
    }
}

@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        padding-top: 1rem;
    }
    
    .hero-title-area {
        padding-top: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .hero-eyebrow {
        align-self: center;
    }
    
    .hero-accordion {
        max-height: 60vh;
        gap: 1rem;
        padding-top: 0;
    }
    
    .accordion-content-inner {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding-bottom: 2rem;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        padding-top: 1rem;
    }
    
    .hero-title-area {
        text-align: center;
        align-items: center;
        padding-top: 0.5rem;
    }
    
    .hero-eyebrow {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .hero-main-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        margin-top: 1.5rem;
        gap: 1.5rem;
        padding: 1rem 1.25rem;
        justify-content: center;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-plus {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-accordion {
        max-height: 40vh;
        gap: 0.75rem;
    }
    
    .accordion-header {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .accordion-number {
        font-size: 1.25rem;
        min-width: 35px;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-subtitle {
        font-size: 0.8rem;
    }
    
    .accordion-content-inner {
        padding: 1.25rem 1rem;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .accordion-image {
        height: 180px;
    }
    
    .accordion-text p {
        font-size: 0.875rem;
    }
    
    .accordion-features li {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        flex-direction: row;
        gap: 2rem;
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
        justify-content: center;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-plus {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .tech-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .process-timeline-modern {
        grid-template-columns: 1fr;
    }
    
    .process-step-modern {
        padding-left: 1.5rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    
    .cookie-consent-container {
        border-radius: 12px 12px 0 0;
        padding: 0;
    }
    
    .cookie-consent-header {
        padding: 1rem;
    }
    
    .cookie-consent-header h3 {
        font-size: 1.125rem;
    }
    
    .cookie-consent-content {
        padding: 1rem;
    }
    
    .cookie-category-item {
        padding: 0.875rem;
    }
    
    .cookie-category-info h4 {
        font-size: 0.95rem;
    }
    
    .cookie-category-info p {
        font-size: 0.8rem;
    }
    
    .cookie-consent-footer {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .cookie-consent-mini {
        padding: 1rem;
    }
    
    .cookie-consent-mini-content p {
        font-size: 0.85rem;
    }
    
    .hero-content-wrapper {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .hero-main-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-accordion {
        max-height: 35vh;
        gap: 0.5rem;
    }
    
    .accordion-header {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .accordion-number {
        font-size: 1rem;
        min-width: 30px;
    }
    
    .accordion-title {
        font-size: 0.9rem;
    }
    
    .accordion-subtitle {
        font-size: 0.75rem;
    }
    
    .accordion-content-inner {
        padding: 1rem 0.75rem;
        gap: 1rem;
    }
    
    .accordion-image {
        height: 150px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        align-items: center;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ========== Inner pages: hero, breadcrumb ========== */
.page-hero-inner {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-hero-inner--compact {
    padding: 4rem 0 2rem;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #6366f1;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 0.5rem;
    color: #94a3b8;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-lead {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 720px;
    line-height: 1.7;
}

/* ========== About page ========== */
.about-mission {
    padding: 4rem 0;
    background: #0f172a;
}

.about-mission-quote {
    margin: 0;
    padding: 0;
    border: none;
}

.about-mission-quote p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-two-col {
    padding: 5rem 0;
    background: #fff;
}

.about-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-two-col-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.about-two-col-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-two-col-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-two-col-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-principles {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-principles .section-title-modern {
    margin-bottom: 3rem;
}

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-principle-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-principle-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.principle-icon {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 1rem;
    line-height: 1;
}

.about-principle-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.about-principle-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    padding: 4rem 0;
    background: #fff;
}

.about-cta-box {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.08));
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.about-cta-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.about-cta-box p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-cta-box a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.about-cta-box a:hover {
    text-decoration: underline;
}

/* ========== Courses page ========== */
.courses-list {
    padding: 2rem 0 5rem;
}

.courses-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.course-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.course-card-large {
    grid-column: 1 / -1;
    min-height: 320px;
}

.course-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.course-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
}

.course-card-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: #fff;
}

.course-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.course-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.course-card-large h2 {
    font-size: 2rem;
}

.course-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.course-meta {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem !important;
}

.course-card-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-card-btn:hover {
    background: #6366f1;
    border-color: #6366f1;
}

.courses-cta {
    padding: 2rem 0 4rem;
    text-align: center;
}

.courses-cta-text {
    color: #64748b;
    font-size: 1rem;
}

.courses-cta-text a {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
}

.courses-cta-text a:hover {
    text-decoration: underline;
}

/* ========== Contact page ========== */
.contact-page-main {
    min-height: 60vh;
}

.contact-page-form-section {
    padding: 0 0 5rem;
}

.container--narrow {
    max-width: 560px;
    margin: 0 auto;
}

.contact-form--standalone,
.contact-form.contact-form--standalone {
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-page-alt {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #64748b;
}

.contact-page-alt a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.contact-page-alt a:hover {
    text-decoration: underline;
}

/* Inner pages: responsive */
@media (max-width: 968px) {
    .about-two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-two-col-image {
        order: -1;
    }

    .about-principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-bento {
        grid-template-columns: 1fr;
    }

    .course-card-large {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .page-hero-inner {
        padding: 4rem 0 2rem;
    }

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

    .about-cta-box {
        padding: 2rem 1.5rem;
    }
}


