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

:root {
    /* Vibrant Color Palette */
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c5a;
    --secondary-color: #9d4edd;
    --secondary-dark: #7b2cbf;
    --accent-color: #00d4ff;
    --accent-dark: #00a8cc;
    --success-color: #00ff88;
    --warning-color: #ffd60a;
    --error-color: #ff006e;
    --info-color: #4361ee;
    
    /* Additional Colors */
    --color-orange: #ff6b35;
    --color-purple: #9d4edd;
    --color-cyan: #00d4ff;
    --color-green: #00ff88;
    --color-yellow: #ffd60a;
    --color-pink: #ff006e;
    --color-blue: #4361ee;
    --color-red: #ef233c;
    
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Colorful Gradients */
    --gradient-1: linear-gradient(135deg, #ff6b35 0%, #9d4edd 50%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #4361ee 100%);
    --gradient-3: linear-gradient(135deg, #ffd60a 0%, #ff6b35 50%, #ff006e 100%);
    --gradient-4: linear-gradient(135deg, #9d4edd 0%, #4361ee 50%, #00d4ff 100%);
    --gradient-5: linear-gradient(135deg, #ff006e 0%, #9d4edd 50%, #4361ee 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(157, 78, 221, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 212, 255, 0.25);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-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;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-consent-banner.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-container {
    max-width: 800px;
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-consent-content {
    padding: 30px;
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-consent-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.cookie-consent-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.cookie-consent-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-consent-body {
    margin-bottom: 25px;
}

.cookie-consent-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.cookie-consent-body a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

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

.cookie-consent-categories {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.cookie-category-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cookie-category-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.cookie-category-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: #ccc;
    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%;
}

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

.cookie-category-toggle input:focus + .cookie-toggle-slider {
    box-shadow: 0 0 1px var(--primary-color);
}

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

.cookie-category-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--primary-color);
    opacity: 0.6;
    cursor: not-allowed;
}

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

.cookie-category-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 8px;
}

.cookie-category-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-consent-save {
    margin-top: 15px;
    text-align: right;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
}

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

.cookie-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cookie-btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-btn-secondary:hover {
    background: var(--border-color);
    border-color: var(--text-light);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    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: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
    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 - Modern Complex Design */
.hero {
    position: relative;
    height: calc(100vh - 70px);
    min-height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(157, 78, 221, 0.75) 50%, rgba(0, 212, 255, 0.7) 100%);
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.particle:nth-child(1) { background: rgba(255, 107, 53, 0.3); box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
.particle:nth-child(2) { background: rgba(157, 78, 221, 0.3); box-shadow: 0 0 20px rgba(157, 78, 221, 0.5); }
.particle:nth-child(3) { background: rgba(0, 212, 255, 0.3); box-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
.particle:nth-child(4) { background: rgba(0, 255, 136, 0.3); box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
.particle:nth-child(5) { background: rgba(255, 214, 10, 0.3); box-shadow: 0 0 20px rgba(255, 214, 10, 0.5); }
.particle:nth-child(6) { background: rgba(255, 0, 110, 0.3); box-shadow: 0 0 20px rgba(255, 0, 110, 0.5); }

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 80%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 50%;
    top: 10%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 20%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 70%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.particle:nth-child(6) {
    width: 70px;
    height: 70px;
    left: 40%;
    top: 80%;
    animation-delay: 5s;
    animation-duration: 21s;
}

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

/* Animated Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morph 15s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffd60a, #ff6b35);
    top: -100px;
    right: -100px;
    animation-duration: 20s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00d4ff, #4361ee);
    bottom: -50px;
    left: -50px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    top: 50%;
    right: 10%;
    animation-duration: 22s;
    animation-delay: 4s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 0 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    min-height: calc(100vh - 70px);
}

.hero-main {
    max-width: 100%;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.title-word {
    display: inline-block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }
.title-word:nth-child(5) { animation-delay: 0.5s; }
.title-word:nth-child(6) { animation-delay: 0.6s; }
.title-word:nth-child(7) { animation-delay: 0.7s; }

.title-word.highlight {
    background: linear-gradient(120deg, #ffd60a 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-word.highlight-2 {
    background: linear-gradient(120deg, #00d4ff 0%, #4361ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

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

/* Stats Counter */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    color: #ffd60a;
    margin-left: 2px;
    text-shadow: 0 0 10px rgba(255, 214, 10, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Hero Phone Center */
.hero-phone-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Phone Mockup - Single */
.phone-mockup {
    position: relative;
    width: 220px;
    height: 440px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-single {
    animation-delay: 0s;
}

/* Hero Visual - Right Side */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Features Slider */
.hero-features-slider {
    width: 100%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-slide {
    display: none;
    text-align: center;
    color: white;
}

.feature-slide.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

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

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-slide h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-slide p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.slider-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.slider-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-btn.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Trusted By Section */
.hero-trusted {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trusted-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logo {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trusted-logo:hover {
    opacity: 1;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 1;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 10px auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.service-card:nth-child(1) { border-top-color: var(--color-orange); }
.service-card:nth-child(2) { border-top-color: var(--color-purple); }
.service-card:nth-child(3) { border-top-color: var(--color-cyan); }
.service-card:nth-child(4) { border-top-color: var(--color-green); }
.service-card:nth-child(5) { border-top-color: var(--color-yellow); }
.service-card:nth-child(6) { border-top-color: var(--color-pink); }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

/* Process Section */
.process {
    background: var(--bg-white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    min-width: 80px;
}

.process-step:nth-child(1) .step-number { background: linear-gradient(135deg, #ff6b35, #ff8c5a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.process-step:nth-child(2) .step-number { background: linear-gradient(135deg, #9d4edd, #c77dff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.process-step:nth-child(3) .step-number { background: linear-gradient(135deg, #00d4ff, #00a8cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.process-step:nth-child(4) .step-number { background: linear-gradient(135deg, #00ff88, #00cc6a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.process-step:nth-child(5) .step-number { background: linear-gradient(135deg, #ffd60a, #ff6b35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.process-step:nth-child(6) .step-number { background: linear-gradient(135deg, #ff006e, #9d4edd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Tech Stack Section */
.tech-stack {
    background: var(--bg-light);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-category {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.tech-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background: var(--gradient-1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.tech-badge:nth-child(1) { background: linear-gradient(135deg, #ff6b35, #ff8c5a); }
.tech-badge:nth-child(2) { background: linear-gradient(135deg, #9d4edd, #c77dff); }
.tech-badge:nth-child(3) { background: linear-gradient(135deg, #00d4ff, #00a8cc); }
.tech-badge:nth-child(4) { background: linear-gradient(135deg, #00ff88, #00cc6a); }
.tech-badge:nth-child(5) { background: linear-gradient(135deg, #4361ee, #7209b7); }

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Portfolio Section */
.portfolio {
    background: var(--bg-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tags span {
    background: var(--gradient-2);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 212, 255, 0.3);
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-item:nth-child(1)::before { background: var(--gradient-1); }
.feature-item:nth-child(2)::before { background: var(--gradient-2); }
.feature-item:nth-child(3)::before { background: var(--gradient-3); }
.feature-item:nth-child(4)::before { background: var(--gradient-4); }
.feature-item:nth-child(5)::before { background: var(--gradient-5); }
.feature-item:nth-child(6)::before { background: var(--gradient-1); }

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* Contact Section */
.contact {
    background: var(--bg-white);
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.contact-item a {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

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

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

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

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

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.policy-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.policy-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

.policy-page a {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.policy-meta {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.policy-meta p {
    margin-bottom: 5px;
    color: var(--text-dark);
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        height: auto;
        min-height: calc(100vh - 70px);
    }

    .hero-content {
        grid-template-columns: 1fr auto;
        gap: 25px;
        padding: 35px 20px 25px;
    }

    .hero-main {
        text-align: left;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-visual {
        display: none;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

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

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav.active {
        transform: translateX(0);
    }

    .hero {
        height: auto;
        min-height: auto;
        max-height: none;
        margin-top: 70px;
    }

    .hero-content {
        padding: 30px 20px 20px;
        grid-template-columns: 1fr;
        gap: 25px;
        min-height: auto;
        align-items: flex-start;
    }

    .hero-main {
        max-width: 100%;
        order: 1;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        gap: 4px;
        margin-bottom: 15px;
        justify-content: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-phone-center {
        order: 2;
        margin: 10px 0;
        display: flex;
        justify-content: center;
    }

    .hero-visual {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup {
        width: 180px;
        height: 360px;
        position: relative;
    }

    .hero-features-slider {
        position: relative;
        width: 100%;
        max-width: 100%;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        padding: 20px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 10px;
        text-align: center;
        padding: 15px 0;
        margin-bottom: 20px;
        justify-content: space-around;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-trusted {
        margin-top: 30px;
        padding-top: 20px;
    }

    .trusted-label {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .trusted-logos {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-trusted {
        margin-top: 40px;
    }

    .trusted-logos {
        gap: 20px;
    }

    .hero-shapes {
        display: none;
    }

    .hero-particles {
        display: none;
    }

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

    .process-step {
        flex-direction: column !important;
    }

    .step-number {
        min-width: auto;
    }

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

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

    .cookie-consent-banner {
        padding: 10px;
    }

    .cookie-consent-content {
        padding: 20px;
    }

    .cookie-consent-header h3 {
        font-size: 1.2rem;
    }

    .cookie-consent-body p {
        font-size: 0.9rem;
    }

    .cookie-consent-categories {
        padding: 15px;
        max-height: 300px;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }

    .cookie-consent-save {
        text-align: center;
    }

    .cookie-consent-save .cookie-btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 480px) {
    .hero {
        margin-top: 70px;
    }

    .hero-content {
        padding: 20px 15px 15px;
        gap: 20px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 1.5rem;
        gap: 3px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .phone-mockup {
        width: 150px;
        height: 300px;
    }

    .hero-features-slider {
        padding: 15px;
    }

    .feature-slide h3 {
        font-size: 1.1rem;
    }

    .feature-slide p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .contact-form {
        padding: 25px;
    }
}

