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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

/* Cookie Consent Banner - Google Consent Mode v2 */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary-color);
    color: var(--bg-white);
    padding: 0;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-consent-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.cookie-consent-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 15px;
}

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

.cookie-consent-text a:hover {
    color: var(--accent-color);
}

.cookie-consent-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn-primary,
.cookie-btn-secondary {
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cookie-btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.cookie-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.cookie-settings-modal.show {
    opacity: 1;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.cookie-settings-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: #0a0a0a;
    z-index: 1;
}

.cookie-settings-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -1px;
}

.cookie-settings-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 0;
}

.cookie-settings-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.cookie-settings-body {
    padding: 40px;
    flex: 1;
}

.cookie-settings-intro {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

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

.cookie-category {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

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

.cookie-category-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cookie-category-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-category-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
    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: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 0;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 0;
}

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

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: rgba(37, 99, 235, 0.5);
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-toggle input:disabled + .cookie-toggle-slider:before {
    background-color: rgba(255, 255, 255, 0.8);
}

.cookie-toggle:hover .cookie-toggle-slider:not(:disabled) {
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

.cookie-settings-footer {
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background: #0a0a0a;
}

.cookie-settings-footer .cookie-btn-primary,
.cookie-settings-footer .cookie-btn-secondary {
    min-width: 150px;
}

/* Mobile Responsive for Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent-container {
        padding: 25px 20px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-consent-text {
        min-width: auto;
    }

    .cookie-consent-text h3 {
        font-size: 18px;
    }

    .cookie-consent-text p {
        font-size: 14px;
    }

    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn-primary,
    .cookie-btn-secondary {
        width: 100%;
        padding: 12px 24px;
    }

    .cookie-settings-content {
        width: 95%;
        max-height: 95vh;
    }

    .cookie-settings-header {
        padding: 20px 25px;
    }

    .cookie-settings-header h2 {
        font-size: 22px;
    }

    .cookie-settings-body {
        padding: 25px;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-toggle {
        align-self: flex-start;
    }

    .cookie-settings-footer {
        padding: 20px 25px;
        flex-direction: column;
    }

    .cookie-settings-footer .cookie-btn-primary,
    .cookie-settings-footer .cookie-btn-secondary {
        width: 100%;
        min-width: auto;
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

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

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

.burger-menu span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.burger-menu:hover span {
    background: var(--primary-color);
}

.burger-menu.active span {
    background: var(--primary-color);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Hero Section - Fullscreen Slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
}

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

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(0.4) contrast(1.1);
}

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

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(37, 99, 235, 0.4) 100%);
}

/* Geometric Accents */
.hero-geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.geo-accent {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.1;
}

.geo-accent-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: geo-pulse 4s ease-in-out infinite;
}

.geo-accent-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    transform: rotate(45deg);
    animation: geo-rotate-2 20s linear infinite;
}

.geo-accent-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: geo-float 15s ease-in-out infinite;
}

.geo-shape {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.1;
}

.geo-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    border-radius: 50%;
    animation: geo-rotate-1 30s linear infinite;
}

.geo-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -50px;
    transform: rotate(45deg);
    animation: geo-rotate-2 25s linear infinite reverse;
}

.geo-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: geo-float 20s ease-in-out infinite;
}

.geo-4 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 60%;
    transform: rotate(45deg);
    animation: geo-pulse 4s ease-in-out infinite;
}

.geo-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.15;
}

.line-1 {
    width: 1px;
    height: 100%;
    left: 20%;
    animation: line-glow 3s ease-in-out infinite;
}

.line-2 {
    width: 100%;
    height: 1px;
    top: 40%;
    animation: line-glow 3s ease-in-out infinite 1s;
}

.line-3 {
    width: 1px;
    height: 100%;
    right: 30%;
    animation: line-glow 3s ease-in-out infinite 2s;
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 2;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2) brightness(0.3);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, transparent 100%);
}

/* Hero Container */
.hero-container-fullscreen {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0;
}

.hero-content-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

/* Hero Main Content */
.hero-content-main {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-title-main {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -4px;
}

.title-word {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-word.active {
    opacity: 1;
    transform: translateY(0);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-main {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 600px;
}

.hero-stats-main {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    text-align: left;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-main {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-main {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary-main:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.btn-secondary-main {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-main:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Hero Accordion */
.hero-features-accordion {
    position: relative;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-tab {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.accordion-tab.active {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.accordion-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.tab-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.tab-number {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.2);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.4s;
}

.accordion-tab.active .tab-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.tab-content {
    flex: 1;
}

.tab-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.accordion-tab.active .tab-title {
    color: var(--primary-color);
}

.tab-preview {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.tab-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: all 0.4s;
}

.accordion-tab.active .tab-icon {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s;
}

.accordion-tab.active .tab-icon img {
    filter: grayscale(0%);
}

.tab-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
}

.accordion-tab.active .tab-body {
    max-height: 300px;
    padding: 0 25px 25px 25px;
}

.tab-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

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

.tab-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.tab-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Slider Controls */
.hero-slider-controls-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.slider-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots-main {
    display: flex;
    gap: 15px;
}

.dot-main {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.dot-main.active {
    background: var(--primary-color);
    width: 40px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Scroll Indicator */
.hero-scroll-indicator-main {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line-main {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

/* Right Side - Feature Cards */
.hero-right {
    position: relative;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    perspective: 1000px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-number {
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    transition: all 0.4s;
}

.feature-card:hover .card-number {
    color: rgba(255, 255, 255, 0.1);
    transform: scale(1.2);
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.feature-card:hover .card-title {
    color: var(--primary-color);
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.card-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.feature-card:hover .card-link {
    opacity: 1;
    transform: translateX(0);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.feature-card:hover .card-bg {
    opacity: 0.05;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.feature-card:hover .card-border {
    opacity: 0.3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

.btn-glow {
    animation: button-glow 3s ease-in-out infinite;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-transparent {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Advanced Feature Accordion */
.hero-features-section {
    position: relative;
}

.feature-accordion-advanced {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.accordion-item-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transition: height 0.4s ease;
    z-index: 1;
}

.accordion-item-advanced.active::before {
    height: 100%;
}

.accordion-item-advanced:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-item-advanced.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.accordion-header-advanced {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.accordion-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.accordion-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 12px;
    transition: all 0.4s;
    opacity: 0.5;
}

.accordion-item-advanced.active .accordion-icon-bg,
.accordion-item-advanced:hover .accordion-icon-bg {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
}

.accordion-icon {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.4s;
}

.accordion-item-advanced.active .accordion-icon {
    transform: scale(1.2);
}

.accordion-header-content {
    flex: 1;
}

.accordion-header-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
    transition: all 0.3s;
}

.accordion-item-advanced:hover .accordion-header-content h3 {
    color: var(--accent-color);
    transform: translateX(5px);
}

.accordion-preview {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    transition: all 0.3s;
}

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

.accordion-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s;
}

.accordion-item-advanced.active .accordion-arrow {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.accordion-item-advanced:hover .accordion-arrow {
    color: white;
    transform: translateX(5px);
}

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

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

.accordion-content-inner {
    padding: 0 25px 25px 105px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.accordion-content-inner p {
    margin-bottom: 15px;
}

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

.accordion-features-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.accordion-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 16px;
}

.accordion-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: 16px;
}

.accordion-item-advanced:hover .accordion-hover-effect {
    opacity: 1;
}

/* Section Styles - Bold Design */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: left;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 72px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 0.9;
    letter-spacing: -3px;
    position: relative;
}

.section-title::before {
    content: attr(data-number);
    position: absolute;
    left: -80px;
    top: -20px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: -1;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background: #000000;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 30px;
    background: rgba(37, 99, 235, 0.1);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    background: rgba(37, 99, 235, 0.2);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s;
}

.service-card:hover .service-icon img {
    filter: grayscale(0%) contrast(1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 16px;
}

/* Solutions Section */
.solutions-section {
    background: #0a0a0a;
    position: relative;
}

.solutions-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.solution-item::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s;
}

.solution-item:nth-child(odd)::before {
    top: -50px;
    right: -50px;
}

.solution-item:nth-child(even)::before {
    bottom: -50px;
    left: -50px;
}

.solution-item:hover::before {
    opacity: 0.1;
    transform: scale(1.2);
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-image {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: all 0.4s;
}

.solution-item:hover .solution-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(50%) contrast(1.1);
    transition: filter 0.4s;
}

.solution-item:hover .solution-image img {
    filter: grayscale(0%) contrast(1);
}

.solution-text h3 {
    font-size: 42px;
    margin-bottom: 25px;
    color: white;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.solution-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 18px;
}

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

.solution-features li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.solution-features li:hover {
    color: white;
    padding-left: 45px;
    border-bottom-color: rgba(37, 99, 235, 0.3);
}

.solution-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s;
}

.solution-features li:hover::before {
    transform: translateX(5px);
}

/* Technology Section */
.technology-section {
    background: #000000;
    position: relative;
}

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

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.tech-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

.tech-item h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: #0a0a0a;
    position: relative;
}

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

.process-step {
    text-align: left;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: all 0.4s;
}

.process-step:hover::before {
    opacity: 0.1;
    transform: translate(20px, -20px) scale(1.2);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--accent-color);
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 0 30px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: all 0.4s;
}

.process-step:hover .step-number {
    background: var(--primary-color);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 16px;
}

/* Portfolio Section */
.portfolio-section {
    background: #000000;
    position: relative;
}

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

.portfolio-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s;
    cursor: pointer;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.4s;
}

.portfolio-item:hover img {
    filter: grayscale(0%) contrast(1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 40px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border-top: 2px solid var(--primary-color);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    color: white;
}

.portfolio-overlay p {
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: #0a0a0a;
    position: relative;
}

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

.testimonial-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 0;
    position: relative;
    transition: all 0.4s;
    border-left: 4px solid transparent;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author strong {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    background: #000000;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

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

.contact-item {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.contact-item:hover {
    border-left-color: var(--primary-color);
    padding-left: 40px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 16px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

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

/* Footer */
.footer {
    background: #000000;
    color: var(--bg-white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

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

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

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

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    position: relative;
    z-index: 2;
}

/* Policy Pages */
.policy-page {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.policy-page h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.policy-page h2,
.policy-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.policy-page h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.policy-page p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-page li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-page a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease-in-out;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 18px 20px;
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s;
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover {
        color: var(--primary-color);
        background: rgba(37, 99, 235, 0.1);
        padding-left: 30px;
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu {
        display: flex;
        z-index: 1001;
    }

    .hero-container-fullscreen {
        padding: 80px 0;
    }

    .hero-content-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title-main {
        font-size: 48px;
    }

    .accordion-wrapper {
        gap: 10px;
    }

    .tab-header {
        padding: 20px;
        gap: 15px;
    }

    .tab-icon {
        width: 50px;
        height: 50px;
    }

    .hero-bg-image {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-number {
        font-size: 120px;
        top: -40px;
        left: -20px;
    }

    .hero-title-bold {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 36px;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 25px;
    }

    .card-number {
        font-size: 40px;
    }

    .geo-1, .geo-2, .geo-3, .geo-4 {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 48px;
    }

    .section-title::before {
        font-size: 120px;
        left: -40px;
    }

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

    .solution-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-item.reverse {
        direction: ltr;
    }

    .solution-text h3 {
        font-size: 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .solution-item {
        grid-template-columns: 1fr;
    }

    .solution-item.reverse {
        direction: ltr;
    }

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

    /* Cookie consent styles are already responsive above */

    .process-timeline {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title::before {
        font-size: 80px;
        left: -20px;
    }

    .hero-number {
        font-size: 80px;
    }

    .hero-title-bold {
        font-size: 36px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* Animations */
@keyframes geo-rotate-1 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes geo-rotate-2 {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

@keyframes geo-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes geo-pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.2;
    }
}

@keyframes line-glow {
    0%, 100% {
        opacity: 0.1;
        box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    }
}

@keyframes title-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-line {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}


